mbuf: remove the rte_pktmbuf structure
[dpdk.git] / app / test / commands.c
index 0640ac9..a9e36b1 100644 (file)
@@ -136,8 +136,6 @@ dump_struct_sizes(void)
 {
 #define DUMP_SIZE(t) printf("sizeof(" #t ") = %u\n", (unsigned)sizeof(t));
        DUMP_SIZE(struct rte_mbuf);
-       DUMP_SIZE(struct rte_pktmbuf);
-       DUMP_SIZE(struct rte_ctrlmbuf);
        DUMP_SIZE(struct rte_mempool);
        DUMP_SIZE(struct rte_ring);
 #undef DUMP_SIZE
@@ -324,9 +322,8 @@ cmdline_parse_ctx_t main_ctx[] = {
 int commands_init(void)
 {
        struct test_command *t;
-       char builtin_commands[] = "";
        char *commands, *ptr;
-       int commands_len = strlen(builtin_commands) + 1;
+       int commands_len = 0;
 
        TAILQ_FOREACH(t, &commands_list, next) {
                commands_len += strlen(t->command) + 1;
@@ -340,7 +337,8 @@ int commands_init(void)
        TAILQ_FOREACH(t, &commands_list, next) {
                ptr += sprintf(ptr, "%s#", t->command);
        }
-       ptr += sprintf(ptr, "%s", builtin_commands);
+       ptr--;
+       ptr[0] = '\0';
 
        cmd_autotest_autotest.string_data.str = commands;
        return 0;