diff options
author | Rusty Russell <rusty@rustcorp.com.au> | 2007-10-25 00:09:53 -0400 |
---|---|---|
committer | Rusty Russell <rusty@rustcorp.com.au> | 2007-10-25 00:09:53 -0400 |
commit | 25c47bb35355c1e1b2ae325b49441b2c8b201ece (patch) | |
tree | b716ffc014c32fa5f7ba391ad44ee330bdaf72b2 /arch/x86 | |
parent | db24e8c2ef7eceb46818a8c22fc38dea733fe159 (diff) |
lguest: use defines from x86 headers instead of magic numbers
Signed-off-by: Rusty Russell <rusty@rustcorp.com.au>
Diffstat (limited to 'arch/x86')
-rw-r--r-- | arch/x86/lguest/boot.c | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/arch/x86/lguest/boot.c b/arch/x86/lguest/boot.c index d2235db4085f..136d9df0295e 100644 --- a/arch/x86/lguest/boot.c +++ b/arch/x86/lguest/boot.c | |||
@@ -371,8 +371,7 @@ static void lguest_cpuid(unsigned int *eax, unsigned int *ebx, | |||
371 | static unsigned long current_cr0, current_cr3; | 371 | static unsigned long current_cr0, current_cr3; |
372 | static void lguest_write_cr0(unsigned long val) | 372 | static void lguest_write_cr0(unsigned long val) |
373 | { | 373 | { |
374 | /* 8 == TS bit. */ | 374 | lazy_hcall(LHCALL_TS, val & X86_CR0_TS, 0, 0); |
375 | lazy_hcall(LHCALL_TS, val & 8, 0, 0); | ||
376 | current_cr0 = val; | 375 | current_cr0 = val; |
377 | } | 376 | } |
378 | 377 | ||
@@ -387,7 +386,7 @@ static unsigned long lguest_read_cr0(void) | |||
387 | static void lguest_clts(void) | 386 | static void lguest_clts(void) |
388 | { | 387 | { |
389 | lazy_hcall(LHCALL_TS, 0, 0, 0); | 388 | lazy_hcall(LHCALL_TS, 0, 0, 0); |
390 | current_cr0 &= ~8U; | 389 | current_cr0 &= ~X86_CR0_TS; |
391 | } | 390 | } |
392 | 391 | ||
393 | /* CR2 is the virtual address of the last page fault, which the Guest only ever | 392 | /* CR2 is the virtual address of the last page fault, which the Guest only ever |