DPDK patches and discussions
 help / color / mirror / Atom feed
* [dpdk-dev] [PATCH] doc: deprecation notice in 16.04 for rte_mempool changes
@ 2016-02-12 18:38 Keith Wiles
  2016-02-15  9:20 ` Olivier MATZ
  2016-03-08 12:53 ` Mcnamara, John
  0 siblings, 2 replies; 5+ messages in thread
From: Keith Wiles @ 2016-02-12 18:38 UTC (permalink / raw)
  To: dev

Deprecation notice for 16.04 for changes to occur in
release 16.07 for rte_mempool memory reduction.

Signed-off-by: Keith Wiles <keith.wiles@intel.com>
---
 doc/guides/rel_notes/deprecation.rst | 10 ++++++++++
 1 file changed, 10 insertions(+)

diff --git a/doc/guides/rel_notes/deprecation.rst b/doc/guides/rel_notes/deprecation.rst
index e94d4a2..748a48d 100644
--- a/doc/guides/rel_notes/deprecation.rst
+++ b/doc/guides/rel_notes/deprecation.rst
@@ -49,3 +49,13 @@ Deprecation Notices
   commands (such as RETA update in testpmd).  This should impact
   CMDLINE_PARSE_RESULT_BUFSIZE, STR_TOKEN_SIZE and RDLINE_BUF_SIZE.
   It should be integrated in release 2.3.
+
+* ABI change is planned for the rte_mempool structure to allow mempool
+  cache support to be dynamic depending on the mempool being created
+  needing cache support. Saves about 1.5M of memory per rte_mempool structure
+  by removing the per lcore cache memory. Change will occur in DPDK 16.07
+  release and will skip the define RTE_NEXT_ABI in DPDK 16.04 release. The
+  code effected is app/test/test_mempool.c and librte_mempool/rte_mempool.[ch].
+  The rte_mempool.local_cache will be converted from an array to a pointer to
+  allow for dynamic allocation of the per lcore cache memory.
+
-- 
2.5.4 (Apple Git-61)

^ permalink raw reply	[flat|nested] 5+ messages in thread

* Re: [dpdk-dev] [PATCH] doc: deprecation notice in 16.04 for rte_mempool changes
  2016-02-12 18:38 [dpdk-dev] [PATCH] doc: deprecation notice in 16.04 for rte_mempool changes Keith Wiles
@ 2016-02-15  9:20 ` Olivier MATZ
  2016-03-07 10:05   ` Hunt, David
  2016-03-08 12:53 ` Mcnamara, John
  1 sibling, 1 reply; 5+ messages in thread
From: Olivier MATZ @ 2016-02-15  9:20 UTC (permalink / raw)
  To: Keith Wiles, dev

Hi Keith,

On 02/12/2016 07:38 PM, Keith Wiles wrote:
> Deprecation notice for 16.04 for changes to occur in
> release 16.07 for rte_mempool memory reduction.
> 
> Signed-off-by: Keith Wiles <keith.wiles@intel.com>

Acked-by: Olivier Matz <olivier.matz@6wind.com>

^ permalink raw reply	[flat|nested] 5+ messages in thread

* Re: [dpdk-dev] [PATCH] doc: deprecation notice in 16.04 for rte_mempool changes
  2016-02-15  9:20 ` Olivier MATZ
@ 2016-03-07 10:05   ` Hunt, David
  2016-04-04 14:33     ` Thomas Monjalon
  0 siblings, 1 reply; 5+ messages in thread
From: Hunt, David @ 2016-03-07 10:05 UTC (permalink / raw)
  To: Olivier MATZ, Keith Wiles, dev

Hi Keith,

Here's another ack for this patch, in case it's needed.

On 2/15/2016 9:20 AM, Olivier MATZ wrote:
> Hi Keith,
>
> On 02/12/2016 07:38 PM, Keith Wiles wrote:
>> Deprecation notice for 16.04 for changes to occur in
>> release 16.07 for rte_mempool memory reduction.
>>
>> Signed-off-by: Keith Wiles <keith.wiles@intel.com>
> Acked-by: Olivier Matz <olivier.matz@6wind.com>

Acked-by: David Hunt <david.hunt@intel.com>

^ permalink raw reply	[flat|nested] 5+ messages in thread

* Re: [dpdk-dev] [PATCH] doc: deprecation notice in 16.04 for rte_mempool changes
  2016-02-12 18:38 [dpdk-dev] [PATCH] doc: deprecation notice in 16.04 for rte_mempool changes Keith Wiles
  2016-02-15  9:20 ` Olivier MATZ
@ 2016-03-08 12:53 ` Mcnamara, John
  1 sibling, 0 replies; 5+ messages in thread
From: Mcnamara, John @ 2016-03-08 12:53 UTC (permalink / raw)
  To: Wiles, Keith, dev

> -----Original Message-----
> From: dev [mailto:dev-bounces@dpdk.org] On Behalf Of Keith Wiles
> Sent: Friday, February 12, 2016 6:38 PM
> To: dev@dpdk.org
> Subject: [dpdk-dev] [PATCH] doc: deprecation notice in 16.04 for
> rte_mempool changes
> 
> Deprecation notice for 16.04 for changes to occur in release 16.07 for
> rte_mempool memory reduction.
> 
> Signed-off-by: Keith Wiles <keith.wiles@intel.com>


Acked-by: John McNamara <john.mcnamara@intel.com>

^ permalink raw reply	[flat|nested] 5+ messages in thread

* Re: [dpdk-dev] [PATCH] doc: deprecation notice in 16.04 for rte_mempool changes
  2016-03-07 10:05   ` Hunt, David
@ 2016-04-04 14:33     ` Thomas Monjalon
  0 siblings, 0 replies; 5+ messages in thread
From: Thomas Monjalon @ 2016-04-04 14:33 UTC (permalink / raw)
  To: Keith Wiles; +Cc: dev, Hunt, David, Olivier MATZ

> >> Deprecation notice for 16.04 for changes to occur in
> >> release 16.07 for rte_mempool memory reduction.
> >>
> >> Signed-off-by: Keith Wiles <keith.wiles@intel.com>
> > Acked-by: Olivier Matz <olivier.matz@6wind.com>
> Acked-by: David Hunt <david.hunt@intel.com>
> Acked-by: John McNamara <john.mcnamara@intel.com>

Applied, thanks.

^ permalink raw reply	[flat|nested] 5+ messages in thread

end of thread, other threads:[~2016-04-04 14:35 UTC | newest]

Thread overview: 5+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2016-02-12 18:38 [dpdk-dev] [PATCH] doc: deprecation notice in 16.04 for rte_mempool changes Keith Wiles
2016-02-15  9:20 ` Olivier MATZ
2016-03-07 10:05   ` Hunt, David
2016-04-04 14:33     ` Thomas Monjalon
2016-03-08 12:53 ` Mcnamara, John

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).