eal: call plugin init before device parse
authorSantosh Shukla <santosh.shukla@caviumnetworks.com>
Fri, 13 Oct 2017 11:55:01 +0000 (11:55 +0000)
committerThomas Monjalon <thomas@monjalon.net>
Fri, 13 Oct 2017 13:38:30 +0000 (15:38 +0200)
commit07a6f5c2d302cdccbbdf3b6f98be8a2238d40a29
treeb36f5e0ed03def4b55a4a1945613b2abaa419be9
parent7abd801fbbd9b0e80c94c84d386f6ac12120923b
eal: call plugin init before device parse

Default eal_init code calls
0. eal_plugins_init
1. eal_option_device_parse
2. rte_bus_scan

IOVA commit:cf408c224 missed on calling eal_plugins_init before
eal_option_device_parse, rte_bus_scan and that introduced below
regression for shared mode:

with CONFIG_RTE_BUILD_SHARED_LIB=y:

'net_vhost0,iface=/tmp/vhost-user2' -d ./install/lib/librte_pmd_vhost.so
-- --portmask=1 --disable-hw-vlan -i --rxq=1 --txq=1 --nb-cores=1
--eth-peer=0,52:54:00:11:22:12
EAL: Detected 4 lcore(s)
ERROR: failed to parse device "net_vhost0"
EAL: Unable to parse device 'net_vhost0,iface=/tmp/vhost-user2'
PANIC in main():
Cannot init EAL

Fixes: cf408c224 ("eal: auto detect IOVA mode")

Reported-by: Maxime Coquelin <maxime.coquelin@redhat.com>
Signed-off-by: Santosh Shukla <santosh.shukla@caviumnetworks.com>
Tested-by: Maxime Coquelin <maxime.coquelin@redhat.com>
lib/librte_eal/bsdapp/eal/eal.c
lib/librte_eal/linuxapp/eal/eal.c