]> git.proxmox.com Git - mirror_ubuntu-hirsute-kernel.git/commitdiff
arm64/alternatives: move length validation inside the subsection
authorSami Tolvanen <samitolvanen@google.com>
Thu, 30 Jul 2020 15:37:01 +0000 (08:37 -0700)
committerWill Deacon <will@kernel.org>
Thu, 30 Jul 2020 15:50:14 +0000 (16:50 +0100)
Commit f7b93d42945c ("arm64/alternatives: use subsections for replacement
sequences") breaks LLVM's integrated assembler, because due to its
one-pass design, it cannot compute instruction sequence lengths before the
layout for the subsection has been finalized. This change fixes the build
by moving the .org directives inside the subsection, so they are processed
after the subsection layout is known.

Fixes: f7b93d42945c ("arm64/alternatives: use subsections for replacement sequences")
Signed-off-by: Sami Tolvanen <samitolvanen@google.com>
Link: https://github.com/ClangBuiltLinux/linux/issues/1078
Link: https://lore.kernel.org/r/20200730153701.3892953-1-samitolvanen@google.com
Signed-off-by: Will Deacon <will@kernel.org>
arch/arm64/include/asm/alternative.h

index 12f0eb56a1cc30e5a38c6db1d0342e47a0e3908d..619db9b4c9d5c0434e321736c7a5fec9dc6a9b1c 100644 (file)
@@ -77,9 +77,9 @@ static inline void apply_alternatives_module(void *start, size_t length) { }
        "663:\n\t"                                                      \
        newinstr "\n"                                                   \
        "664:\n\t"                                                      \
-       ".previous\n\t"                                                 \
        ".org   . - (664b-663b) + (662b-661b)\n\t"                      \
-       ".org   . - (662b-661b) + (664b-663b)\n"                        \
+       ".org   . - (662b-661b) + (664b-663b)\n\t"                      \
+       ".previous\n"                                                   \
        ".endif\n"
 
 #define __ALTERNATIVE_CFG_CB(oldinstr, feature, cfg_enabled, cb)       \