batman-adv: Move definition of atomic_dec_not_zero() into main.h
Commit Message
atomic_dec_not_zero() is very usefull and it is currently defined
multiple times. So it is possible to move it in main.h
---
aggregation.c | 1 -
main.h | 2 ++
send.c | 1 -
3 files changed, 2 insertions(+), 2 deletions(-)
Comments
On Wednesday 20 April 2011 08:54:39 Antonio Quartulli wrote:
> atomic_dec_not_zero() is very usefull and it is currently defined
> multiple times. So it is possible to move it in main.h
I would prefer "useful" and a "Signed-off-by:" line.
For the rest of the patch:
Acked-by: Sven Eckelmann <sven@narfation.org>
@@ -95,7 +95,6 @@ static bool can_aggregate_with(struct batman_packet *new_batman_packet,
return false;
}
-#define atomic_dec_not_zero(v) atomic_add_unless((v), -1, 0)
/* create a new aggregated packet and add this packet to it */
static void new_aggregated_packet(unsigned char *packet_buff, int packet_len,
unsigned long send_time, bool direct_link,
@@ -177,4 +177,6 @@ static inline int compare_eth(void *data1, void *data2)
return (memcmp(data1, data2, ETH_ALEN) == 0 ? 1 : 0);
}
+#define atomic_dec_not_zero(v) atomic_add_unless((v), -1, 0)
+
#endif /* _NET_BATMAN_ADV_MAIN_H_ */
@@ -393,7 +393,6 @@ static void _add_bcast_packet_to_list(struct bat_priv *bat_priv,
send_time);
}
-#define atomic_dec_not_zero(v) atomic_add_unless((v), -1, 0)
/* add a broadcast packet to the queue and setup timers. broadcast packets
* are sent multiple times to increase probability for beeing received.
*