2017-11-19 17:05:11 +03:00
/* SPDX-License-Identifier: GPL-2.0 */
2017-01-01 02:00:00 +03:00
/* Copyright (C) 2006-2017 B.A.T.M.A.N. contributors:
2010-12-13 14:19:28 +03:00
*
* Simon Wunderlich , Marek Lindner
*
* This program is free software ; you can redistribute it and / or
* modify it under the terms of version 2 of the GNU General Public
* License as published by the Free Software Foundation .
*
* This program is distributed in the hope that it will be useful , but
* WITHOUT ANY WARRANTY ; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE . See the GNU
* General Public License for more details .
*
* You should have received a copy of the GNU General Public License
2013-11-03 23:40:48 +04:00
* along with this program ; if not , see < http : //www.gnu.org/licenses/>.
2010-12-13 14:19:28 +03:00
*/
# ifndef _NET_BATMAN_ADV_BITARRAY_H_
# define _NET_BATMAN_ADV_BITARRAY_H_
2015-04-17 20:40:28 +03:00
# include "main.h"
# include <linux/bitops.h>
# include <linux/compiler.h>
2016-02-22 23:02:39 +03:00
# include <linux/stddef.h>
2015-04-17 20:40:28 +03:00
# include <linux/types.h>
2015-09-15 20:00:48 +03:00
/**
2017-12-02 21:51:47 +03:00
* batadv_test_bit ( ) - check if bit is set in the current window
2015-10-31 14:29:29 +03:00
*
* @ seq_bits : pointer to the sequence number receive packet
* @ last_seqno : latest sequence number in seq_bits
* @ curr_seqno : sequence number to test for
2015-09-15 20:00:48 +03:00
*
2016-02-22 23:02:39 +03:00
* Return : true if the corresponding bit in the given seq_bits indicates true
* and curr_seqno is within range of last_seqno . Otherwise returns false .
2012-05-12 04:09:43 +04:00
*/
2016-02-22 23:02:39 +03:00
static inline bool batadv_test_bit ( const unsigned long * seq_bits ,
u32 last_seqno , u32 curr_seqno )
2012-02-04 20:34:52 +04:00
{
2015-05-26 19:34:26 +03:00
s32 diff ;
2012-02-04 20:34:52 +04:00
diff = last_seqno - curr_seqno ;
2012-06-04 00:19:17 +04:00
if ( diff < 0 | | diff > = BATADV_TQ_LOCAL_WINDOW_SIZE )
2016-02-22 23:02:39 +03:00
return false ;
2014-09-01 16:37:25 +04:00
return test_bit ( diff , seq_bits ) ! = 0 ;
2012-02-04 20:34:52 +04:00
}
2010-12-13 14:19:28 +03:00
2017-12-02 21:51:52 +03:00
/**
* batadv_set_bit ( ) - Turn corresponding bit on , so we can remember that we got
* the packet
* @ seq_bits : bitmap of the packet receive window
* @ n : relative sequence number of newly received packet
*/
2015-05-26 19:34:26 +03:00
static inline void batadv_set_bit ( unsigned long * seq_bits , s32 n )
2012-02-04 20:34:52 +04:00
{
/* if too old, just drop it */
2012-06-04 00:19:17 +04:00
if ( n < 0 | | n > = BATADV_TQ_LOCAL_WINDOW_SIZE )
2012-02-04 20:34:52 +04:00
return ;
2010-12-13 14:19:28 +03:00
2012-02-04 20:34:52 +04:00
set_bit ( n , seq_bits ) ; /* turn the position on */
}
2010-12-13 14:19:28 +03:00
2016-02-22 23:02:39 +03:00
bool batadv_bit_get_packet ( void * priv , unsigned long * seq_bits ,
s32 seq_num_diff , int set_mark ) ;
2010-12-13 14:19:28 +03:00
# endif /* _NET_BATMAN_ADV_BITARRAY_H_ */