This patch initializes eth_dev->link_intr_cbs queue used when null pmd is
added to the bonding.

v5 changes:
 - removed unnecessary malloc for eth_driver (rte_null_pmd)

Signed-off-by: Tomasz Kulasek <tomaszx.kulasek at intel.com>
---
 drivers/net/null/rte_eth_null.c |    2 ++
 1 file changed, 2 insertions(+)

diff --git a/drivers/net/null/rte_eth_null.c b/drivers/net/null/rte_eth_null.c
index e244595..c748101 100644
--- a/drivers/net/null/rte_eth_null.c
+++ b/drivers/net/null/rte_eth_null.c
@@ -432,6 +432,7 @@ eth_dev_null_create(const char *name,
        internals->numa_node = numa_node;

        pci_dev->numa_node = numa_node;
+       pci_dev->driver = &rte_null_pmd.pci_drv;

        data->dev_private = internals;
        data->port_id = eth_dev->data->port_id;
@@ -445,6 +446,7 @@ eth_dev_null_create(const char *name,
        eth_dev->dev_ops = &ops;
        eth_dev->pci_dev = pci_dev;
        eth_dev->driver = &rte_null_pmd;
+       TAILQ_INIT(&eth_dev->link_intr_cbs);

        /* finally assign rx and tx ops */
        if (packet_copy) {
-- 
1.7.9.5

Reply via email to