[<prev] [next>] [<thread-prev] [thread-next>] [day] [month] [year] [list]
Message-Id: <20081008.111309.227060133.davem@davemloft.net>
Date: Wed, 08 Oct 2008 11:13:09 -0700 (PDT)
From: David Miller <davem@...emloft.net>
To: den@...nvz.org
Cc: netdev@...r.kernel.org, dlezcano@...ibm.com,
benjamin.thery@...l.net, xemul@...nvz.org, yoshfuji@...ux-ipv6.org
Subject: Re: [PATCH net-next 04/14] ipv6: added net argument to
IP6_INC_STATS_BH
From: "Denis V. Lunev" <den@...nvz.org>
Date: Wed, 8 Oct 2008 15:51:52 +0400
> Signed-off-by: Denis V. Lunev <den@...nvz.org>
Please type "make allmodconfig" before all test builds.
Or at least use grep when changing interface signatures.
You missed net/ipv6/ip6mr.c in these changes.
I added the following change to your commit to fix the
build:
diff --git a/net/ipv6/ip6mr.c b/net/ipv6/ip6mr.c
index 095bc45..182f8a1 100644
--- a/net/ipv6/ip6mr.c
+++ b/net/ipv6/ip6mr.c
@@ -1383,7 +1383,8 @@ int ip6mr_ioctl(struct sock *sk, int cmd, void __user *arg)
static inline int ip6mr_forward2_finish(struct sk_buff *skb)
{
- IP6_INC_STATS_BH(ip6_dst_idev(skb->dst), IPSTATS_MIB_OUTFORWDATAGRAMS);
+ IP6_INC_STATS_BH(dev_net(skb->dst->dev), ip6_dst_idev(skb->dst),
+ IPSTATS_MIB_OUTFORWDATAGRAMS);
return dst_output(skb);
}
--
To unsubscribe from this list: send the line "unsubscribe netdev" in
the body of a message to majordomo@...r.kernel.org
More majordomo info at http://vger.kernel.org/majordomo-info.html
Powered by blists - more mailing lists