| To: | Frederic Weisbecker <fweisbec@gmail.com>, linux-kernel@vger.kernel.org, Linux-MIPS <linux-mips@linux-mips.org> |
|---|---|
| Subject: | [PATCH] kmemtrace:fix undeclared 'PAGE_SIZE' via asm/page.h |
| From: | Wu Zhangjin <wuzhangjin@gmail.com> |
| Date: | Sun, 14 Jun 2009 13:54:23 +0800 |
| Cc: | Steven Rostedt <rostedt@goodmis.org>, Ralf Baechle <ralf@linux-mips.org>, Wu Zhangjin <wuzj@lemote.com> |
| Dkim-signature: | v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=gamma; h=domainkey-signature:received:received:from:to:cc:subject:date :message-id:x-mailer; bh=DwckijutvMWAZPCA30bwtzBqvcQ5HhZsOOk/qfZHw1s=; b=B7kV3npHR87YtyhKpGjCnQTwqihSRPBt9ZmbKYQAZhhVkICM0rNSJhBYvqsR1oDnUg ryH8QwpXRaQyrjUKCabf4IZu6nRAjvDejy9uH27V89L+eoq2UlNPP1c0f2V2QSp4IvWa sNs96rS8Ix7srG83k1HWIZfSFj9MFizsx6mAc= |
| Domainkey-signature: | a=rsa-sha1; c=nofws; d=gmail.com; s=gamma; h=from:to:cc:subject:date:message-id:x-mailer; b=JjZ8p3bxpQ265e+5potAfpbi/LiYFm2z80tUDzPwtnW1JKJRoE7K0tDzg7RPIozVZU FiySQ/IM/bS/wm7pmFSwUSyDB5izMqugJj8GM2i7iuCl4tvOy3nL+Xxa4GScW4tmJN2h dst1WoO+EO+iqQ9nUjqT0PhR2CJCZETabtQMk= |
| Original-recipient: | rfc822;linux-mips@linux-mips.org |
| Sender: | linux-mips-bounce@linux-mips.org |
From: Wu Zhangjin <wuzj@lemote.com>
when compiling linux-mips with kmemtrace enabled, this error will be
there:
include/linux/trace_seq.h:12: error: 'PAGE_SIZE' undeclared here (not in
a function)
I checked the source code and found trace_seq.h used PAGE_SIZE but not
include the relative header file, so, fix it via adding the header file
<asm/page.h>
this error will not be triggered in linux-x86 for there is a
<asm/page.h> header file included in a certain header file. but which
not means <asm/page.h> is not needed in trace_seq.h
Signed-off-by: Wu Zhangjin <wuzj@lemote.com>
---
include/linux/trace_seq.h | 2 ++
1 files changed, 2 insertions(+), 0 deletions(-)
diff --git a/include/linux/trace_seq.h b/include/linux/trace_seq.h
index c68bccb..c134dd1 100644
--- a/include/linux/trace_seq.h
+++ b/include/linux/trace_seq.h
@@ -3,6 +3,8 @@
#include <linux/fs.h>
+#include <asm/page.h>
+
/*
* Trace sequences are used to allow a function to call several other functions
* to create a string of data to use (up to a max of PAGE_SIZE.
--
1.6.0.4
|
| <Prev in Thread] | Current Thread | [Next in Thread> |
|---|---|---|
| ||
| Previous by Date: | Re: [PATCH 1/8] add lib/gcd.c, James Cloos |
|---|---|
| Next by Date: | Re: [PATCH] kmemtrace:fix undeclared 'PAGE_SIZE' via asm/page.h, Pekka Enberg |
| Previous by Thread: | Error: symbol `__pastwait' is already defined, Wu Zhangjin |
| Next by Thread: | Re: [PATCH] kmemtrace:fix undeclared 'PAGE_SIZE' via asm/page.h, Pekka Enberg |
| Indexes: | [Date] [Thread] [Top] [All Lists] |