summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorStephen Rothwell <sfr@canb.auug.org.au>2010-08-23 13:23:22 +1000
committerStephen Rothwell <sfr@canb.auug.org.au>2010-08-23 13:25:14 +1000
commit351da6a1259e8809e76bdf0521752cbf872caf61 (patch)
treefef0216ba36ee7df5805e52b37dde302a26cc0b2
parent8d6e46ae6ce39e085f869b41dfeefbdb32da6ff6 (diff)
net/sched: need to include net/ip6_checksum.h
for the declararion of csum_ipv6_magic. Fixes this build error on PowerPC (at least): net/sched/act_csum.c: In function 'tcf_csum_ipv6_icmp': net/sched/act_csum.c:178: error: implicit declaration of function 'csum_ipv6_magic' Signed-off-by: Stephen Rothwell <sfr@canb.auug.org.au>
-rw-r--r--net/sched/act_csum.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/net/sched/act_csum.c b/net/sched/act_csum.c
index 58d7f36949da..be41f1cc10ee 100644
--- a/net/sched/act_csum.c
+++ b/net/sched/act_csum.c
@@ -29,6 +29,7 @@
#include <linux/igmp.h>
#include <net/tcp.h>
#include <net/udp.h>
+#include <net/ip6_checksum.h>
#include <net/act_api.h>