2017-11-19 14:05:11 +00:00
|
|
|
/* SPDX-License-Identifier: GPL-2.0 */
|
2020-12-31 23:00:01 +00:00
|
|
|
/* Copyright (C) B.A.T.M.A.N. contributors:
|
2010-12-13 11:19:28 +00:00
|
|
|
*
|
|
|
|
* Simon Wunderlich, Marek Lindner
|
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef _NET_BATMAN_ADV_BITARRAY_H_
|
|
|
|
#define _NET_BATMAN_ADV_BITARRAY_H_
|
|
|
|
|
2015-04-17 17:40:28 +00:00
|
|
|
#include "main.h"
|
|
|
|
|
|
|
|
#include <linux/bitops.h>
|
|
|
|
#include <linux/compiler.h>
|
2016-02-22 20:02:39 +00:00
|
|
|
#include <linux/stddef.h>
|
2015-04-17 17:40:28 +00:00
|
|
|
#include <linux/types.h>
|
|
|
|
|
2015-09-15 17:00:48 +00:00
|
|
|
/**
|
2017-12-02 18:51:47 +00:00
|
|
|
* batadv_test_bit() - check if bit is set in the current window
|
2015-10-31 11:29:29 +00: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 17:00:48 +00:00
|
|
|
*
|
2016-02-22 20:02:39 +00: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 00:09:43 +00:00
|
|
|
*/
|
2016-02-22 20:02:39 +00:00
|
|
|
static inline bool batadv_test_bit(const unsigned long *seq_bits,
|
|
|
|
u32 last_seqno, u32 curr_seqno)
|
2012-02-04 16:34:52 +00:00
|
|
|
{
|
2015-05-26 16:34:26 +00:00
|
|
|
s32 diff;
|
2012-02-04 16:34:52 +00:00
|
|
|
|
|
|
|
diff = last_seqno - curr_seqno;
|
2012-06-03 20:19:17 +00:00
|
|
|
if (diff < 0 || diff >= BATADV_TQ_LOCAL_WINDOW_SIZE)
|
2016-02-22 20:02:39 +00:00
|
|
|
return false;
|
2014-09-01 12:37:25 +00:00
|
|
|
return test_bit(diff, seq_bits) != 0;
|
2012-02-04 16:34:52 +00:00
|
|
|
}
|
2010-12-13 11:19:28 +00:00
|
|
|
|
2017-12-02 18:51:52 +00: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 16:34:26 +00:00
|
|
|
static inline void batadv_set_bit(unsigned long *seq_bits, s32 n)
|
2012-02-04 16:34:52 +00:00
|
|
|
{
|
|
|
|
/* if too old, just drop it */
|
2012-06-03 20:19:17 +00:00
|
|
|
if (n < 0 || n >= BATADV_TQ_LOCAL_WINDOW_SIZE)
|
2012-02-04 16:34:52 +00:00
|
|
|
return;
|
2010-12-13 11:19:28 +00:00
|
|
|
|
2012-02-04 16:34:52 +00:00
|
|
|
set_bit(n, seq_bits); /* turn the position on */
|
|
|
|
}
|
2010-12-13 11:19:28 +00:00
|
|
|
|
2016-02-22 20:02:39 +00:00
|
|
|
bool batadv_bit_get_packet(void *priv, unsigned long *seq_bits,
|
|
|
|
s32 seq_num_diff, int set_mark);
|
2010-12-13 11:19:28 +00:00
|
|
|
|
|
|
|
#endif /* _NET_BATMAN_ADV_BITARRAY_H_ */
|