Procházet zdrojové kódy

gre: Fix MTU calculation for bound GRE tunnels

The GRE header length should be subtracted when the tunnel MTU is
calculated.  This just corrects for the associativity change
introduced by commit 42aa916265d740d66ac1f17290366e9494c884c2
("gre: Move MTU setting out of ipgre_tunnel_bind_dev").

Signed-off-by: Tom Goff <thomas.goff@boeing.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
Tom Goff před 16 roky
rodič
revize
8cdb045632
1 změnil soubory, kde provedl 1 přidání a 1 odebrání
  1. 1 1
      net/ipv4/ip_gre.c

+ 1 - 1
net/ipv4/ip_gre.c

@@ -951,7 +951,7 @@ static int ipgre_tunnel_bind_dev(struct net_device *dev)
 			addend += 4;
 			addend += 4;
 	}
 	}
 	dev->needed_headroom = addend + hlen;
 	dev->needed_headroom = addend + hlen;
-	mtu -= dev->hard_header_len - addend;
+	mtu -= dev->hard_header_len + addend;
 
 
 	if (mtu < 68)
 	if (mtu < 68)
 		mtu = 68;
 		mtu = 68;