[<prev] [next>] [day] [month] [year] [list]
Message-ID: <1355600369-4156-1-git-send-email-dczhu@mips.com>
Date: Sat, 15 Dec 2012 11:39:29 -0800
From: Deng-Cheng Zhu <dczhu@...s.com>
To: <linux-kernel@...r.kernel.org>
CC: <dczhu@...s.com>,
"Kirill A. Shutemov" <kirill.shutemov@...ux.intel.com>,
Ralf Baechle <ralf@...ux-mips.org>,
"Steven J. Hill" <sjhill@...s.com>
Subject: [PATCH] asm-generic, mm: pgtable: fix include for my_zero_pfn()
From: Deng-Cheng Zhu <dczhu@...s.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@...ux.intel.com>
Cc: Ralf Baechle <ralf@...ux-mips.org>
Cc: Steven J. Hill <sjhill@...s.com>
Signed-off-by: Deng-Cheng Zhu <dczhu@...s.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
@@ -4,7 +4,7 @@
#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
--
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@...r.kernel.org
More majordomo info at http://vger.kernel.org/majordomo-info.html
Please read the FAQ at http://www.tux.org/lkml/
Powered by blists - more mailing lists