Re: [dpdk-dev] [PATCH] eventdev: add PCI probe named convenience function

2020-10-16 Thread Kinsella, Ray
On 14/10/2020 16:37, Eads, Gage wrote: > > >> -Original Message- >> From: Kinsella, Ray >> Sent: Wednesday, October 14, 2020 4:31 AM >> To: McDaniel, Timothy ; Jerin Jacob >> ; Neil Horman >> Cc: dev@dpdk.org; Carrillo, Erik G ; Eads, Gage >> ; Van Haaren, Harry >> Subject: Re: [PAT

Re: [dpdk-dev] [PATCH] eventdev: add PCI probe named convenience function

2020-10-14 Thread Eads, Gage
> -Original Message- > From: Kinsella, Ray > Sent: Wednesday, October 14, 2020 4:31 AM > To: McDaniel, Timothy ; Jerin Jacob > ; Neil Horman > Cc: dev@dpdk.org; Carrillo, Erik G ; Eads, Gage > ; Van Haaren, Harry > Subject: Re: [PATCH] eventdev: add PCI probe named convenience function

Re: [dpdk-dev] [PATCH] eventdev: add PCI probe named convenience function

2020-10-14 Thread Kinsella, Ray
On 12/10/2020 19:42, Timothy McDaniel wrote: > Add new internal wrapper function for use by pci drivers as a > .probe function to attach to an event interface. Same as > rte_event_pmd_pci_probe, except the caller can specify the name. > > Updated rte_event_pmd_pci_probe so as to not duplicate

Re: [dpdk-dev] [PATCH] eventdev: add PCI probe named convenience function

2020-10-13 Thread Jerin Jacob
On Tue, Oct 13, 2020 at 12:29 AM Timothy McDaniel wrote: > > Add new internal wrapper function for use by pci drivers as a > .probe function to attach to an event interface. Same as > rte_event_pmd_pci_probe, except the caller can specify the name. > > Updated rte_event_pmd_pci_probe so as to not

[dpdk-dev] [PATCH] eventdev: add PCI probe named convenience function

2020-10-12 Thread Timothy McDaniel
Add new internal wrapper function for use by pci drivers as a .probe function to attach to an event interface. Same as rte_event_pmd_pci_probe, except the caller can specify the name. Updated rte_event_pmd_pci_probe so as to not duplicate code. Signed-off-by: Timothy McDaniel --- lib/librte_ev

[dpdk-dev] [PATCH] eventdev: add PCI probe named convenience function

2020-10-12 Thread Timothy McDaniel
Add new internal wrapper function for use by pci drivers as a .probe function to attach to an event interface. Same as rte_event_pmd_pci_probe, except the caller can specify the name. Updated rte_event_pmd_pci_probe so as to not duplicate code. Signed-off-by: Timothy McDaniel --- lib/librte_ev

Re: [dpdk-dev] [PATCH] eventdev: add PCI probe named convenience function

2020-09-16 Thread McDaniel, Timothy
> -Original Message- > From: Eads, Gage > Sent: Monday, September 14, 2020 3:23 PM > To: McDaniel, Timothy ; Jerin Jacob > > Cc: dev@dpdk.org; Carrillo, Erik G ; Van Haaren, > Harry > Subject: RE: [PATCH] eventdev: add PCI probe named convenience function > > > > > /** > > * @in

Re: [dpdk-dev] [PATCH] eventdev: add PCI probe named convenience function

2020-09-14 Thread Eads, Gage
> /** > * @internal > + * Wrapper for use by pci drivers as a .probe function to attach to a event > + * interface. > + */ > +static inline int > +rte_event_pmd_pci_probe(struct rte_pci_driver *pci_drv, > + struct rte_pci_device *pci_dev, > + siz

[dpdk-dev] [PATCH] eventdev: add PCI probe named convenience function

2020-09-11 Thread Timothy McDaniel
Add new internal wrapper function for use by pci drivers as a .probe function to attach to an event interface. Same as rte_event_pmd_pci_probe, except the caller can specify the name. Updated rte_event_pmd_pci_probe so as to not duplicate code. Signed-off-by: Timothy McDaniel --- lib/librte_ev