Commit 28eaf871 authored by Peter Zijlstra's avatar Peter Zijlstra Committed by Thomas Gleixner

x86/entry: __always_inline debugreg for noinstr

vmlinux.o: warning: objtool: exc_debug()+0x21: call to native_get_debugreg() leaves .noinstr.text section
Signed-off-by: default avatarPeter Zijlstra (Intel) <peterz@infradead.org>
Signed-off-by: default avatarThomas Gleixner <tglx@linutronix.de>
Link: https://lkml.kernel.org/r/20200603114051.954401211@infradead.org

parent 3e77abda
...@@ -18,7 +18,7 @@ DECLARE_PER_CPU(unsigned long, cpu_dr7); ...@@ -18,7 +18,7 @@ DECLARE_PER_CPU(unsigned long, cpu_dr7);
native_set_debugreg(register, value) native_set_debugreg(register, value)
#endif #endif
static inline unsigned long native_get_debugreg(int regno) static __always_inline unsigned long native_get_debugreg(int regno)
{ {
unsigned long val = 0; /* Damn you, gcc! */ unsigned long val = 0; /* Damn you, gcc! */
...@@ -47,7 +47,7 @@ static inline unsigned long native_get_debugreg(int regno) ...@@ -47,7 +47,7 @@ static inline unsigned long native_get_debugreg(int regno)
return val; return val;
} }
static inline void native_set_debugreg(int regno, unsigned long value) static __always_inline void native_set_debugreg(int regno, unsigned long value)
{ {
switch (regno) { switch (regno) {
case 0: case 0:
...@@ -85,7 +85,7 @@ static inline void hw_breakpoint_disable(void) ...@@ -85,7 +85,7 @@ static inline void hw_breakpoint_disable(void)
set_debugreg(0UL, 3); set_debugreg(0UL, 3);
} }
static inline bool hw_breakpoint_active(void) static __always_inline bool hw_breakpoint_active(void)
{ {
return __this_cpu_read(cpu_dr7) & DR_GLOBAL_ENABLE_MASK; return __this_cpu_read(cpu_dr7) & DR_GLOBAL_ENABLE_MASK;
} }
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment