From: Denis V. Lunev Date: Thu, 10 Jul 2008 23:54:50 +0000 (-0700) Subject: ipv6: missed namespace context in ipv6_rthdr_rcv X-Git-Url: http://drtracing.org/?a=commitdiff_plain;h=0ce28553cc018be5022f51e67c87997f7271534e;p=deliverable%2Flinux.git ipv6: missed namespace context in ipv6_rthdr_rcv Signed-off-by: Denis V. Lunev Signed-off-by: David S. Miller --- diff --git a/net/ipv6/exthdrs.c b/net/ipv6/exthdrs.c index 3cd1c993d52b..dcf94fdfb863 100644 --- a/net/ipv6/exthdrs.c +++ b/net/ipv6/exthdrs.c @@ -445,7 +445,7 @@ looped_back: kfree_skb(skb); return -1; } - if (!ipv6_chk_home_addr(&init_net, addr)) { + if (!ipv6_chk_home_addr(dev_net(skb->dst->dev), addr)) { IP6_INC_STATS_BH(ip6_dst_idev(skb->dst), IPSTATS_MIB_INADDRERRORS); kfree_skb(skb);