The following commit has been merged in the master branch: commit 49eb1730c1d2f47c28184f8e367a4d9b2fa1a94b Author: Marek Lindner lindner_marek@yahoo.de Date: Sat May 14 19:57:21 2011 +0200
batman-adv: reset broadcast flood protection on error
The broadcast flood protection should be reset to its original value if the primary interface could not be retrieved.
Signed-off-by: Marek Lindner lindner_marek@yahoo.de Acked-by: Sven Eckelmann sven@narfation.org
diff --git a/send.c b/send.c index 76daa46..3377927 100644 --- a/send.c +++ b/send.c @@ -421,7 +421,7 @@ int add_bcast_packet_to_list(struct bat_priv *bat_priv, struct sk_buff *skb)
primary_if = primary_if_get_selected(bat_priv); if (!primary_if) - goto out; + goto out_and_inc;
forw_packet = kmalloc(sizeof(struct forw_packet), GFP_ATOMIC);