Commit 45893a0a authored by Matthew Garrett's avatar Matthew Garrett Committed by James Morris
Browse files

kexec: Fix file verification on S390



I accidentally typoed this #ifdef, so verification would always be
disabled.

Signed-off-by: default avatarMatthew Garrett <mjg59@google.com>
Reported-by: default avatarPhilipp Rudo <prudo@linux.ibm.com>
Signed-off-by: default avatarJames Morris <jmorris@namei.org>
parent f8a9bc62
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -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 */
};