Re: [dpdk-dev] [PATCH] lib/librte_ether: remove the repeat code

2017-07-31 Thread Thomas Monjalon
31/07/2017 16:42, Gaëtan Rivet: > Hi Zhiyong, > > On Fri, Jul 28, 2017 at 04:10:14PM +0800, Zhiyong Yang wrote: > > The code eth_dev->intr_handle = &dev->intr_handle; has duplicate code > > in the function rte_eth_copy_pci_info(), remove it here. > > > > Signed-off-by: Zhiyong Yang > > Acked-by

Re: [dpdk-dev] [PATCH] lib/librte_ether: remove the repeat code

2017-07-31 Thread Gaëtan Rivet
Hi Zhiyong, On Fri, Jul 28, 2017 at 04:10:14PM +0800, Zhiyong Yang wrote: > The code eth_dev->intr_handle = &dev->intr_handle; has duplicate code > in the function rte_eth_copy_pci_info(), remove it here. > > Signed-off-by: Zhiyong Yang Acked-by: Gaetan Rivet > --- > lib/librte_ether/rte_eth

[dpdk-dev] [PATCH] lib/librte_ether: remove the repeat code

2017-07-28 Thread Zhiyong Yang
The code eth_dev->intr_handle = &dev->intr_handle; has duplicate code in the function rte_eth_copy_pci_info(), remove it here. Signed-off-by: Zhiyong Yang --- lib/librte_ether/rte_ethdev_pci.h | 1 - 1 file changed, 1 deletion(-) diff --git a/lib/librte_ether/rte_ethdev_pci.h b/lib/librte_ethe