Skip to content

Commit b008893

Browse files
committed
x86/ptrace: Always inline v8086_mode() for instrumentation
Instrumentation glue like KASAN causes the following warning: vmlinux.o: warning: objtool: mce_gather_info()+0x5f: call to v8086_mode.constprop.0() leaves .noinstr.text section due to gcc creating a function call for that oneliner. Force-inline it and even save some vmlinux bytes (.config is close to an allmodconfig): text data bss dec hex filename 209431677 208257651 34411048 452100376 1af28118 vmlinux.before 209431519 208257615 34411048 452100182 1af28056 vmlinux.after Signed-off-by: Borislav Petkov <[email protected]> Acked-by: Marco Elver <[email protected]> Link: https://lore.kernel.org/r/[email protected]
1 parent f5c54f7 commit b008893

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

arch/x86/include/asm/ptrace.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -137,7 +137,7 @@ static __always_inline int user_mode(struct pt_regs *regs)
137137
#endif
138138
}
139139

140-
static inline int v8086_mode(struct pt_regs *regs)
140+
static __always_inline int v8086_mode(struct pt_regs *regs)
141141
{
142142
#ifdef CONFIG_X86_32
143143
return (regs->flags & X86_VM_MASK);

0 commit comments

Comments
 (0)