diff options
author | Bharat Bhushan <Bharat.Bhushan@freescale.com> | 2013-01-15 23:24:39 +0100 |
---|---|---|
committer | Alexander Graf <agraf@suse.de> | 2013-02-13 12:56:40 +0100 |
commit | 1d542d9c2bbca9b99835fef6a938b9ae9dd7ca2a (patch) | |
tree | b5bc9857625feb811cce562f45ec3cf259739395 /arch/powerpc/kvm/booke.h | |
parent | KVM: PPC: booke: use vcpu reference from thread_struct (diff) | |
download | linux-1d542d9c2bbca9b99835fef6a938b9ae9dd7ca2a.tar.xz linux-1d542d9c2bbca9b99835fef6a938b9ae9dd7ca2a.zip |
KVM: PPC: booke: Allow multiple exception types
Current kvmppc_booke_handlers uses the same macro (KVM_HANDLER) and
all handlers are considered to be the same size. This will not be
the case if we want to use different macros for different handlers.
This patch improves the kvmppc_booke_handler so that it can
support different macros for different handlers.
Signed-off-by: Liu Yu <yu.liu@freescale.com>
[bharat.bhushan@freescale.com: Substantial changes]
Signed-off-by: Bharat Bhushan <bharat.bhushan@freescale.com>
Signed-off-by: Alexander Graf <agraf@suse.de>
Diffstat (limited to 'arch/powerpc/kvm/booke.h')
-rw-r--r-- | arch/powerpc/kvm/booke.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/arch/powerpc/kvm/booke.h b/arch/powerpc/kvm/booke.h index e9b88e433f64..5fd1ba693579 100644 --- a/arch/powerpc/kvm/booke.h +++ b/arch/powerpc/kvm/booke.h @@ -65,6 +65,7 @@ (1 << BOOKE_IRQPRIO_CRITICAL)) extern unsigned long kvmppc_booke_handlers; +extern unsigned long kvmppc_booke_handler_addr[]; void kvmppc_set_msr(struct kvm_vcpu *vcpu, u32 new_msr); void kvmppc_mmu_msr_notify(struct kvm_vcpu *vcpu, u32 old_msr); |