diff options
author | Jeremy Fitzhardinge <jeremy.fitzhardinge@citrix.com> | 2009-04-07 16:37:26 -0400 |
---|---|---|
committer | Jeremy Fitzhardinge <jeremy.fitzhardinge@citrix.com> | 2009-04-07 16:37:26 -0400 |
commit | 169aafbc8d3f05431b5cfeb60294a12b8ef2bcee (patch) | |
tree | 8d74a3ea09ded184104a5a01c3499fad9c3dd961 /arch/x86/lguest | |
parent | 38f4b8c0da01ae7cd9b93386842ce272d6fde9ab (diff) |
lguest: update lazy mmu changes to match lguest's use of kvm hypercalls
Duplicate hcall -> kvm_hypercall0 convertion from "lguest: use KVM
hypercalls".
Signed-off-by: Jeremy Fitzhardinge <jeremy.fitzhardinge@citrix.com>
Cc: Matias Zabaljauregui <zabaljauregui at gmail.com>
Cc: Rusty Russell <rusty@rustcorp.com.au>
Diffstat (limited to 'arch/x86/lguest')
-rw-r--r-- | arch/x86/lguest/boot.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/arch/x86/lguest/boot.c b/arch/x86/lguest/boot.c index 5ab239711cc2..cfb2d68dc795 100644 --- a/arch/x86/lguest/boot.c +++ b/arch/x86/lguest/boot.c | |||
@@ -168,7 +168,7 @@ static void lazy_hcall3(unsigned long call, | |||
168 | * issue the do-nothing hypercall to flush any stored calls. */ | 168 | * issue the do-nothing hypercall to flush any stored calls. */ |
169 | static void lguest_leave_lazy_mmu_mode(void) | 169 | static void lguest_leave_lazy_mmu_mode(void) |
170 | { | 170 | { |
171 | hcall(LHCALL_FLUSH_ASYNC, 0, 0, 0); | 171 | kvm_hypercall0(LHCALL_FLUSH_ASYNC); |
172 | paravirt_leave_lazy_mmu(); | 172 | paravirt_leave_lazy_mmu(); |
173 | } | 173 | } |
174 | 174 | ||