[dpdk-dev] [PATCH] examples: do not probe pci twice

2014-09-29 Thread Thomas Monjalon
> > Since commit a155d430119 ("support link bonding device initialization"), > > rte_eal_pci_probe() is called in rte_eal_init(). > > So it doesn't have to be called by application anymore. > > It has been fixed for testpmd in commit 2950a769315, > > and this patch remove it from other applications

[dpdk-dev] [PATCH] examples: do not probe pci twice

2014-09-26 Thread David Marchand
On Fri, Sep 26, 2014 at 2:31 PM, Thomas Monjalon wrote: > Since commit a155d430119 ("support link bonding device initialization"), > rte_eal_pci_probe() is called in rte_eal_init(). > So it doesn't have to be called by application anymore. > It has been fixed for testpmd in commit 2950a769315, >

[dpdk-dev] [PATCH] examples: do not probe pci twice

2014-09-26 Thread Thomas Monjalon
Since commit a155d430119 ("support link bonding device initialization"), rte_eal_pci_probe() is called in rte_eal_init(). So it doesn't have to be called by application anymore. It has been fixed for testpmd in commit 2950a769315, and this patch remove it from other applications. Signed-off-by: Th

[dpdk-dev] [PATCH] examples: do not probe pci twice

2014-09-26 Thread Neil Horman
On Fri, Sep 26, 2014 at 02:31:24PM +0200, Thomas Monjalon wrote: > Since commit a155d430119 ("support link bonding device initialization"), > rte_eal_pci_probe() is called in rte_eal_init(). > So it doesn't have to be called by application anymore. > It has been fixed for testpmd in commit 2950a769