]> git.karo-electronics.de Git - mv-sheeva.git/commitdiff
tracing: fix undeclared 'PAGE_SIZE' in include/linux/trace_seq.h
authorWu Zhangjin <wuzj@lemote.com>
Sun, 14 Jun 2009 06:52:30 +0000 (14:52 +0800)
committerSteven Rostedt <rostedt@goodmis.org>
Mon, 15 Jun 2009 15:37:09 +0000 (11:37 -0400)
when compiling linux-mips with kmemtrace enabled, there will be an
error:

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
included the relative header file, so, fix it via adding the header file
<asm/page.h>

Acked-by: Frederic Weisbecker <fweisbec@gmail.com>
Acked-by: Pekka Enberg <penberg@cs.helsinki.fi>
Signed-off-by: Wu Zhangjin <wuzj@lemote.com>
LKML-Reference: <1244962350-28702-1-git-send-email-wuzhangjin@gmail.com>
Signed-off-by: Steven Rostedt <rostedt@goodmis.org>
include/linux/trace_seq.h

index c68bccba207432ae0d9c029b0f06a7e39669a1e3..c134dd1fe6b6c45970175d445836f009ea7d9608 100644 (file)
@@ -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.