[PATCH 2/2] kmemtrace: fix build brekage in linux/fs.h

From: Pekka Enberg
Date: Tue Mar 24 2009 - 04:15:24 EST


From: Pekka Enberg <penberg@xxxxxxxxxxxxxx>

Impact: fix build

This patch fixes up the following build breakage caused by commit
e251ea2fa52321009940fad02238ef1c369531ae ("rcu: don't include unnecessary
headers, allow kmemtrace w/ tracepoints").

CC init/do_mounts_initrd.o
In file included from init/do_mounts_initrd.c:3:
include/linux/fs.h: In function âalloc_secdataâ:
include/linux/fs.h:2237: error: implicit declaration of function âget_zeroed_pageâ
include/linux/fs.h:2237: error: âGFP_KERNELâ undeclared (first use in this function)
include/linux/fs.h:2237: error: (Each undeclared identifier is reported only once
include/linux/fs.h:2237: error: for each function it appears in.)
include/linux/fs.h: In function âfree_secdataâ:
include/linux/fs.h:2242: error: implicit declaration of function âfree_pageâ
In file included from include/linux/slab.h:12,
from include/linux/percpu.h:5,
from include/linux/percpu_counter.h:13,
from include/linux/ext2_fs_sb.h:20,
from include/linux/ext2_fs.h:69,
from init/do_mounts_initrd.c:5:
include/linux/gfp.h: At top level:
include/linux/gfp.h:223: error: conflicting types for âget_zeroed_pageâ
include/linux/fs.h:2237: error: previous implicit declaration of âget_zeroed_pageâ was here
make[1]: *** [init/do_mounts_initrd.o] Error 1
make: *** [init] Error 2

Cc: Eduard - Gabriel Munteanu <eduard.munteanu@xxxxxxxxxxx>
Signed-off-by: Pekka Enberg <penberg@xxxxxxxxxxxxxx>
---
include/linux/fs.h | 1 +
1 files changed, 1 insertions(+), 0 deletions(-)

diff --git a/include/linux/fs.h b/include/linux/fs.h
index 92734c0..add95da 100644
--- a/include/linux/fs.h
+++ b/include/linux/fs.h
@@ -8,6 +8,7 @@

#include <linux/limits.h>
#include <linux/ioctl.h>
+#include <linux/gfp.h>

/*
* It's silly to have NR_OPEN bigger than NR_FILE, but you can change
--
1.5.4.3



--
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@xxxxxxxxxxxxxxx
More majordomo info at http://vger.kernel.org/majordomo-info.html
Please read the FAQ at http://www.tux.org/lkml/