examples/l2fwd_fork: fix message pool init
authorXueming Li <xuemingl@mellanox.com>
Fri, 15 Sep 2017 15:37:21 +0000 (23:37 +0800)
committerThomas Monjalon <thomas@monjalon.net>
Fri, 13 Oct 2017 22:36:12 +0000 (00:36 +0200)
Some invalid callback functions are provided to rte_pktmbuf_pool_init()
without their associated data causing a segmentation fault when the
function tries to use it. In this example, those callbacks are not
necessary, they can be safely replaced by NULL pointers.

Fixes: 95e8005a56e8 ("examples/l2fwd_fork: new app")
Cc: stable@dpdk.org
Signed-off-by: Xueming Li <xuemingl@mellanox.com>
examples/multi_process/l2fwd_fork/main.c

index 238b7f6..d273e45 100644 (file)
@@ -1205,10 +1205,7 @@ main(int argc, char **argv)
        message_pool = rte_mempool_create("ms_msg_pool",
                           NB_CORE_MSGBUF * RTE_MAX_LCORE,
                           sizeof(enum l2fwd_cmd), NB_CORE_MSGBUF / 2,
-                          0,
-                          rte_pktmbuf_pool_init, NULL,
-                          rte_pktmbuf_init, NULL,
-                          rte_socket_id(), 0);
+                          0, NULL, NULL, NULL, NULL, rte_socket_id(), 0);
 
        if (message_pool == NULL)
                rte_exit(EXIT_FAILURE, "Create msg mempool failed\n");