[dpdk-dev] [PATCH 02/20] librte_ether: add fields from rte_pci_driver to rte_eth_dev_data

2015-09-30 Thread Iremonger, Bernard
Hi Neil > > > > > +++ b/lib/librte_ether/rte_ethdev.h > > > > > @@ -1635,8 +1635,23 @@ struct rte_eth_dev_data { > > > > > all_multicast : 1, /**< RX all multicast mode ON(1) / > OFF(0). */ > > > > > dev_started : 1, /**< Device state: STARTED(1) / > STOPPED(0). */ >

[dpdk-dev] [PATCH 02/20] librte_ether: add fields from rte_pci_driver to rte_eth_dev_data

2015-09-30 Thread Bruce Richardson
On Wed, Sep 30, 2015 at 09:18:53AM -0400, Neil Horman wrote: > > +} > > diff --git a/lib/librte_ether/rte_ethdev.h b/lib/librte_ether/rte_ethdev.h > > index fa06554..9cd262b 100644 > > --- a/lib/librte_ether/rte_ethdev.h > > +++ b/lib/librte_ether/rte_ethdev.h > > @@ -1635,8 +1635,23 @@ struct rte_

[dpdk-dev] [PATCH 02/20] librte_ether: add fields from rte_pci_driver to rte_eth_dev_data

2015-09-30 Thread Bruce Richardson
On Wed, Sep 30, 2015 at 09:14:48AM -0400, Neil Horman wrote: > On Wed, Sep 30, 2015 at 10:56:04AM +0100, Bruce Richardson wrote: > > On Tue, Sep 29, 2015 at 03:08:12PM -0400, Neil Horman wrote: > > > On Mon, Sep 28, 2015 at 02:03:20PM +0100, Bernard Iremonger wrote: > > > > add dev_flags to rte_eth

[dpdk-dev] [PATCH 02/20] librte_ether: add fields from rte_pci_driver to rte_eth_dev_data

2015-09-30 Thread Bruce Richardson
On Tue, Sep 29, 2015 at 03:08:12PM -0400, Neil Horman wrote: > On Mon, Sep 28, 2015 at 02:03:20PM +0100, Bernard Iremonger wrote: > > add dev_flags to rte_eth_dev_data, add macros for dev_flags. > > add kdrv to rte_eth_dev_data. > > add numa_node to rte_eth_dev_data. > > add drv_name to rte_eth_dev

[dpdk-dev] [PATCH 02/20] librte_ether: add fields from rte_pci_driver to rte_eth_dev_data

2015-09-30 Thread Neil Horman
> +} > diff --git a/lib/librte_ether/rte_ethdev.h b/lib/librte_ether/rte_ethdev.h > index fa06554..9cd262b 100644 > --- a/lib/librte_ether/rte_ethdev.h > +++ b/lib/librte_ether/rte_ethdev.h > @@ -1635,8 +1635,23 @@ struct rte_eth_dev_data { > all_multicast : 1, /**< RX all multicast m

[dpdk-dev] [PATCH 02/20] librte_ether: add fields from rte_pci_driver to rte_eth_dev_data

2015-09-30 Thread Neil Horman
On Wed, Sep 30, 2015 at 10:56:04AM +0100, Bruce Richardson wrote: > On Tue, Sep 29, 2015 at 03:08:12PM -0400, Neil Horman wrote: > > On Mon, Sep 28, 2015 at 02:03:20PM +0100, Bernard Iremonger wrote: > > > add dev_flags to rte_eth_dev_data, add macros for dev_flags. > > > add kdrv to rte_eth_dev_da

[dpdk-dev] [PATCH 02/20] librte_ether: add fields from rte_pci_driver to rte_eth_dev_data

2015-09-29 Thread Neil Horman
On Mon, Sep 28, 2015 at 02:03:20PM +0100, Bernard Iremonger wrote: > add dev_flags to rte_eth_dev_data, add macros for dev_flags. > add kdrv to rte_eth_dev_data. > add numa_node to rte_eth_dev_data. > add drv_name to rte_eth_dev_data. > use dev_type to distinguish between vdev's and pdev's. > remov

[dpdk-dev] [PATCH 02/20] librte_ether: add fields from rte_pci_driver to rte_eth_dev_data

2015-09-28 Thread Bernard Iremonger
add dev_flags to rte_eth_dev_data, add macros for dev_flags. add kdrv to rte_eth_dev_data. add numa_node to rte_eth_dev_data. add drv_name to rte_eth_dev_data. use dev_type to distinguish between vdev's and pdev's. remove pci_dev branches. Signed-off-by: Bernard Iremonger --- lib/librte_ether/rt