diff options
author | Stephen Rothwell <sfr@canb.auug.org.au> | 2010-08-22 23:31:14 -0400 |
---|---|---|
committer | David S. Miller <davem@davemloft.net> | 2010-08-22 23:31:14 -0400 |
commit | 2436243a39de56f03d38c74139261cc61bea8456 (patch) | |
tree | 5b2426d71f5b0fcc0543a7a3d8d093383faf6afd /net/sched/act_csum.c | |
parent | d8287fc864643beaf1623c92aceb1ab38eae0648 (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>
Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'net/sched/act_csum.c')
-rw-r--r-- | net/sched/act_csum.c | 1 |
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 @@ | |||
29 | #include <linux/igmp.h> | 29 | #include <linux/igmp.h> |
30 | #include <net/tcp.h> | 30 | #include <net/tcp.h> |
31 | #include <net/udp.h> | 31 | #include <net/udp.h> |
32 | #include <net/ip6_checksum.h> | ||
32 | 33 | ||
33 | #include <net/act_api.h> | 34 | #include <net/act_api.h> |
34 | 35 | ||