From: Ard Biesheuvel Date: Fri, 13 Mar 2015 15:21:18 +0000 (+0100) Subject: arm64: put __boot_cpu_mode label after alignment instead of before X-Git-Tag: Ubuntu-5.10.0-12.13~15175^2 X-Git-Url: https://git.proxmox.com/?a=commitdiff_plain;h=947bb7587fc2c1d1f6b89462ef1255ec30d4e682;p=mirror_ubuntu-hirsute-kernel.git arm64: put __boot_cpu_mode label after alignment instead of before Another one for the big head.S spring cleaning: the label should be after the .align or it may point to the padding. Signed-off-by: Ard Biesheuvel Signed-off-by: Catalin Marinas --- diff --git a/arch/arm64/kernel/head.S b/arch/arm64/kernel/head.S index 8ce88e08c030..07f930540f4a 100644 --- a/arch/arm64/kernel/head.S +++ b/arch/arm64/kernel/head.S @@ -585,8 +585,8 @@ ENDPROC(set_cpu_boot_mode_flag) * zeroing of .bss would clobber it. */ .pushsection .data..cacheline_aligned -ENTRY(__boot_cpu_mode) .align L1_CACHE_SHIFT +ENTRY(__boot_cpu_mode) .long BOOT_CPU_MODE_EL2 .long 0 .popsection