diff options
author | Becky Bruce <beckyb@kernel.crashing.org> | 2009-11-23 12:28:53 +0000 |
---|---|---|
committer | Benjamin Herrenschmidt <benh@kernel.crashing.org> | 2009-11-24 17:00:25 +1100 |
commit | 2d7cf3ef879b22bdfd271aa3b66733c53279e813 (patch) | |
tree | 885f2a9e976498a946a98e226a732b07795ef4c6 /arch/powerpc/include | |
parent | 7c31629fd60037c5eb2b8fd0e6def9fe097fa28e (diff) | |
download | kernel_samsung_espresso10-2d7cf3ef879b22bdfd271aa3b66733c53279e813.zip kernel_samsung_espresso10-2d7cf3ef879b22bdfd271aa3b66733c53279e813.tar.gz kernel_samsung_espresso10-2d7cf3ef879b22bdfd271aa3b66733c53279e813.tar.bz2 |
powerpc: Fix DEBUG_HIGHMEM build break from d4515646699
Code was added to mm/higmem.c that depends on several
kmap types that powerpc does not support. We add dummy
invalid definitions for KM_NMI, KM_NM_PTE, and KM_IRQ_PTE.
According to list discussion, this fix should not be needed
anymore starting with 2.6.33. The code is commented to this
effect so hopefully we will remember to remove this.
Signed-off-by: Becky Bruce <beckyb@kernel.crashing.org>
Signed-off-by: Benjamin Herrenschmidt <benh@kernel.crashing.org>
Diffstat (limited to 'arch/powerpc/include')
-rw-r--r-- | arch/powerpc/include/asm/kmap_types.h | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/arch/powerpc/include/asm/kmap_types.h b/arch/powerpc/include/asm/kmap_types.h index b6bac6f..9163695 100644 --- a/arch/powerpc/include/asm/kmap_types.h +++ b/arch/powerpc/include/asm/kmap_types.h @@ -29,5 +29,16 @@ enum km_type { KM_TYPE_NR }; +/* + * This is a temporary build fix that (so they say on lkml....) should no longer + * be required after 2.6.33, because of changes planned to the kmap code. + * Let's try to remove this cruft then. + */ +#ifdef CONFIG_DEBUG_HIGHMEM +#define KM_NMI (-1) +#define KM_NMI_PTE (-1) +#define KM_IRQ_PTE (-1) +#endif + #endif /* __KERNEL__ */ #endif /* _ASM_POWERPC_KMAP_TYPES_H */ |