diff options
author | 2016-07-26 14:11:48 -0300 | |
---|---|---|
committer | 2016-07-26 15:38:57 -0300 | |
commit | b0f76ad6fb9ff068754f12acc3a331669ce4f5c0 (patch) | |
tree | d91f1c03d241bbad639ea5c5a1cedecba8451838 /lib/librte_mempool | |
parent | 776aee4547a9a43a11b4fa8f7b37aa1ed83a8554 (diff) |
Imported Upstream version 16.07-rc5
Change-Id: I1780a4c3b475eaf7e08e8ea67fba3a5257daa39c
Signed-off-by: Ricardo Salveti <ricardo.salveti@linaro.org>
Diffstat (limited to 'lib/librte_mempool')
-rw-r--r-- | lib/librte_mempool/rte_mempool.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/lib/librte_mempool/rte_mempool.c b/lib/librte_mempool/rte_mempool.c index 8806633b..2e28e2e8 100644 --- a/lib/librte_mempool/rte_mempool.c +++ b/lib/librte_mempool/rte_mempool.c @@ -1283,12 +1283,13 @@ void rte_mempool_walk(void (*func)(struct rte_mempool *, void *), { struct rte_tailq_entry *te = NULL; struct rte_mempool_list *mempool_list; + void *tmp_te; mempool_list = RTE_TAILQ_CAST(rte_mempool_tailq.head, rte_mempool_list); rte_rwlock_read_lock(RTE_EAL_MEMPOOL_RWLOCK); - TAILQ_FOREACH(te, mempool_list, next) { + TAILQ_FOREACH_SAFE(te, mempool_list, next, tmp_te) { (*func)((struct rte_mempool *) te->data, arg); } |