mempool: dump handler index and name
authorHemant Agrawal <hemant.agrawal@nxp.com>
Tue, 8 Sep 2020 05:41:53 +0000 (11:11 +0530)
committerThomas Monjalon <thomas@monjalon.net>
Tue, 6 Oct 2020 21:44:15 +0000 (23:44 +0200)
Enhance the dump function to also print the ops index
and associated mempool ops name

Signed-off-by: Hemant Agrawal <hemant.agrawal@nxp.com>
Acked-by: Andrew Rybchenko <arybchenko@solarflare.com>
lib/librte_mempool/rte_mempool.c

index afd12b3..b9f3fbd 100644 (file)
@@ -1196,6 +1196,7 @@ rte_mempool_dump(FILE *f, struct rte_mempool *mp)
        unsigned lcore_id;
 #endif
        struct rte_mempool_memhdr *memhdr;
+       struct rte_mempool_ops *ops;
        unsigned common_count;
        unsigned cache_count;
        size_t mem_len = 0;
@@ -1219,6 +1220,10 @@ rte_mempool_dump(FILE *f, struct rte_mempool *mp)
 
        fprintf(f, "  private_data_size=%"PRIu32"\n", mp->private_data_size);
 
+       fprintf(f, "  ops_index=%d\n", mp->ops_index);
+       ops = rte_mempool_get_ops(mp->ops_index);
+       fprintf(f, "  ops_name: <%s>\n", (ops != NULL) ? ops->name : "NA");
+
        STAILQ_FOREACH(memhdr, &mp->mem_list, next)
                mem_len += memhdr->len;
        if (mem_len != 0) {