Skip to content

Commit e8deb00

Browse files
jpoimboePeter Zijlstra
authored andcommitted
context_tracking: Fix KCSAN noinstr violation
With KCSAN enabled, even empty inline stubs can be out-of-lined. Force the context_tracking_guest_exit() stub inline. Fixes the following warnings: vmlinux.o: warning: objtool: vmx_vcpu_enter_exit+0x1be: call to context_tracking_guest_exit() leaves .noinstr.text section vmlinux.o: warning: objtool: svm_vcpu_enter_exit+0x85: call to context_tracking_guest_exit() leaves .noinstr.text section Signed-off-by: Josh Poimboeuf <[email protected]> Signed-off-by: Peter Zijlstra (Intel) <[email protected]> Link: https://lore.kernel.org/r/dc93f45abdec90c171108b4b590b7fff5790963c.1681320026.git.jpoimboe@kernel.org
1 parent 7f530fb commit e8deb00

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

include/linux/context_tracking.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -97,7 +97,7 @@ static inline int exception_enter(void) { return 0; }
9797
static inline void exception_exit(enum ctx_state prev_ctx) { }
9898
static inline int ct_state(void) { return -1; }
9999
static __always_inline bool context_tracking_guest_enter(void) { return false; }
100-
static inline void context_tracking_guest_exit(void) { }
100+
static __always_inline void context_tracking_guest_exit(void) { }
101101
#define CT_WARN_ON(cond) do { } while (0)
102102
#endif /* !CONFIG_CONTEXT_TRACKING_USER */
103103

0 commit comments

Comments
 (0)