Re: [dpdk-dev] [PATCH v4 02/10] eal: probe new virtual bus after other bus devices

2017-03-13 Thread Thomas Monjalon
2017-03-06 11:56, Jan Blunck: > @@ -86,9 +86,14 @@ int > rte_bus_probe(void) > { > int ret; > - struct rte_bus *bus; > + struct rte_bus *bus, *vbus = NULL; > > TAILQ_FOREACH(bus, &rte_bus_list, next) { > + if (!strcmp(bus->name, "virtual")) { > +

[dpdk-dev] [PATCH v4 02/10] eal: probe new virtual bus after other bus devices

2017-03-06 Thread Jan Blunck
Also see commit f4ce209a8ce5 ("eal: postpone vdev initialization"). Signed-off-by: Jan Blunck --- lib/librte_eal/common/eal_common_bus.c | 16 +++- 1 file changed, 15 insertions(+), 1 deletion(-) diff --git a/lib/librte_eal/common/eal_common_bus.c b/lib/librte_eal/common/eal_common