Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit ca06c6eb authored by Marek Lindner's avatar Marek Lindner Committed by Sven Eckelmann
Browse files

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: default avatarMarek Lindner <lindner_marek@yahoo.de>
Signed-off-by: default avatarSven Eckelmann <sven@narfation.org>
parent 6d5808d4
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -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);