Re: [dpdk-dev] [PATCH v3] doc: add stack mempool guide

2020-10-07 Thread Olivier Matz
Hi Gage, On Mon, Sep 21, 2020 at 03:42:28PM +, Eads, Gage wrote: > Hi Olivier, > > > > > > +Stack Mempool Driver > > > + > > > + > > > +**rte_mempool_stack** is a pure software mempool driver based on the > > > +``rte_stack`` DPDK library. A stack-based mempool is often

Re: [dpdk-dev] [PATCH v3] doc: add stack mempool guide

2020-09-21 Thread Eads, Gage
Hi Olivier, > > +Stack Mempool Driver > > + > > + > > +**rte_mempool_stack** is a pure software mempool driver based on the > > +``rte_stack`` DPDK library. A stack-based mempool is often better suited to > > +packet-processing workloads than a ring-based mempool, since its L

Re: [dpdk-dev] [PATCH v3] doc: add stack mempool guide

2020-09-17 Thread Olivier Matz
Hi Gage, On Mon, Sep 14, 2020 at 04:11:53PM -0500, Gage Eads wrote: > This guide describes the two stack modes, their tradeoffs, and (via a > reference to the mempool guide) how to enable them. > > Signed-off-by: Gage Eads > --- > v3: Fixed "Title underline too short" warning > > v2: Added comm

[dpdk-dev] [PATCH v3] doc: add stack mempool guide

2020-09-14 Thread Gage Eads
This guide describes the two stack modes, their tradeoffs, and (via a reference to the mempool guide) how to enable them. Signed-off-by: Gage Eads --- v3: Fixed "Title underline too short" warning v2: Added commit description doc/guides/mempool/index.rst | 1 + doc/guides/mempool/sta