From e25a87cc3a9c757b75037654a427d7493a693b45 Mon Sep 17 00:00:00 2001 From: Ferruh Yigit Date: Fri, 1 Jul 2016 17:26:48 +0100 Subject: [PATCH] ivshmem: fix for modified mempool struct struct rte_mempool changed its "ring" field to "pool_data" "ring" field is accessed by ivshmem library, and updated to "pool_data" This patch fixes the compile error: lib/librte_ivshmem/rte_ivshmem.c: In function 'add_mempool_to_metadata': lib/librte_ivshmem/rte_ivshmem.c:584:32: error: 'const struct rte_mempool' has no member named 'ring' return add_ring_to_metadata(mp->ring, config); ^~ Fixes: 449c49b93a6b ("mempool: support handler operations") Signed-off-by: Ferruh Yigit Acked-by: David Hunt --- lib/librte_ivshmem/rte_ivshmem.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/librte_ivshmem/rte_ivshmem.c b/lib/librte_ivshmem/rte_ivshmem.c index 5c839207d5..c26edb61a6 100644 --- a/lib/librte_ivshmem/rte_ivshmem.c +++ b/lib/librte_ivshmem/rte_ivshmem.c @@ -581,7 +581,7 @@ add_mempool_to_metadata(const struct rte_mempool *mp, } /* mempool consists of memzone and ring */ - return add_ring_to_metadata(mp->ring, config); + return add_ring_to_metadata(mp->pool_data, config); } int -- 2.20.1