[dpdk-dev] [PATCH] rte_pmd_init_all: initialize non-PCI PMDs provided by EAL

2014-04-13 Thread Neil Horman
On Fri, Apr 11, 2014 at 03:23:27PM +0200, Thomas Monjalon wrote: > Hi John, > > 2014-04-10 10:41, John W. Linville: > > These PMDs were being initialized by the EAL layer, but many apps were > > relying on the return value of rte_pmd_init_all to indicate that > > ethernet interfaces were available

[dpdk-dev] [PATCH] rte_pmd_init_all: initialize non-PCI PMDs provided by EAL

2014-04-11 Thread Thomas Monjalon
Hi John, 2014-04-10 10:41, John W. Linville: > These PMDs were being initialized by the EAL layer, but many apps were > relying on the return value of rte_pmd_init_all to indicate that > ethernet interfaces were available for use. Move the initialization of > the non-PCI PMDs to this centralized

[dpdk-dev] [PATCH] rte_pmd_init_all: initialize non-PCI PMDs provided by EAL

2014-04-11 Thread John W. Linville
On Fri, Apr 11, 2014 at 03:23:27PM +0200, Thomas Monjalon wrote: > Hi John, > > 2014-04-10 10:41, John W. Linville: > > These PMDs were being initialized by the EAL layer, but many apps were > > relying on the return value of rte_pmd_init_all to indicate that > > ethernet interfaces were available

[dpdk-dev] [PATCH] rte_pmd_init_all: initialize non-PCI PMDs provided by EAL

2014-04-10 Thread John W. Linville
These PMDs were being initialized by the EAL layer, but many apps were relying on the return value of rte_pmd_init_all to indicate that ethernet interfaces were available for use. Move the initialization of the non-PCI PMDs to this centralized function to have all of the PMDs treated equally. Sig