Re: [dpdk-dev] [PATCH 07/13] pci: replace probe and remove handlers with rte_driver

2016-12-08 Thread Shreyansh Jain
drien Mazarguil > > Subject: Re: [dpdk-dev] [PATCH 07/13] pci: replace probe and remove handlers > with rte_driver > > Hi Shreyansh, > > On 12/4/2016 10:11 AM, Shreyansh Jain wrote: > > rte_pci_driver probe/remove callback are replaced with the rte_driver > > based prob

Re: [dpdk-dev] [PATCH 07/13] pci: replace probe and remove handlers with rte_driver

2016-12-08 Thread Ferruh Yigit
Hi Shreyansh, On 12/4/2016 10:11 AM, Shreyansh Jain wrote: > rte_pci_driver probe/remove callback are replaced with the rte_driver > based probe/remove. This patch changes all the PCI drivers which reference > rte_pci_driver->probe/remove. > > rte_pci_driver continues to have probe/remove callbac

[dpdk-dev] [PATCH 07/13] pci: replace probe and remove handlers with rte_driver

2016-12-04 Thread Shreyansh Jain
rte_pci_driver probe/remove callback are replaced with the rte_driver based probe/remove. This patch changes all the PCI drivers which reference rte_pci_driver->probe/remove. rte_pci_driver continues to have probe/remove callback which would be used once eth_driver is removed in later patches. On