Re: [dpdk-dev] [PATCH v2 0/6] mempool: avoid objects allocations across pages

2019-10-31 Thread Nipun Gupta
karan > ; Kiran Kumar Kokkilagadda ; > Stephen Hemminger ; Thomas Monjalon > ; Vamsi Krishna Attunuru > Subject: [dpdk-dev] [PATCH v2 0/6] mempool: avoid objects allocations across > pages > > KNI supposes that mbufs are contiguous in kernel virtual memory. This > may not be tru

[dpdk-dev] [PATCH v2 0/6] mempool: avoid objects allocations across pages

2019-10-30 Thread Olivier Matz
KNI supposes that mbufs are contiguous in kernel virtual memory. This may not be true when using the IOVA=VA mode. To fix this, a possibility is to ensure that objects do not cross page boundaries in mempool. This patchset implements this in the last patch (5/5). The previous patches prepare the j