Re: [dpdk-dev] [PATCH v2] bus/pci: fix probing for non-netuio bound devices

2021-03-17 Thread Kadam, Pallavi
On 3/16/2021 4:20 AM, Thomas Monjalon wrote: Implement rte_pci_map_device() to distinguish between the devices bound to netuio and NDIS devices. Only return success for the netuio devices. v2 changes: - Extended the comment to mention about mapping - replaced the return errno

Re: [dpdk-dev] [PATCH v2] bus/pci: fix probing for non-netuio bound devices

2021-03-16 Thread Thomas Monjalon
> > Implement rte_pci_map_device() to distinguish between the devices bound > > to netuio and NDIS devices. > > Only return success for the netuio devices. > > > > v2 changes: > > - Extended the comment to mention about mapping > > - replaced the return errno value with -1 The cha

Re: [dpdk-dev] [PATCH v2] bus/pci: fix probing for non-netuio bound devices

2021-03-04 Thread Narcisa Ana Maria Vasile
On Wed, Feb 10, 2021 at 12:36:54PM -0800, Pallavi Kadam wrote: > Implement rte_pci_map_device() to distinguish between the devices bound > to netuio and NDIS devices. > Only return success for the netuio devices. > > v2 changes: > - Extended the comment to mention about mapping > - rep

Re: [dpdk-dev] [PATCH v2] bus/pci: fix probing for non-netuio bound devices

2021-02-11 Thread Tal Shnaiderman
> Subject: [PATCH v2] bus/pci: fix probing for non-netuio bound devices > > External email: Use caution opening links or attachments > > > Implement rte_pci_map_device() to distinguish between the devices bound > to netuio and NDIS devices. > Only return success for the netuio devices. > > v2 c

[dpdk-dev] [PATCH v2] bus/pci: fix probing for non-netuio bound devices

2021-02-10 Thread Pallavi Kadam
Implement rte_pci_map_device() to distinguish between the devices bound to netuio and NDIS devices. Only return success for the netuio devices. v2 changes: - Extended the comment to mention about mapping - replaced the return errno value with -1 Suggested-by: Dmitry Kozlyuk Signe