Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux

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 <hca@linux.ibm.com>

+1
+1
arch/s390/include/asm/bug.h
··· 11 11 #else 12 12 #define __BUGVERBOSE_LOCATION(file, line) \ 13 13 .pushsection .rodata.str, "aMS", @progbits, 1; \ 14 + .align 2; \ 14 15 10002: .ascii file "\0"; \ 15 16 .popsection; \ 16 17 \