On Fri, 3 Aug 2018 02:05:39 +0200 Florian Westphal <f...@strlen.de> wrote:
> + if (-skb_network_offset(skb) + skb->len < IPV6_MIN_MTU && Is there a reason to write the arithmetic expression in this order? Why not: if (skb->len - skb_network_offset(skb) < IPV6_MIN_MTU &&