mirror of
https://github.com/torvalds/linux.git
synced 2026-06-07 14:04:54 +02:00
sfc: fix potential memleak in __ef100_hard_start_xmit()
[ Upstream commitaad98abd5c] The __ef100_hard_start_xmit() returns NETDEV_TX_OK without freeing skb in error handling case, add dev_kfree_skb_any() to fix it. Fixes:51b35a454e("sfc: skeleton EF100 PF driver") Signed-off-by: Zhang Changzhong <zhangchangzhong@huawei.com> Acked-by: Martin Habets <habetsm.xilinx@gmail.com> Reviewed-by: Leon Romanovsky <leonro@nvidia.com> Link: https://lore.kernel.org/r/1668671409-10909-1-git-send-email-zhangchangzhong@huawei.com Signed-off-by: Paolo Abeni <pabeni@redhat.com> Signed-off-by: Sasha Levin <sashal@kernel.org>
This commit is contained in:
parent
6b638a16ea
commit
8e2664e12b
|
|
@ -200,6 +200,7 @@ static netdev_tx_t ef100_hard_start_xmit(struct sk_buff *skb,
|
||||||
skb->len, skb->data_len, channel->channel);
|
skb->len, skb->data_len, channel->channel);
|
||||||
if (!efx->n_channels || !efx->n_tx_channels || !channel) {
|
if (!efx->n_channels || !efx->n_tx_channels || !channel) {
|
||||||
netif_stop_queue(net_dev);
|
netif_stop_queue(net_dev);
|
||||||
|
dev_kfree_skb_any(skb);
|
||||||
goto err;
|
goto err;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue
Block a user