diff options
author | Jeff Dike <jdike@addtoit.com> | 2006-12-08 05:36:23 -0500 |
---|---|---|
committer | Linus Torvalds <torvalds@woody.osdl.org> | 2006-12-08 11:28:39 -0500 |
commit | e182c965b6ce0dffed0967a1be2173825a2ede2f (patch) | |
tree | 287d3801dc660b4bc39da08400a68b6ea536e30e /include/asm-um/bug.h | |
parent | c31a0bf3e1bc581676618db7492f18798fd0a73f (diff) |
[PATCH] UML: add generic BUG support
The BUG changes in -mm3 need some arch support. This patch adds the UML
support needed. For the most part, it was stolen from the underlying
architecture. The exception is the kernel eip < PAGE_OFFSET test, which is
wrong for skas mode UMLs.
Signed-off-by: Jeff Dike <jdike@addtoit.com>
Cc: Jeremy Fitzhardinge <jeremy@goop.org>
Signed-off-by: Andrew Morton <akpm@osdl.org>
Signed-off-by: Linus Torvalds <torvalds@osdl.org>
Diffstat (limited to 'include/asm-um/bug.h')
-rw-r--r-- | include/asm-um/bug.h | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/include/asm-um/bug.h b/include/asm-um/bug.h index 1e22fa26ff06..3357c5e2468e 100644 --- a/include/asm-um/bug.h +++ b/include/asm-um/bug.h | |||
@@ -1,4 +1,6 @@ | |||
1 | #ifndef __UM_BUG_H | 1 | #ifndef __UM_BUG_H |
2 | #define __UM_BUG_H | 2 | #define __UM_BUG_H |
3 | #include <asm-generic/bug.h> | 3 | |
4 | #include <asm/arch/bug.h> | ||
5 | |||
4 | #endif | 6 | #endif |