diff options
author | H. Peter Anvin <hpa@zytor.com> | 2008-04-17 11:40:45 -0400 |
---|---|---|
committer | Ingo Molnar <mingo@elte.hu> | 2008-04-17 11:40:45 -0400 |
commit | fe770bf0310d90b3b033c19044d45b7de5f2041c (patch) | |
tree | 5d4ca3147f569020201095189e0c43543d1d7d09 /arch/x86/mm/Makefile | |
parent | 926e5392ba8a388ae32ca0d2714cc2c73945c609 (diff) |
x86: clean up the page table dumper and add 32-bit support
Clean up the page table dumper (fix boundary conditions, table driven
address ranges, some formatting changes since it is no longer using
the kernel log but a separate virtual file), and generalize to 32
bits.
[ mingo@elte.hu: x86: fix the pagetable dumper ]
Signed-off-by: H. Peter Anvin <hpa@zytor.com>
Signed-off-by: Ingo Molnar <mingo@elte.hu>
Signed-off-by: Thomas Gleixner <tglx@linutronix.de>
Diffstat (limited to 'arch/x86/mm/Makefile')
-rw-r--r-- | arch/x86/mm/Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/arch/x86/mm/Makefile b/arch/x86/mm/Makefile index 28632f42ca66..9ab9889863f0 100644 --- a/arch/x86/mm/Makefile +++ b/arch/x86/mm/Makefile | |||
@@ -3,6 +3,7 @@ obj-y := init_$(BITS).o fault.o ioremap.o extable.o pageattr.o mmap.o | |||
3 | obj-$(CONFIG_X86_32) += pgtable_32.o | 3 | obj-$(CONFIG_X86_32) += pgtable_32.o |
4 | 4 | ||
5 | obj-$(CONFIG_HUGETLB_PAGE) += hugetlbpage.o | 5 | obj-$(CONFIG_HUGETLB_PAGE) += hugetlbpage.o |
6 | obj-$(CONFIG_X86_PTDUMP) += dump_pagetables.o | ||
6 | 7 | ||
7 | obj-$(CONFIG_HIGHMEM) += highmem_32.o | 8 | obj-$(CONFIG_HIGHMEM) += highmem_32.o |
8 | 9 | ||
@@ -12,5 +13,4 @@ else | |||
12 | obj-$(CONFIG_NUMA) += numa_64.o | 13 | obj-$(CONFIG_NUMA) += numa_64.o |
13 | obj-$(CONFIG_K8_NUMA) += k8topology_64.o | 14 | obj-$(CONFIG_K8_NUMA) += k8topology_64.o |
14 | obj-$(CONFIG_ACPI_NUMA) += srat_64.o | 15 | obj-$(CONFIG_ACPI_NUMA) += srat_64.o |
15 | obj-$(CONFIG_X86_PTDUMP) += dump_pagetables.o | ||
16 | endif | 16 | endif |