batman-adv: Simplify 'batadv_v_ogm_aggr_list_free()'
Use 'skb_queue_purge()' instead of re-implementing it. Signed-off-by: Christophe JAILLET <christophe.jaillet@wanadoo.fr> Signed-off-by: Sven Eckelmann <sven@narfation.org> Signed-off-by: Simon Wunderlich <sw@simonwunderlich.de>
This commit is contained in:
Родитель
79f0a4858f
Коммит
9044854e4b
|
@ -178,13 +178,9 @@ static bool batadv_v_ogm_queue_left(struct sk_buff *skb,
|
|||
*/
|
||||
static void batadv_v_ogm_aggr_list_free(struct batadv_hard_iface *hard_iface)
|
||||
{
|
||||
struct sk_buff *skb;
|
||||
|
||||
lockdep_assert_held(&hard_iface->bat_v.aggr_list_lock);
|
||||
|
||||
while ((skb = skb_dequeue(&hard_iface->bat_v.aggr_list)))
|
||||
kfree_skb(skb);
|
||||
|
||||
skb_queue_purge(&hard_iface->bat_v.aggr_list);
|
||||
hard_iface->bat_v.aggr_len = 0;
|
||||
}
|
||||
|
||||
|
|
Загрузка…
Ссылка в новой задаче