Secondary processes were blanket zeroing ethernet device memory, resulting in NULL dereference crashes in multi-process setups.
Fixes: 7f95f78a8aea ("ethdev: clear data when allocating device") Signed-off-by: Remy Horton <remy.hor...@intel.com> --- doc/guides/rel_notes/release_17_02.rst | 5 +++++ lib/librte_ether/rte_ethdev.c | 4 +++- 2 files changed, 8 insertions(+), 1 deletion(-) diff --git a/doc/guides/rel_notes/release_17_02.rst b/doc/guides/rel_notes/release_17_02.rst index 0ecd720..1472f84 100644 --- a/doc/guides/rel_notes/release_17_02.rst +++ b/doc/guides/rel_notes/release_17_02.rst @@ -222,6 +222,11 @@ Drivers Fixed few regressions introduced in recent releases that break the virtio multiple process support. +* **ethdev: Fixed crash with multi-processing.** + + Secondary processes were blanket zeroing ethernet device memory, + resulting in NULL dereference crashes in multi-process setups. + Libraries ~~~~~~~~~ diff --git a/lib/librte_ether/rte_ethdev.c b/lib/librte_ether/rte_ethdev.c index 61f44e2..d911921 100644 --- a/lib/librte_ether/rte_ethdev.c +++ b/lib/librte_ether/rte_ethdev.c @@ -225,8 +225,10 @@ rte_eth_dev_allocate(const char *name) return NULL; } - memset(&rte_eth_dev_data[port_id], 0, sizeof(struct rte_eth_dev_data)); eth_dev = eth_dev_get(port_id); + if (rte_eal_process_type() == RTE_PROC_PRIMARY) + memset(&rte_eth_dev_data[port_id], 0, + sizeof(struct rte_eth_dev_data)); snprintf(eth_dev->data->name, sizeof(eth_dev->data->name), "%s", name); eth_dev->data->port_id = port_id; eth_dev->data->mtu = ETHER_MTU; -- 2.5.5