[dpdk-dev] [PATCH 2/2 v3] kni: add documentation for the mempool capacity

2016-06-14 Thread Thomas Monjalon
> > From: Alex Wang > > > > Function like 'rte_kni_rx_burst()' keeps allocating 'MAX_MBUF_BURST_NUM' > > mbufs to kni fifo queue unless the queue's capacity > > ('KNI_FIFO_COUNT_MAX') is reached. So, if the mempool is under- > > provisioned, user may run into "Out of Memory" logs from KNI code.

[dpdk-dev] [PATCH 2/2 v3] kni: add documentation for the mempool capacity

2016-06-09 Thread Mcnamara, John
> Just to confirm, should I do anything before it gets merged? No. Looks good to me. Now you just need to wait. :-) John.

[dpdk-dev] [PATCH 2/2 v3] kni: add documentation for the mempool capacity

2016-06-09 Thread Mcnamara, John
> -Original Message- > From: dev [mailto:dev-bounces at dpdk.org] On Behalf Of Alex Wang > Sent: Saturday, May 21, 2016 8:59 AM > To: dev at dpdk.org > Cc: Yigit, Ferruh ; Alex Wang > > Subject: [dpdk-dev] [PATCH 2/2 v3] kni: add documentation for the mempool >

[dpdk-dev] [PATCH 2/2 v3] kni: add documentation for the mempool capacity

2016-06-09 Thread Alex Wang
t dpdk.org > > Cc: Yigit, Ferruh ; Alex Wang > > > > Subject: [dpdk-dev] [PATCH 2/2 v3] kni: add documentation for the mempool > > capacity > > > > From: Alex Wang > > > > Function like 'rte_kni_rx_burst()' keeps alloc

[dpdk-dev] [PATCH 2/2 v3] kni: add documentation for the mempool capacity

2016-05-21 Thread Alex Wang
From: Alex Wang Function like 'rte_kni_rx_burst()' keeps allocating 'MAX_MBUF_BURST_NUM' mbufs to kni fifo queue unless the queue's capacity ('KNI_FIFO_COUNT_MAX') is reached. So, if the mempool is under-provisioned, user may run into "Out of Memory" logs from KNI code. This commit documents the