15 Dec 2012 20:39
[PATCH] asm-generic, mm: pgtable: fix include for my_zero_pfn()
Deng-Cheng Zhu <dczhu <at> mips.com>
2012-12-15 19:39:29 GMT
2012-12-15 19:39:29 GMT
From: Deng-Cheng Zhu <dczhu <at> mips.com>
A MIPS build showed:
In file included from arch/mips/include/asm/pgtable.h:388,
from mm/init-mm.c:9:
include/asm-generic/pgtable.h: In function 'my_zero_pfn':
include/asm-generic/pgtable.h:462: error: 'mem_map' undeclared (first use
in this function)
include/asm-generic/pgtable.h:462: error: (Each undeclared identifier is
reported only once
include/asm-generic/pgtable.h:462: error: for each function it appears in.)
This was caused by the following commit:
816422ad76 asm-generic, mm: pgtable: consolidate zero page helpers
Changing my_zero_pfn from #define to an inline function requires the
include fix. I believe s390 has the same problem as mips.
Although Ralf has added "#include <linux/mmzone.h>" in
arch/mips/include/asm/pgtable.h in his "MIPS: Transparent Huge Pages
support" commit, and this error went away, I think this fix is needed
since asm-generic/pgtable.h is now the place of the function my_zero_pfn()
who requires the definition of mem_map and this header could be included by
others.
Cc: Kirill A. Shutemov <kirill.shutemov <at> linux.intel.com>
Cc: Ralf Baechle <ralf <at> linux-mips.org>
Cc: Steven J. Hill <sjhill <at> mips.com>
Signed-off-by: Deng-Cheng Zhu <dczhu <at> mips.com>
---
include/asm-generic/pgtable.h | 2 +-
1 files changed, 1 insertions(+), 1 deletions(-)
diff --git a/include/asm-generic/pgtable.h b/include/asm-generic/pgtable.h
index 284e808..628dbbb 100644
--- a/include/asm-generic/pgtable.h
+++ b/include/asm-generic/pgtable.h
<at> <at> -4,7 +4,7 <at> <at>
#ifndef __ASSEMBLY__
#ifdef CONFIG_MMU
-#include <linux/mm_types.h>
+#include <linux/mm.h>
#include <linux/bug.h>
#ifndef __HAVE_ARCH_PTEP_SET_ACCESS_FLAGS
--
--
1.7.1
RSS Feed