diff options
| author | Randolph Chung <tausq@debian.org> | 2007-06-12 02:27:32 -0400 |
|---|---|---|
| committer | Kyle McMartin <kyle@minerva.i.cabal.ca> | 2007-06-21 17:46:21 -0400 |
| commit | e036306aa1832963cd147849b282259a32f5ac08 (patch) | |
| tree | 6490e81ec646cfda8791b134f1e6ce703b812d03 /arch/parisc/kernel | |
| parent | 06b32f3ab6df4c7489729f94bdc7093c72681d4b (diff) | |
[PARISC] Fix unwinder on 64-bit kernels
The unwinder was broken by the shift of PAGE_OFFSET in order to increase the
size of the vmalloc area on 64-bit kernels.
Signed-off-by: Randolph Chung <tausq@debian.org>
Signed-off-by: Kyle McMartin <kyle@parisc-linux.org>
Diffstat (limited to 'arch/parisc/kernel')
| -rw-r--r-- | arch/parisc/kernel/unwind.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/arch/parisc/kernel/unwind.c b/arch/parisc/kernel/unwind.c index e70f57e276..cad9d78312 100644 --- a/arch/parisc/kernel/unwind.c +++ b/arch/parisc/kernel/unwind.c | |||
| @@ -26,6 +26,8 @@ | |||
| 26 | #define dbg(x...) | 26 | #define dbg(x...) |
| 27 | #endif | 27 | #endif |
| 28 | 28 | ||
| 29 | #define KERNEL_START (KERNEL_BINARY_TEXT_START - 0x1000) | ||
| 30 | |||
| 29 | extern struct unwind_table_entry __start___unwind[]; | 31 | extern struct unwind_table_entry __start___unwind[]; |
| 30 | extern struct unwind_table_entry __stop___unwind[]; | 32 | extern struct unwind_table_entry __stop___unwind[]; |
| 31 | 33 | ||
