From mboxrd@z Thu Jan 1 00:00:00 1970 From: Edward Cree Subject: Re: [PATCH net-next 7/8] net: ip_tunnel: remove 'csum_help' argument to iptunnel_handle_offloads Date: Mon, 11 Jan 2016 13:24:53 +0000 Message-ID: <5693AD25.4020904@solarflare.com> References: <56901197.8040808@solarflare.com> <56901244.8060809@solarflare.com> Mime-Version: 1.0 Content-Type: text/plain; charset="utf-8" Content-Transfer-Encoding: 7bit Cc: David Miller , Netdev , To: Alexander Duyck , Tom Herbert Return-path: Received: from nbfkord-smmo01.seg.att.com ([209.65.160.76]:60711 "EHLO nbfkord-smmo01.seg.att.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1760108AbcAKNZB (ORCPT ); Mon, 11 Jan 2016 08:25:01 -0500 In-Reply-To: Sender: netdev-owner@vger.kernel.org List-ID: On 09/01/16 02:05, Alexander Duyck wrote: > If we clear skb->encapsulation if we don't have CHECKSUM_PARTIAL set > then we don't have the issue. Really the addition of the line > clearing skb->encapsulation should probably be added to the first > patch so that we don't leave skb->encapsulation set when we aren't > requesting offloads. Next version of series will have (in this patch) if (skb->ip_summed != CHECKSUM_PARTIAL) { skb->ip_summed = CHECKSUM_NONE; skb->encapsulation = 0; } Will that do, or does it need to be squeezed into an earlier patch in the series (which one?) -ed