From: Vipin Varghese Date: Tue, 24 Jul 2018 05:05:47 +0000 (+0530) Subject: net/tap: call probe finish for tun secondary X-Git-Url: http://git.droids-corp.org/?a=commitdiff_plain;h=5a401fb85efba013cdd3c451e8293c1aa39c9d09;p=dpdk.git net/tap: call probe finish for tun secondary Invoke rte_eth_dev_probing_finish for rte_pmd_tun_probe. Fixes: fbe90cdd776c ("ethdev: add probing finish function") Cc: stable@dpdk.org Signed-off-by: Vipin Varghese Acked-by: Keith Wiles --- diff --git a/drivers/net/tap/rte_eth_tap.c b/drivers/net/tap/rte_eth_tap.c index 0331eb9f8c..feb92b48e0 100644 --- a/drivers/net/tap/rte_eth_tap.c +++ b/drivers/net/tap/rte_eth_tap.c @@ -1932,6 +1932,7 @@ rte_pmd_tun_probe(struct rte_vdev_device *dev) } eth_dev->dev_ops = &ops; eth_dev->device = &dev->device; + rte_eth_dev_probing_finish(eth_dev); return 0; }