From: Heiko Carstens Date: Mon, 8 Dec 2025 12:40:56 +0000 (+0100) Subject: s390/bug: Add missing alignment X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=70075e3d0ca0b72cc983d03f7cd9796e43492980;p=thirdparty%2Fkernel%2Flinux.git s390/bug: Add missing alignment All objects are supposed to have a minimal alignment of two, since a couple of instructions only work with even addresses. Add the missing align statement for the file string. Fixes: 6584ff203aec ("bugs/s390: Use 'cond_str' in __EMIT_BUG()") Signed-off-by: Heiko Carstens --- diff --git a/arch/s390/include/asm/bug.h b/arch/s390/include/asm/bug.h index 063ada55fbd10..ee9221bb5d180 100644 --- a/arch/s390/include/asm/bug.h +++ b/arch/s390/include/asm/bug.h @@ -11,6 +11,7 @@ #else #define __BUGVERBOSE_LOCATION(file, line) \ .pushsection .rodata.str, "aMS", @progbits, 1; \ + .align 2; \ 10002: .ascii file "\0"; \ .popsection; \ \