KVM: PPC: Ignore PIR writes
authorAlexander Graf <agraf@suse.de>
Wed, 26 Jun 2013 23:07:15 +0000 (01:07 +0200)
committerAlexander Graf <agraf@suse.de>
Sun, 30 Jun 2013 01:33:22 +0000 (03:33 +0200)
While technically it's legal to write to PIR and have the identifier changed,
we don't implement logic to do so because we simply expose vcpu_id to the guest.

So instead, let's ignore writes to PIR. This ensures that we don't inject faults
into the guest for something the guest is allowed to do. While at it, we cross
our fingers hoping that it also doesn't mind that we broke its PIR read values.

Signed-off-by: Alexander Graf <agraf@suse.de>
arch/powerpc/kvm/emulate.c

index 631a2650e4e42c0038524b0940a9ae91bcdcd3a4..2c52ada3077536c04e145b63d243859f8d32cab0 100644 (file)
@@ -169,6 +169,9 @@ static int kvmppc_emulate_mtspr(struct kvm_vcpu *vcpu, int sprn, int rs)
                vcpu->arch.shared->sprg3 = spr_val;
                break;
 
+       /* PIR can legally be written, but we ignore it */
+       case SPRN_PIR: break;
+
        default:
                emulated = kvmppc_core_emulate_mtspr(vcpu, sprn,
                                                     spr_val);