Re: [dpdk-dev] [PATCH v2] net/i40e: fix parsing tunnel filter issue

2017-02-07 Thread Ferruh Yigit
On 2/6/2017 5:29 AM, Beilei Xing wrote: > VNI of VXLAN is parsed wrongly. The root cause is that > array vni in item VXLAN also uses network byte ordering. > > Fixes: d416530e6358 ("net/i40e: parse tunnel filter") > > Signed-off-by: Beilei Xing Applied to dpdk-next-net/master, thanks.

[dpdk-dev] [PATCH v2] net/i40e: fix parsing tunnel filter issue

2017-02-05 Thread Beilei Xing
VNI of VXLAN is parsed wrongly. The root cause is that array vni in item VXLAN also uses network byte ordering. Fixes: d416530e6358 ("net/i40e: parse tunnel filter") Signed-off-by: Beilei Xing --- v2 changes: Use rte_be_to_cpu_32 api instead of the new function. drivers/net/i40e/i40e_flow.c |