Re: [dpdk-dev] [PATCH 01/12] ethdev: save VLAN filter setting

2017-03-03 Thread Stephen Hemminger
On Fri, 3 Mar 2017 16:40:23 +0100 Gaetan Rivet wrote: > Other configuration items (i.e. MAC addresses) are stored within > rte_eth_dev_data, but not this one. > > Signed-off-by: Gaetan Rivet Maybe time to introduce a generic set of bit array operations like kernel set/clear/test bit functions

[dpdk-dev] [PATCH 01/12] ethdev: save VLAN filter setting

2017-03-03 Thread Gaetan Rivet
Other configuration items (i.e. MAC addresses) are stored within rte_eth_dev_data, but not this one. Signed-off-by: Gaetan Rivet --- lib/librte_ether/rte_ethdev.c | 19 ++- lib/librte_ether/rte_ethdev.h | 10 ++ 2 files changed, 28 insertions(+), 1 deletion(-) diff --git