mirror of
https://github.com/armbian/linux.git
synced 2026-01-06 10:13:00 -08:00
benet: Call dev_kfree_skby_any instead of kfree_skb.
Replace free_skb with dev_kfree_skb_any in be_tx_compl_process as which can be called in hard irq by netpoll, softirq context by normal napi polling, and in normal sleepable context by the network device close method. Signed-off-by: "Eric W. Biederman" <ebiederm@xmission.com> Signed-off-by: David S. Miller <davem@davemloft.net> Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
This commit is contained in:
committed by
Greg Kroah-Hartman
parent
97aa254018
commit
57a99bf7d2
@@ -1767,7 +1767,7 @@ static u16 be_tx_compl_process(struct be_adapter *adapter,
|
||||
queue_tail_inc(txq);
|
||||
} while (cur_index != last_index);
|
||||
|
||||
kfree_skb(sent_skb);
|
||||
dev_kfree_skb_any(sent_skb);
|
||||
return num_wrbs;
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user