Re: [PATCH net] enic: fix checksum validation for IPv6

2019-02-01 Thread David Miller
From: Govindarajulu Varadarajan Date: Wed, 30 Jan 2019 06:59:00 -0800 > In case of IPv6 pkts, ipv4_csum_ok is 0. Because of this, driver does > not set skb->ip_summed. So IPv6 rx checksum is not offloaded. > > Signed-off-by: Govindarajulu Varadarajan Applied and queued up for -stable, thanks.

[PATCH net] enic: fix checksum validation for IPv6

2019-01-30 Thread Govindarajulu Varadarajan
In case of IPv6 pkts, ipv4_csum_ok is 0. Because of this, driver does not set skb->ip_summed. So IPv6 rx checksum is not offloaded. Signed-off-by: Govindarajulu Varadarajan --- drivers/net/ethernet/cisco/enic/enic_main.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/drive