* [Patch] 2.6.29-rc3-git2 - Fix net/ipv6/ip6mr.o build break
@ 2009-01-31 6:25 Sachin P. Sant
2009-01-31 8:50 ` David Miller
0 siblings, 1 reply; 2+ messages in thread
From: Sachin P. Sant @ 2009-01-31 6:25 UTC (permalink / raw)
To: linuxppc-dev; +Cc: yoshfuji, Mel Gorman, davem, linux-kernel, Kamalesh Babulal
[-- Attachment #1: Type: text/plain, Size: 668 bytes --]
allmodconfig build breaks with following error.
CHK include/linux/version.h
CHK include/linux/utsrelease.h
SYMLINK include/asm -> include/asm-powerpc
CALL scripts/checksyscalls.sh
CHK include/linux/compile.h
CALL arch/powerpc/kernel/systbl_chk.sh
CALL arch/powerpc/kernel/prom_init_check.sh
CC [M] net/ipv6/ip6mr.o
net/ipv6/ip6mr.c: In function pim6_rcv:
net/ipv6/ip6mr.c:366: error: implicit declaration of function csum_ipv6_magic
make[2]: *** [net/ipv6/ip6mr.o] Error 1
make[1]: *** [net/ipv6] Error 2
make: *** [net] Error 2
Following patch fixes this issue.
thanks
-Sachin
Signed-off-by : Sachin Sant <sachinp@in.ibm.com>
---
[-- Attachment #2: fix-ipv6-ip6mr-build-break.patch --]
[-- Type: text/x-patch, Size: 462 bytes --]
* Fix ip6mr build break (undefined csum_ipv6_magic symbol)
Signed-off-by : Sachin Sant (sachinp@in.ibm.com)
---
diff -Naurp a/net/ipv6/ip6mr.c b/net/ipv6/ip6mr.c
--- a/net/ipv6/ip6mr.c 2009-01-31 13:58:00.000000000 +0530
+++ b/net/ipv6/ip6mr.c 2009-01-31 13:59:16.000000000 +0530
@@ -43,6 +43,7 @@
#include <net/netlink.h>
#include <net/ipv6.h>
+#include <net/ip6_checksum.h>
#include <net/ip6_route.h>
#include <linux/mroute6.h>
#include <linux/pim.h>
^ permalink raw reply [flat|nested] 2+ messages in thread
end of thread, other threads:[~2009-01-31 8:50 UTC | newest]
Thread overview: 2+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2009-01-31 6:25 [Patch] 2.6.29-rc3-git2 - Fix net/ipv6/ip6mr.o build break Sachin P. Sant
2009-01-31 8:50 ` David Miller
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).