diff options
author | Thomas Gleixner <tglx@linutronix.de> | 2008-01-30 07:34:06 -0500 |
---|---|---|
committer | Ingo Molnar <mingo@elte.hu> | 2008-01-30 07:34:06 -0500 |
commit | 5f5192b9feeff6a96c97c143c3ca558fdbe2dc8e (patch) | |
tree | 4abe5cf23d4cb4a052af8c26c80451b368392ee8 /arch/x86/mm/ioremap.c | |
parent | e1271f686a0e376aa6ee97984c16f91a787e4480 (diff) |
x86: move page_is_ram() function
Signed-off-by: Ingo Molnar <mingo@elte.hu>
Signed-off-by: Thomas Gleixner <tglx@linutronix.de>
Diffstat (limited to 'arch/x86/mm/ioremap.c')
-rw-r--r-- | arch/x86/mm/ioremap.c | 24 |
1 files changed, 24 insertions, 0 deletions
diff --git a/arch/x86/mm/ioremap.c b/arch/x86/mm/ioremap.c index f4a2082568c8..d3026e1906f9 100644 --- a/arch/x86/mm/ioremap.c +++ b/arch/x86/mm/ioremap.c | |||
@@ -31,6 +31,30 @@ EXPORT_SYMBOL(__phys_addr); | |||
31 | 31 | ||
32 | #endif | 32 | #endif |
33 | 33 | ||
34 | int page_is_ram(unsigned long pagenr) | ||
35 | { | ||
36 | unsigned long addr, end; | ||
37 | int i; | ||
38 | |||
39 | for (i = 0; i < e820.nr_map; i++) { | ||
40 | /* | ||
41 | * Not usable memory: | ||
42 | */ | ||
43 | if (e820.map[i].type != E820_RAM) | ||
44 | continue; | ||
45 | /* | ||
46 | * !!!FIXME!!! Some BIOSen report areas as RAM that | ||
47 | * are not. Notably the 640->1Mb area. We need a sanity | ||
48 | * check here. | ||
49 | */ | ||
50 | addr = (e820.map[i].addr + PAGE_SIZE-1) >> PAGE_SHIFT; | ||
51 | end = (e820.map[i].addr + e820.map[i].size) >> PAGE_SHIFT; | ||
52 | if ((pagenr >= addr) && (pagenr < end)) | ||
53 | return 1; | ||
54 | } | ||
55 | return 0; | ||
56 | } | ||
57 | |||
34 | /* | 58 | /* |
35 | * Fix up the linear direct mapping of the kernel to avoid cache attribute | 59 | * Fix up the linear direct mapping of the kernel to avoid cache attribute |
36 | * conflicts. | 60 | * conflicts. |