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

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
......@@ -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 */
};
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment