net/i40e: fix mbuf leak
authorQiming Chen <chenqiming_huawei@163.com>
Mon, 23 Aug 2021 01:50:34 +0000 (09:50 +0800)
committerQi Zhang <qi.z.zhang@intel.com>
Mon, 13 Sep 2021 02:30:01 +0000 (04:30 +0200)
commit4b458675d3df13d1a35db959fe97a04a132788b2
treedb1151fb98644c324fc238de968f829dc217a670
parentdb46ff4482cfff58768ac26c1598e89af2620a2a
net/i40e: fix mbuf leak

A local test found that repeated port start and stop operations during
the continuous SSE vector bufflist receiving process will cause the mbuf
resource to run out. The final positioning is when the port is stopped,
the mbuf of the pkt_first_seg pointer is not released. Resources leak.
The patch scheme is to judge whether the pointer is empty when the port
is stopped, and release the corresponding mbuf if it is not empty.

Fixes: 4861cde46116 ("i40e: new poll mode driver")
Cc: stable@dpdk.org
Signed-off-by: Qiming Chen <chenqiming_huawei@163.com>
Acked-by: Qi Zhang <qi.z.zhang@intel.com>
drivers/net/i40e/i40e_rxtx.c