Re: [dpdk-dev] [PATCH] pci/vfio: fixup rte_intr_callback_unregister() handling

2018-11-20 Thread Kevin Traynor
On 11/20/2018 11:04 AM, Kevin Traynor wrote: > On 10/24/2018 11:11 AM, Darek Stojaczyk wrote: >> This function is documented to return the number of unregistered >> callbacks or negative numbers on error, but pci_vfio checks for >> ret != 0 to detect failures. Not anymore. >> >> Fixes: c115fd000c32

Re: [dpdk-dev] [PATCH] pci/vfio: fixup rte_intr_callback_unregister() handling

2018-11-20 Thread Kevin Traynor
On 10/24/2018 11:11 AM, Darek Stojaczyk wrote: > This function is documented to return the number of unregistered > callbacks or negative numbers on error, but pci_vfio checks for > ret != 0 to detect failures. Not anymore. > > Fixes: c115fd000c32 ("vfio: handle hotplug request notifier") > Cc: ji

Re: [dpdk-dev] [PATCH] pci/vfio: fixup rte_intr_callback_unregister() handling

2018-10-28 Thread Thomas Monjalon
26/10/2018 16:23, Burakov, Anatoly: > On 24-Oct-18 11:11 AM, Darek Stojaczyk wrote: > > This function is documented to return the number of unregistered > > callbacks or negative numbers on error, but pci_vfio checks for > > ret != 0 to detect failures. Not anymore. > > > > Fixes: c115fd000c32 ("v

Re: [dpdk-dev] [PATCH] pci/vfio: fixup rte_intr_callback_unregister() handling

2018-10-26 Thread Burakov, Anatoly
On 24-Oct-18 11:11 AM, Darek Stojaczyk wrote: This function is documented to return the number of unregistered callbacks or negative numbers on error, but pci_vfio checks for ret != 0 to detect failures. Not anymore. Fixes: c115fd000c32 ("vfio: handle hotplug request notifier") Cc: jia@intel

[dpdk-dev] [PATCH] pci/vfio: fixup rte_intr_callback_unregister() handling

2018-10-24 Thread Darek Stojaczyk
This function is documented to return the number of unregistered callbacks or negative numbers on error, but pci_vfio checks for ret != 0 to detect failures. Not anymore. Fixes: c115fd000c32 ("vfio: handle hotplug request notifier") Cc: jia@intel.com Cc: sta...@dpdk.org Signed-off-by: Darek S