| 99 | }; |
| 100 | |
| 101 | static void |
| 102 | dump_struct_sizes(void) |
| 103 | { |
| 104 | #define DUMP_SIZE(t) printf("sizeof(" #t ") = %u\n", (unsigned)sizeof(t)); |
| 105 | DUMP_SIZE(struct rte_mbuf); |
| 106 | DUMP_SIZE(struct rte_mempool); |
| 107 | DUMP_SIZE(struct rte_ring); |
| 108 | #undef DUMP_SIZE |
| 109 | } |
| 110 | |
| 111 | /* Add the dump_* tests cases 8< */ |
| 112 | static void cmd_dump_parsed(void *parsed_result, |