[dpdk-dev] [PATCH v1] i40e: fix olflags for vector RX

2016-06-09 Thread Bruce Richardson
On Fri, Jun 03, 2016 at 07:19:09AM +, Azarewicz, PiotrX T wrote: > Hi, > > > --- a/drivers/net/i40e/i40e_rxtx_vec.c > > +++ b/drivers/net/i40e/i40e_rxtx_vec.c > > @@ -149,7 +149,7 @@ desc_to_olflags_v(__m128i descs[4], struct rte_mbuf > > **rx_pkts) > > > > /* mask everything except rss an

[dpdk-dev] [PATCH v1] i40e: fix olflags for vector RX

2016-06-03 Thread Azarewicz, PiotrX T
Hi, > --- a/drivers/net/i40e/i40e_rxtx_vec.c > +++ b/drivers/net/i40e/i40e_rxtx_vec.c > @@ -149,7 +149,7 @@ desc_to_olflags_v(__m128i descs[4], struct rte_mbuf > **rx_pkts) > > /* mask everything except rss and vlan flags > *bit2 is for vlan tag, bits 13:12 for rss > */ Please,

[dpdk-dev] [PATCH v1] i40e: fix olflags for vector RX

2016-05-24 Thread Zhe Tao
Problem: The flag for RSS and flow director is not set correctly in the vector RX function, so the upper layer APP which base on the related flags will not work correctly. Fix this problem by change the shuffle table. the original shuffle table is not correct. Fixes: 9ed94 (i40e: add vector Rx)