Re: [dpdk-dev] [PATCH] net/bonding: add support to match on 0x88A8 ethertype

2018-08-23 Thread Ferruh Yigit
On 8/16/2018 1:56 PM, Chas Williams wrote: > On Tue, Aug 7, 2018 at 4:11 AM wangyunjian wrote: > >> From: Yunjian Wang >> >> We assume VLAN ethtertype is 0x8100 in get_vlan_offset() function, >> but it could be 0x88A8 if QinQ is supported. >> >> Signed-off-by: Yunjian Wang >> > > Acked-by: Cha

Re: [dpdk-dev] [PATCH] net/bonding: add support to match on 0x88A8 ethertype

2018-08-16 Thread Chas Williams
On Tue, Aug 7, 2018 at 4:11 AM wangyunjian wrote: > From: Yunjian Wang > > We assume VLAN ethtertype is 0x8100 in get_vlan_offset() function, > but it could be 0x88A8 if QinQ is supported. > > Signed-off-by: Yunjian Wang > Acked-by: Chas Williams > --- > drivers/net/bonding/rte_eth_bond_p

[dpdk-dev] [PATCH] net/bonding: add support to match on 0x88A8 ethertype

2018-08-07 Thread wangyunjian
From: Yunjian Wang We assume VLAN ethtertype is 0x8100 in get_vlan_offset() function, but it could be 0x88A8 if QinQ is supported. Signed-off-by: Yunjian Wang --- drivers/net/bonding/rte_eth_bond_pmd.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/drivers/net/bonding/rt