Skip to content

Commit 45893a0

Browse files
Matthew GarrettJames Morris
authored andcommitted
kexec: Fix file verification on S390
I accidentally typoed this #ifdef, so verification would always be disabled. Signed-off-by: Matthew Garrett <[email protected]> Reported-by: Philipp Rudo <[email protected]> Signed-off-by: James Morris <[email protected]>
1 parent f8a9bc6 commit 45893a0

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

arch/s390/kernel/kexec_elf.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -130,7 +130,7 @@ static int s390_elf_probe(const char *buf, unsigned long len)
130130
const struct kexec_file_ops s390_kexec_elf_ops = {
131131
.probe = s390_elf_probe,
132132
.load = s390_elf_load,
133-
#ifdef CONFIG_KEXEC__SIG
133+
#ifdef CONFIG_KEXEC_SIG
134134
.verify_sig = s390_verify_sig,
135135
#endif /* CONFIG_KEXEC_SIG */
136136
};

0 commit comments

Comments
 (0)