diff options
author | Peter Zijlstra <[email protected]> | 2021-09-20 15:31:11 +0200 |
---|---|---|
committer | Peter Zijlstra <[email protected]> | 2021-10-01 13:57:57 +0200 |
commit | 83d40a61046f73103b4e5d8f1310261487ff63b0 (patch) | |
tree | 325751230177a118b883046b33134fb5216c38bf | |
parent | 703066188f63d66cc6b9d678e5b5ef1213c5938e (diff) |
sched: Always inline is_percpu_thread()
vmlinux.o: warning: objtool: check_preemption_disabled()+0x81: call to is_percpu_thread() leaves .noinstr.text section
Reported-by: Stephen Rothwell <[email protected]>
Signed-off-by: Peter Zijlstra (Intel) <[email protected]>
Link: https://lkml.kernel.org/r/[email protected]
-rw-r--r-- | include/linux/sched.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/linux/sched.h b/include/linux/sched.h index 39039ce8ac4c..c1a927ddec64 100644 --- a/include/linux/sched.h +++ b/include/linux/sched.h @@ -1720,7 +1720,7 @@ extern struct pid *cad_pid; #define tsk_used_math(p) ((p)->flags & PF_USED_MATH) #define used_math() tsk_used_math(current) -static inline bool is_percpu_thread(void) +static __always_inline bool is_percpu_thread(void) { #ifdef CONFIG_SMP return (current->flags & PF_NO_SETAFFINITY) && |