projects
/
linux-2.6-microblaze.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
f8a9bc6
)
kexec: Fix file verification on S390
author
Matthew Garrett
<matthewgarrett@google.com>
Tue, 10 Sep 2019 10:03:18 +0000
(
03:03
-0700)
committer
James Morris
<jmorris@namei.org>
Tue, 10 Sep 2019 12:27:51 +0000
(13:27 +0100)
I accidentally typoed this #ifdef, so verification would always be
disabled.
Signed-off-by: Matthew Garrett <mjg59@google.com>
Reported-by: Philipp Rudo <prudo@linux.ibm.com>
Signed-off-by: James Morris <jmorris@namei.org>
arch/s390/kernel/kexec_elf.c
patch
|
blob
|
history
diff --git
a/arch/s390/kernel/kexec_elf.c
b/arch/s390/kernel/kexec_elf.c
index
9b4f37a
..
9da6fa3
100644
(file)
--- a/
arch/s390/kernel/kexec_elf.c
+++ b/
arch/s390/kernel/kexec_elf.c
@@
-130,7
+130,7
@@
static int s390_elf_probe(const char *buf, unsigned long len)
const struct kexec_file_ops s390_kexec_elf_ops = {
.probe = s390_elf_probe,
.load = s390_elf_load,
-#ifdef CONFIG_KEXEC_
_
SIG
+#ifdef CONFIG_KEXEC_SIG
.verify_sig = s390_verify_sig,
#endif /* CONFIG_KEXEC_SIG */
};