Re: [dpdk-dev] [PATCH v6 5/8] eal: introduce bus scan and probe in EAL

2017-01-17 Thread Thomas Monjalon
2017-01-17 10:33, Shreyansh Jain: > On Tuesday 17 January 2017 01:28 AM, Ferruh Yigit wrote: > > On 1/16/2017 3:38 PM, Shreyansh Jain wrote: > >> +/* Add a PCI device to PCI Bus */ > >> +void > >> +rte_eal_pci_add_device(struct rte_pci_bus *pci_bus, > >> + struct rte_pci_device *p

Re: [dpdk-dev] [PATCH v6 5/8] eal: introduce bus scan and probe in EAL

2017-01-17 Thread Shreyansh Jain
Just an update on things fixed/updated in v7 against these comments: On Tuesday 17 January 2017 01:28 AM, Ferruh Yigit wrote: On 1/16/2017 3:38 PM, Shreyansh Jain wrote: Each bus implementation defines their own callbacks for scanning bus and probing devices available on the bus. Enable EAL to

Re: [dpdk-dev] [PATCH v6 5/8] eal: introduce bus scan and probe in EAL

2017-01-16 Thread Shreyansh Jain
On Tuesday 17 January 2017 01:28 AM, Ferruh Yigit wrote: On 1/16/2017 3:38 PM, Shreyansh Jain wrote: Each bus implementation defines their own callbacks for scanning bus and probing devices available on the bus. Enable EAL to call bus specific scan and probe functions during DPDK initialization.

Re: [dpdk-dev] [PATCH v6 5/8] eal: introduce bus scan and probe in EAL

2017-01-16 Thread Ferruh Yigit
On 1/16/2017 3:38 PM, Shreyansh Jain wrote: > Each bus implementation defines their own callbacks for scanning bus > and probing devices available on the bus. Enable EAL to call bus specific > scan and probe functions during DPDK initialization. > > Existing PCI scan/probe continues to exist. It w