diff options
author | Herbert Xu <herbert@gondor.apana.org.au> | 2005-05-23 13:11:07 -0700 |
---|---|---|
committer | David S. Miller <davem@davemloft.net> | 2005-05-23 13:11:07 -0700 |
commit | 180e42503300629692b513daeb55a6bb0b51500c (patch) | |
tree | 3d33734fd13f7017179bcc7ff49bc828a838807b | |
parent | 205902ecc7bcb2a007ed27bb3518e8f70e5d113e (diff) | |
download | linux-next-180e42503300629692b513daeb55a6bb0b51500c.tar.gz |
[IPV6]: Fix xfrm tunnel oops with large packets
Signed-off-by: Herbert Xu <herbert@gondor.apana.org.au>
Acked-by: Hideaki YOSHIFUJI <yoshfuji@linux-ipv6.org>
Signed-off-by: David S. Miller <davem@davemloft.net>
-rw-r--r-- | net/ipv6/xfrm6_output.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/net/ipv6/xfrm6_output.c b/net/ipv6/xfrm6_output.c index 601a148f60f3..6b9867717d11 100644 --- a/net/ipv6/xfrm6_output.c +++ b/net/ipv6/xfrm6_output.c @@ -84,6 +84,7 @@ static int xfrm6_tunnel_check_size(struct sk_buff *skb) mtu = IPV6_MIN_MTU; if (skb->len > mtu) { + skb->dev = dst->dev; icmpv6_send(skb, ICMPV6_PKT_TOOBIG, 0, mtu, skb->dev); ret = -EMSGSIZE; } |