This typo was introduced in c/s c0b4a3f95dd80256cc6d7084436235e69b4933fb It prevents a 32bit build of kexec from loading a 32bit crash image.
Signed-off-by: Andrew Cooper <[email protected]> CC: David Vrabel <[email protected]> CC: Daniel Kiper <[email protected]> CC: Simon Horman <[email protected]> CC: [email protected] --- kexec/kexec-xen.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/kexec/kexec-xen.c b/kexec/kexec-xen.c index e885246..d2bd7bf 100644 --- a/kexec/kexec-xen.c +++ b/kexec/kexec-xen.c @@ -70,7 +70,7 @@ int xen_kexec_load(struct kexec_info *info) : KEXEC_TYPE_DEFAULT; arch = (info->kexec_flags & KEXEC_ARCH_MASK) >> 16; -#if defined(_i386__) || defined(__x86_64__) +#if defined(__i386__) || defined(__x86_64__) if (!arch) arch = EM_386; #endif -- 1.7.10.4 _______________________________________________ kexec mailing list [email protected] http://lists.infradead.org/mailman/listinfo/kexec
