net: hns3: fix for skb leak when doing selftest
[ Upstream commit8f9eed1a87] If hns3_nic_net_xmit does not return NETDEV_TX_BUSY when doing a loopback selftest, the skb is not freed in hns3_clean_tx_ring or hns3_nic_net_xmit, which causes skb not freed problem. This patch fixes it by freeing skb when hns3_nic_net_xmit does not return NETDEV_TX_OK. Fixes:c39c4d98dc("net: hns3: Add mac loopback selftest support in hns3 driver") Signed-off-by: Yunsheng Lin <linyunsheng@huawei.com> Signed-off-by: Peng Li <lipeng321@huawei.com> Signed-off-by: Huazhong Tan <tanhuazhong@huawei.com> Signed-off-by: David S. Miller <davem@davemloft.net> Signed-off-by: Sasha Levin <sashal@kernel.org>
This commit is contained in:
parent
6a47a42f51
commit
1a3706d8f8
1 changed files with 4 additions and 2 deletions
|
|
@ -245,11 +245,13 @@ static int hns3_lp_run_test(struct net_device *ndev, enum hnae3_loop mode)
|
|||
|
||||
skb_get(skb);
|
||||
tx_ret = hns3_nic_net_xmit(skb, ndev);
|
||||
if (tx_ret == NETDEV_TX_OK)
|
||||
if (tx_ret == NETDEV_TX_OK) {
|
||||
good_cnt++;
|
||||
else
|
||||
} else {
|
||||
kfree_skb(skb);
|
||||
netdev_err(ndev, "hns3_lb_run_test xmit failed: %d\n",
|
||||
tx_ret);
|
||||
}
|
||||
}
|
||||
if (good_cnt != HNS3_NIC_LB_TEST_PKT_NUM) {
|
||||
ret_val = HNS3_NIC_LB_TEST_TX_CNT_ERR;
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue