From: Olivier Matz Date: Tue, 22 Nov 2016 10:04:58 +0000 (+0100) Subject: mempool: fix API documentation X-Git-Tag: spdx-start~5299 X-Git-Url: http://git.droids-corp.org/?a=commitdiff_plain;ds=sidebyside;h=8ee94d8aee73d39f50dea753da787c285f228b5c;p=dpdk.git mempool: fix API documentation A previous commit changed the local_cache table into a pointer, reducing the size of the rte_mempool structure. Fix the API comment of rte_mempool_create() related to this modification. Fixes: 213af31e0960 ("mempool: reduce structure size if no cache needed") Signed-off-by: Olivier Matz Acked-by: John McNamara --- diff --git a/lib/librte_mempool/rte_mempool.h b/lib/librte_mempool/rte_mempool.h index 911102b1be..9ccb10713e 100644 --- a/lib/librte_mempool/rte_mempool.h +++ b/lib/librte_mempool/rte_mempool.h @@ -610,9 +610,7 @@ typedef void (rte_mempool_ctor_t)(struct rte_mempool *, void *); * never be used. The access to the per-lcore table is of course * faster than the multi-producer/consumer pool. The cache can be * disabled if the cache_size argument is set to 0; it can be useful to - * avoid losing objects in cache. Note that even if not used, the - * memory space for cache is always reserved in a mempool structure, - * except if CONFIG_RTE_MEMPOOL_CACHE_MAX_SIZE is set to 0. + * avoid losing objects in cache. * @param private_data_size * The size of the private data appended after the mempool * structure. This is useful for storing some private data after the