mirror of
https://github.com/openvswitch/ovs
synced 2025-08-31 06:15:47 +00:00
netdev-dpdk: fix mbuf leaks
mbufs could be chained (by the "next" field of rte_mbuf struct), when an mbuf is not big enough to hold a big packet, say when TSO is enabled. rte_pktmbuf_free_seg() frees the head mbuf only, leading mbuf leaks. This patch fix it by invoking the right API rte_pktmbuf_free(), to free all mbufs in the chain. Signed-off-by: Yuanhan Liu <yuanhan.liu@linux.intel.com> Signed-off-by: Daniele Di Proietto <diproiettod@vmware.com>
This commit is contained in:
committed by
Daniele Di Proietto
parent
f76def2592
commit
b00b4a8149
@@ -396,7 +396,7 @@ free_dpdk_buf(struct dp_packet *p)
|
||||
{
|
||||
struct rte_mbuf *pkt = (struct rte_mbuf *) p;
|
||||
|
||||
rte_pktmbuf_free_seg(pkt);
|
||||
rte_pktmbuf_free(pkt);
|
||||
}
|
||||
|
||||
static void
|
||||
@@ -1089,7 +1089,7 @@ dpdk_queue_flush__(struct netdev_dpdk *dev, int qid)
|
||||
int i;
|
||||
|
||||
for (i = nb_tx; i < txq->count; i++) {
|
||||
rte_pktmbuf_free_seg(txq->burst_pkts[i]);
|
||||
rte_pktmbuf_free(txq->burst_pkts[i]);
|
||||
}
|
||||
rte_spinlock_lock(&dev->stats_lock);
|
||||
dev->stats.tx_dropped += txq->count-nb_tx;
|
||||
|
Reference in New Issue
Block a user