diff options
author | Heiko Carstens <heiko.carstens@de.ibm.com> | 2005-06-25 17:58:11 -0400 |
---|---|---|
committer | Linus Torvalds <torvalds@ppc970.osdl.org> | 2005-06-25 19:24:51 -0400 |
commit | cf13f0eaffa31bf6a145c53c589654b11c72ddc7 (patch) | |
tree | 55c11d753422398b060ea9571698285b5fdc603b /arch/s390/kernel/crash.c | |
parent | fce0d5740322b98b863f9e609f5a9bd4c06703af (diff) |
[PATCH] kexec: s390 support
Add kexec support for s390 architecture.
From: Milton Miller <miltonm@bga.com>
- Fix passing of first argument to relocate_kernel assembly.
- Fix Kconfig description.
- Remove wrong comment and comments that describe obvious things.
- Allow only KEXEC_TYPE_DEFAULT as image type -> dump not supported.
Acked-by: Martin Schwidefsky <schwidefsky@de.ibm.com>
Signed-off-by: Heiko Carstens <heiko.carstens@de.ibm.com>
Signed-off-by: Andrew Morton <akpm@osdl.org>
Signed-off-by: Linus Torvalds <torvalds@osdl.org>
Diffstat (limited to 'arch/s390/kernel/crash.c')
-rw-r--r-- | arch/s390/kernel/crash.c | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/arch/s390/kernel/crash.c b/arch/s390/kernel/crash.c new file mode 100644 index 000000000000..db38283c1f27 --- /dev/null +++ b/arch/s390/kernel/crash.c | |||
@@ -0,0 +1,17 @@ | |||
1 | /* | ||
2 | * arch/s390/kernel/crash.c | ||
3 | * | ||
4 | * (C) Copyright IBM Corp. 2005 | ||
5 | * | ||
6 | * Author(s): Heiko Carstens <heiko.carstens@de.ibm.com> | ||
7 | * | ||
8 | */ | ||
9 | |||
10 | #include <linux/threads.h> | ||
11 | #include <linux/kexec.h> | ||
12 | |||
13 | note_buf_t crash_notes[NR_CPUS]; | ||
14 | |||
15 | void machine_crash_shutdown(void) | ||
16 | { | ||
17 | } | ||