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