diff options
author | Marek Lindner <lindner_marek@yahoo.de> | 2011-05-14 20:01:22 +0200 |
---|---|---|
committer | Sven Eckelmann <sven@narfation.org> | 2011-05-15 00:02:06 +0200 |
commit | ca06c6eb9a31ae782e74596231fb23df4fc5e46d (patch) | |
tree | e0cbfa74c263b8ba653a762bdf571ef7f43effef /net/batman-adv | |
parent | 6d5808d4ae1b0851c3b732d9ec2860d5f7804294 (diff) |
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>
Signed-off-by: Sven Eckelmann <sven@narfation.org>
Diffstat (limited to 'net/batman-adv')
-rw-r--r-- | net/batman-adv/send.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/net/batman-adv/send.c b/net/batman-adv/send.c index 76daa46efe19..33779278f1b2 100644 --- a/net/batman-adv/send.c +++ b/net/batman-adv/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); |