Re: [dpdk-dev] [PATCH v3] net/bnxt: support fast mbuf free

2020-10-06 Thread Ajit Khaparde
On Tue, Oct 6, 2020 at 10:37 AM Lance Richardson wrote: > > Add support for DEV_TX_OFFLOAD_MBUF_FAST_FREE to bnxt > vector mode transmit. This offload may be enabled > only when multi-segment transmit is not needed, all > transmitted mbufs for a given queue will be allocated > from the same pool,

[dpdk-dev] [PATCH v3] net/bnxt: support fast mbuf free

2020-10-06 Thread Lance Richardson
Add support for DEV_TX_OFFLOAD_MBUF_FAST_FREE to bnxt vector mode transmit. This offload may be enabled only when multi-segment transmit is not needed, all transmitted mbufs for a given queue will be allocated from the same pool, and all transmitted mbufs will have a reference count of 1. Signed-o