aboutsummaryrefslogtreecommitdiffstats
path: root/arch/x86/include/asm/debugreg.h
diff options
context:
space:
mode:
authorTejun Heo <tj@kernel.org>2009-11-25 08:24:44 -0500
committerIngo Molnar <mingo@elte.hu>2009-11-25 08:30:04 -0500
commit28b4e0d86acf59ae3bc422921138a4958458326e (patch)
treea2fa63186bc43ab79b200468bf4c5d7117f92597 /arch/x86/include/asm/debugreg.h
parent99df5a6a215f026e62287083de2b44b22edd3623 (diff)
x86: Rename global percpu symbol dr7 to cpu_dr7
Percpu symbols now occupy the same namespace as other global symbols and as such short global symbols without subsystem prefix tend to collide with local variables. dr7 percpu variable used by x86 was hit by this. Rename it to cpu_dr7. The rename also makes it more consistent with its fellow cpu_debugreg percpu variable. Signed-off-by: Tejun Heo <tj@kernel.org> Cc: Frederic Weisbecker <fweisbec@gmail.com> Cc: Peter Zijlstra <a.p.zijlstra@chello.nl> Cc: Rusty Russell <rusty@rustcorp.com.au> Cc: Christoph Lameter <cl@linux-foundation.org> Cc: Linus Torvalds <torvalds@linux-foundation.org>, Cc: Andrew Morton <akpm@linux-foundation.org> LKML-Reference: <20091125115856.GA17856@elte.hu> Signed-off-by: Ingo Molnar <mingo@elte.hu> Reported-by: Stephen Rothwell <sfr@canb.auug.org.au>
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);