aboutsummaryrefslogtreecommitdiffstats
path: root/include/asm-i386
diff options
context:
space:
mode:
authorArjan van de Ven <arjan@linux.intel.com>2006-04-07 19:49:27 +0200
committerLinus Torvalds <torvalds@g5.osdl.org>2006-04-09 11:53:50 -0700
commit952223683ec989e86328c24808fdb962c4dbeb0a (patch)
tree0c7473d4469cba883bf880bbaa04900960806742 /include/asm-i386
parent[PATCH] x86_64: Rename e820_mapped to e820_any_mapped (diff)
downloadlinux-dev-952223683ec989e86328c24808fdb962c4dbeb0a.tar.xz
linux-dev-952223683ec989e86328c24808fdb962c4dbeb0a.zip
[PATCH] x86_64: Introduce e820_all_mapped
Introduce a e820_all_mapped() function which checks if the entire range <start,end> is mapped with type. This is done by moving the local start variable to the end of each known-good region; if at the end of the function the start address is still before end, there must be a part that's not of the correct type; otherwise it's a good region. Signed-off-by: Arjan van de Ven <arjan@linux.intel.com> Signed-off-by: Andi Kleen <ak@suse.de> Signed-off-by: Linus Torvalds <torvalds@osdl.org>
Diffstat (limited to 'include/asm-i386')
-rw-r--r--include/asm-i386/e820.h4
1 files changed, 4 insertions, 0 deletions
diff --git a/include/asm-i386/e820.h b/include/asm-i386/e820.h
index edf65be21a92..ca82acb8cb1f 100644
--- a/include/asm-i386/e820.h
+++ b/include/asm-i386/e820.h
@@ -35,6 +35,10 @@ struct e820map {
};
extern struct e820map e820;
+
+extern int e820_all_mapped(unsigned long start, unsigned long end,
+ unsigned type);
+
#endif/*!__ASSEMBLY__*/
#endif/*__E820_HEADER*/