Skip to content

Commit a368d7f

Browse files
jbeulichKAGA-KOKO
authored andcommitted
x86/entry/64: Add instruction suffix
Omitting suffixes from instructions in AT&T mode is bad practice when operand size cannot be determined by the assembler from register operands, and is likely going to be warned about by upstream gas in the future (mine does already). Add the single missing suffix here. Signed-off-by: Jan Beulich <[email protected]> Signed-off-by: Thomas Gleixner <[email protected]> Link: https://lkml.kernel.org/r/[email protected]
1 parent cb097be commit a368d7f

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

arch/x86/entry/entry_64.S

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -55,7 +55,7 @@ END(native_usergs_sysret64)
5555

5656
.macro TRACE_IRQS_FLAGS flags:req
5757
#ifdef CONFIG_TRACE_IRQFLAGS
58-
bt $9, \flags /* interrupts off? */
58+
btl $9, \flags /* interrupts off? */
5959
jnc 1f
6060
TRACE_IRQS_ON
6161
1:

0 commit comments

Comments
 (0)