aboutsummaryrefslogtreecommitdiffstats
path: root/arch/x86/include/asm/debugreg.h
diff options
context:
space:
mode:
Diffstat (limited to 'arch/x86/include/asm/debugreg.h')
-rw-r--r--arch/x86/include/asm/debugreg.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/arch/x86/include/asm/debugreg.h b/arch/x86/include/asm/debugreg.h
index fdabd8435765..8240f76b531e 100644
--- a/arch/x86/include/asm/debugreg.h
+++ b/arch/x86/include/asm/debugreg.h
@@ -75,7 +75,7 @@
75 */ 75 */
76#ifdef __KERNEL__ 76#ifdef __KERNEL__
77 77
78DECLARE_PER_CPU(unsigned long, dr7); 78DECLARE_PER_CPU(unsigned long, cpu_dr7);
79 79
80static inline void hw_breakpoint_disable(void) 80static inline void hw_breakpoint_disable(void)
81{ 81{
@@ -91,7 +91,7 @@ static inline void hw_breakpoint_disable(void)
91 91
92static inline int hw_breakpoint_active(void) 92static inline int hw_breakpoint_active(void)
93{ 93{
94 return __get_cpu_var(dr7) & DR_GLOBAL_ENABLE_MASK; 94 return __get_cpu_var(cpu_dr7) & DR_GLOBAL_ENABLE_MASK;
95} 95}
96 96
97extern void aout_dump_debugregs(struct user *dump); 97extern void aout_dump_debugregs(struct user *dump);