[dpdk-dev] [PATCH] testpmd: fix crash in txonly mode and when using tx_first

2014-09-01 Thread Thomas Monjalon
2014-09-01 12:31, David Marchand: > From: Adrien Mazarguil > > This crash was believed fixed by commit > 5886ae07d211e4b5e49806dd183812beb31c67ad, > but the actual issue is that the core ID provided to rte_lcore_to_socket_id() > is > wrong. It must be looked up in fwd_lcores_cpuids[]. > > Sign

[dpdk-dev] [PATCH] testpmd: fix crash in txonly mode and when using tx_first

2014-09-01 Thread David Marchand
From: Adrien Mazarguil This crash was believed fixed by commit 5886ae07d211e4b5e49806dd183812beb31c67ad, but the actual issue is that the core ID provided to rte_lcore_to_socket_id() is wrong. It must be looked up in fwd_lcores_cpuids[]. Signed-off-by: Adrien Mazarguil Signed-off-by: David Mar