Re: [dpdk-dev] [PATCH] net/tap: fix the protocol field for non ip

2018-04-17 Thread Ferruh Yigit
On 4/17/2018 6:45 PM, Ferruh Yigit wrote: > On 4/13/2018 6:58 AM, Vipin Varghese wrote: >> When non IP packets are sent on TUN interface, the logic put Ipv6 as >> protocol field in header. With the current patch, the check is modified >> for ipv4, ipv6 and non ip. >> >> Fixes: 5a3efcfffd06 ("net/ta

Re: [dpdk-dev] [PATCH] net/tap: fix the protocol field for non ip

2018-04-17 Thread Ferruh Yigit
On 4/13/2018 6:58 AM, Vipin Varghese wrote: > When non IP packets are sent on TUN interface, the logic put Ipv6 as > protocol field in header. With the current patch, the check is modified > for ipv4, ipv6 and non ip. > > Fixes: 5a3efcfffd06 ("net/tap: add tun support") > Cc: vipin.vargh...@intel.

[dpdk-dev] [PATCH] net/tap: fix the protocol field for non ip

2018-04-12 Thread Vipin Varghese
When non IP packets are sent on TUN interface, the logic put Ipv6 as protocol field in header. With the current patch, the check is modified for ipv4, ipv6 and non ip. Fixes: 5a3efcfffd06 ("net/tap: add tun support") Cc: vipin.vargh...@intel.com Suggested-by: Ophir Munk Signed-off-by: Vipin Varg