app/testpmd: fix crash of tx_first mode with numa
authorAdrien Mazarguil <adrien.mazarguil@6wind.com>
Wed, 30 Apr 2014 13:16:16 +0000 (15:16 +0200)
committerThomas Monjalon <thomas.monjalon@6wind.com>
Wed, 30 Apr 2014 20:59:17 +0000 (22:59 +0200)
When NUMA is enabled, the mbuf pool pointer of per-core fwd_lcores structure
is not set, causing a crash when accessing to mbp for txonly burst.

Initialize fwd_lcore after allocating NUMA memory pools.

Signed-off-by: Adrien Mazarguil <adrien.mazarguil@6wind.com>
Acked-by: Thomas Monjalon <thomas.monjalon@6wind.com>
app/test-pmd/testpmd.c

index 97229a5..9c56914 100644 (file)
@@ -552,15 +552,6 @@ init_config(void)
                        mbuf_pool_create(mbuf_data_size, nb_mbuf_per_pool,
                                                 socket_num);
        }
-       /*
-        * Records which Mbuf pool to use by each logical core, if needed.
-        */
-       for (lc_id = 0; lc_id < nb_lcores; lc_id++) {
-               mbp = mbuf_pool_find(rte_lcore_to_socket_id(lc_id));
-               if (mbp == NULL)
-                       mbp = mbuf_pool_find(0);
-               fwd_lcores[lc_id]->mbp = mbp;
-       }
 
        /* Configuration of Ethernet ports. */
        ports = rte_zmalloc("testpmd: ports",
@@ -609,6 +600,17 @@ init_config(void)
                }
        }
        init_port_config();
+
+       /*
+        * Records which Mbuf pool to use by each logical core, if needed.
+        */
+       for (lc_id = 0; lc_id < nb_lcores; lc_id++) {
+               mbp = mbuf_pool_find(rte_lcore_to_socket_id(lc_id));
+               if (mbp == NULL)
+                       mbp = mbuf_pool_find(0);
+               fwd_lcores[lc_id]->mbp = mbp;
+       }
+
        /* Configuration of packet forwarding streams. */
        if (init_fwd_streams() < 0)
                rte_exit(EXIT_FAILURE, "FAIL from init_fwd_streams()\n");