Re: [dpdk-dev] [PATCH] net/sfc: cut non VLAN ID bits from TCI

2018-07-07 Thread Andrew Rybchenko
On 05.07.2018 22:23, Adrien Mazarguil wrote: On Thu, Jul 05, 2018 at 01:14:49PM +0200, Adrien Mazarguil wrote: On Fri, Jun 29, 2018 at 04:23:31PM +0100, Andrew Rybchenko wrote: TCI may contain PCP or DEI bits. Matching of these bits is not supported, but the bits still may be set in specificati

Re: [dpdk-dev] [PATCH] net/sfc: cut non VLAN ID bits from TCI

2018-07-05 Thread Adrien Mazarguil
On Thu, Jul 05, 2018 at 01:14:49PM +0200, Adrien Mazarguil wrote: > On Fri, Jun 29, 2018 at 04:23:31PM +0100, Andrew Rybchenko wrote: > > TCI may contain PCP or DEI bits. Matching of these bits is not > > supported, but the bits still may be set in specification value and > > not covered by mask. S

Re: [dpdk-dev] [PATCH] net/sfc: cut non VLAN ID bits from TCI

2018-07-05 Thread Adrien Mazarguil
On Fri, Jun 29, 2018 at 04:23:31PM +0100, Andrew Rybchenko wrote: > TCI may contain PCP or DEI bits. Matching of these bits is not > supported, but the bits still may be set in specification value and > not covered by mask. So, these bits should be ignored. > > Fixes: 894080975e1e ("net/sfc: suppo

[dpdk-dev] [PATCH] net/sfc: cut non VLAN ID bits from TCI

2018-06-29 Thread Andrew Rybchenko
TCI may contain PCP or DEI bits. Matching of these bits is not supported, but the bits still may be set in specification value and not covered by mask. So, these bits should be ignored. Fixes: 894080975e1e ("net/sfc: support VLAN in flow API filters") Cc: sta...@dpdk.org Signed-off-by: Andrew Ryb