diff options
author | Scott Wood <scottwood@freescale.com> | 2011-11-08 18:23:20 -0600 |
---|---|---|
committer | Avi Kivity <avi@redhat.com> | 2012-03-05 14:52:25 +0200 |
commit | 7e28e60ef974d0eeb43112ef264d8c130f7b7bf4 (patch) | |
tree | 8abf647afcd01a0768c1163e019a26856bd706d8 /arch/powerpc/kvm/powerpc.c | |
parent | 1d1ef22208876511224a8797657e40e287e1f93d (diff) |
KVM: PPC: Rename deliver_interrupts to prepare_to_enter
This function also updates paravirt int_pending, so rename it
to be more obvious that this is a collection of checks run prior
to (re)entering a guest.
Signed-off-by: Scott Wood <scottwood@freescale.com>
Signed-off-by: Alexander Graf <agraf@suse.de>
Signed-off-by: Avi Kivity <avi@redhat.com>
Diffstat (limited to 'arch/powerpc/kvm/powerpc.c')
-rw-r--r-- | arch/powerpc/kvm/powerpc.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/arch/powerpc/kvm/powerpc.c b/arch/powerpc/kvm/powerpc.c index 3cf6fba513ac..6186ec0d939b 100644 --- a/arch/powerpc/kvm/powerpc.c +++ b/arch/powerpc/kvm/powerpc.c @@ -559,7 +559,7 @@ int kvm_arch_vcpu_ioctl_run(struct kvm_vcpu *vcpu, struct kvm_run *run) vcpu->arch.hcall_needed = 0; } - kvmppc_core_deliver_interrupts(vcpu); + kvmppc_core_prepare_to_enter(vcpu); r = kvmppc_vcpu_run(run, vcpu); |