diff options
author | Vincent Hanquez <vincent.hanquez@cl.cam.ac.uk> | 2005-06-23 03:08:43 -0400 |
---|---|---|
committer | Linus Torvalds <torvalds@ppc970.osdl.org> | 2005-06-23 12:45:13 -0400 |
commit | 1cc6f12e03ebc064b74161c684f987284ce9d0cc (patch) | |
tree | fd22e53fa49ea211914ee12fb45df6c4a2d01ee3 /arch/i386/power | |
parent | f5012310e35bd62fd39fce338ee44422c975ff3c (diff) |
[PATCH] xen: x86: Use new macro for debugreg
Make use of the 2 new macro set_debugreg and get_debugreg.
Signed-off-by: Vincent Hanquez <vincent.hanquez@cl.cam.ac.uk>
Cc: Ian Pratt <m+Ian.Pratt@cl.cam.ac.uk>
Signed-off-by: Andrew Morton <akpm@osdl.org>
Signed-off-by: Linus Torvalds <torvalds@osdl.org>
Diffstat (limited to 'arch/i386/power')
-rw-r--r-- | arch/i386/power/cpu.c | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/arch/i386/power/cpu.c b/arch/i386/power/cpu.c index cf337c673d92..6f521cf19a13 100644 --- a/arch/i386/power/cpu.c +++ b/arch/i386/power/cpu.c | |||
@@ -94,13 +94,13 @@ static void fix_processor_context(void) | |||
94 | * Now maybe reload the debug registers | 94 | * Now maybe reload the debug registers |
95 | */ | 95 | */ |
96 | if (current->thread.debugreg[7]){ | 96 | if (current->thread.debugreg[7]){ |
97 | loaddebug(¤t->thread, 0); | 97 | set_debugreg(current->thread.debugreg[0], 0); |
98 | loaddebug(¤t->thread, 1); | 98 | set_debugreg(current->thread.debugreg[1], 1); |
99 | loaddebug(¤t->thread, 2); | 99 | set_debugreg(current->thread.debugreg[2], 2); |
100 | loaddebug(¤t->thread, 3); | 100 | set_debugreg(current->thread.debugreg[3], 3); |
101 | /* no 4 and 5 */ | 101 | /* no 4 and 5 */ |
102 | loaddebug(¤t->thread, 6); | 102 | set_debugreg(current->thread.debugreg[6], 6); |
103 | loaddebug(¤t->thread, 7); | 103 | set_debugreg(current->thread.debugreg[7], 7); |
104 | } | 104 | } |
105 | 105 | ||
106 | } | 106 | } |