diff options
author | Heiko Carstens <heiko.carstens@de.ibm.com> | 2012-05-09 16:27:35 +0200 |
---|---|---|
committer | Martin Schwidefsky <schwidefsky@de.ibm.com> | 2012-05-16 14:42:37 +0200 |
commit | 54310a2d9e109e1cbe24e41388def33ff0391cd1 (patch) | |
tree | 0c33e2e3c4d543d191222cc18dd87bc764a1aadd /arch/s390 | |
parent | 9d0f46af3ead2b38889bea07f1a031c0dfd6020e (diff) |
s390/crash dump: add missing SMP dependency
Fix this:
arch/s390/kernel/crash_dump.c:296:14:
error: 'zfcpdump_save_areas' undeclared (first use in this function)
Signed-off-by: Heiko Carstens <heiko.carstens@de.ibm.com>
Signed-off-by: Martin Schwidefsky <schwidefsky@de.ibm.com>
Diffstat (limited to 'arch/s390')
-rw-r--r-- | arch/s390/Kconfig | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/arch/s390/Kconfig b/arch/s390/Kconfig index 39799fac4d7a..eeaed9be5fda 100644 --- a/arch/s390/Kconfig +++ b/arch/s390/Kconfig @@ -569,7 +569,7 @@ config KEXEC config CRASH_DUMP bool "kernel crash dumps" - depends on 64BIT + depends on 64BIT && SMP select KEXEC help Generate crash dump after being started by kexec. |