doc: announce ABI change for mempool cache

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>
This commit is contained in:
Keith Wiles 2016-02-12 12:38:25 -06:00 committed by Thomas Monjalon
parent 9cd3ddfb82
commit f827226399

View File

@ -22,3 +22,12 @@ Deprecation Notices
* ABI changes are planned for adding four new flow types. This impacts
RTE_ETH_FLOW_MAX. The release 2.2 does not contain these ABI changes,
but release 2.3 will. [postponed]
* 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 affected 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.