From: Andrew Cooper Date: Thu, 2 Jan 2020 13:52:23 +0000 (+0000) Subject: xen/efi: Drop infinite loops and use unreachable()/noreturn X-Git-Tag: archive/raspbian/4.14.0+80-gd101b417b7-1+rpi1^2~63^2~948 X-Git-Url: https://dgit.raspbian.org/?a=commitdiff_plain;h=e38e4dd15287476609a1e9066fead1e4e4f6c2fd;p=xen.git xen/efi: Drop infinite loops and use unreachable()/noreturn No functional change. Signed-off-by: Andrew Cooper Reviewed-by: Wei Liu Acked-by: Jan Beulich Acked-by: Julien Grall --- diff --git a/xen/arch/arm/efi/efi-boot.h b/xen/arch/arm/efi/efi-boot.h index ca655ff003..d7bf934077 100644 --- a/xen/arch/arm/efi/efi-boot.h +++ b/xen/arch/arm/efi/efi-boot.h @@ -367,7 +367,7 @@ static void __init efi_arch_pre_exit_boot(void) { } -static void __init efi_arch_post_exit_boot(void) +static void __init noreturn efi_arch_post_exit_boot(void) { efi_xen_start(fdt, fdt_totalsize(fdt)); } diff --git a/xen/arch/x86/efi/efi-boot.h b/xen/arch/x86/efi/efi-boot.h index 232972eedf..676d616ff8 100644 --- a/xen/arch/x86/efi/efi-boot.h +++ b/xen/arch/x86/efi/efi-boot.h @@ -268,7 +268,7 @@ static void __init noreturn efi_arch_post_exit_boot(void) [stkoff] "i" (STACK_SIZE - sizeof(struct cpu_info)), "D" (&mbi) : "memory" ); - for( ; ; ); /* not reached */ + unreachable(); } static void __init efi_arch_cfg_file_early(EFI_FILE_HANDLE dir_handle, char *section) diff --git a/xen/common/efi/boot.c b/xen/common/efi/boot.c index 3f1c330afe..bf7bb95999 100644 --- a/xen/common/efi/boot.c +++ b/xen/common/efi/boot.c @@ -1401,8 +1401,7 @@ efi_start(EFI_HANDLE ImageHandle, EFI_SYSTEM_TABLE *SystemTable) efi_exit_boot(ImageHandle, SystemTable); - efi_arch_post_exit_boot(); - for( ; ; ); /* not reached */ + efi_arch_post_exit_boot(); /* Doesn't return. */ } #ifndef CONFIG_ARM /* TODO - runtime service support */