net/virtio: fix memory leak in in-order Rx
When there is no enough segments for a packet in in-order mergeable Rx path, we should free the whole mbuf chain instead of just recycling the last segment. Fixes: e5f456a98d3c ("net/virtio: support in-order Rx and Tx") Cc: stable@dpdk.org Reviewed-by: Maxime Coquelin <maxime.coquelin@redhat.com> Signed-off-by: Tiwei Bie <tiwei.bie@intel.com>
This commit is contained in:
parent
3f8fb60474
commit
18e8c0fa91
@ -1554,7 +1554,7 @@ virtio_recv_pkts_inorder(void *rx_queue,
|
|||||||
} else {
|
} else {
|
||||||
PMD_RX_LOG(ERR,
|
PMD_RX_LOG(ERR,
|
||||||
"No enough segments for packet.");
|
"No enough segments for packet.");
|
||||||
virtio_discard_rxbuf_inorder(vq, prev);
|
rte_pktmbuf_free(rx_pkts[nb_rx]);
|
||||||
rxvq->stats.errors++;
|
rxvq->stats.errors++;
|
||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user