Skip to content

Commit

Permalink
lguest: update lazy mmu changes to match lguest's use of kvm hypercalls
Browse files Browse the repository at this point in the history
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>
  • Loading branch information
Jeremy Fitzhardinge committed Apr 7, 2009
1 parent 38f4b8c commit 169aafb
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion arch/x86/lguest/boot.c
Original file line number Diff line number Diff line change
Expand Up @@ -168,7 +168,7 @@ static void lazy_hcall3(unsigned long call,
* issue the do-nothing hypercall to flush any stored calls. */
static void lguest_leave_lazy_mmu_mode(void)
{
hcall(LHCALL_FLUSH_ASYNC, 0, 0, 0);
kvm_hypercall0(LHCALL_FLUSH_ASYNC);
paravirt_leave_lazy_mmu();
}

Expand Down

0 comments on commit 169aafb

Please sign in to comment.