diff options
author | Christian Borntraeger <borntraeger@de.ibm.com> | 2015-07-10 15:27:20 +0200 |
---|---|---|
committer | Christian Borntraeger <borntraeger@de.ibm.com> | 2015-07-29 11:02:33 +0200 |
commit | 71db35d26dbacd3d165522022ecb757ddc1529ea (patch) | |
tree | 8004e64773cf8cd1e340ab166e597a80ff2d530c /arch/s390/kvm/sigp.c | |
parent | 15e8b5daabe37b56e8117957ea1a10e99d380ac4 (diff) | |
download | linux-71db35d26dbacd3d165522022ecb757ddc1529ea.tar.gz linux-71db35d26dbacd3d165522022ecb757ddc1529ea.tar.bz2 linux-71db35d26dbacd3d165522022ecb757ddc1529ea.zip |
KVM: s390: VCPU_EVENT cleanup for prefix changes
SPX (SET PREFIX) and SIGP (Set prefix) can change the prefix
register of a CPU. As sigp set prefix may be handled in user
space (KVM_CAP_S390_USER_SIGP), we would not log the changes
triggered via SIGP in that case. Let's have just one VCPU_EVENT
at the central location that tracks prefix changes.
Signed-off-by: Christian Borntraeger <borntraeger@de.ibm.com>
Reviewed-by: Cornelia Huck <cornelia.huck@de.ibm.com>
Reviewed-by: David Hildenbrand <dahi@linux.vnet.ibm.com>
Diffstat (limited to 'arch/s390/kvm/sigp.c')
-rw-r--r-- | arch/s390/kvm/sigp.c | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/arch/s390/kvm/sigp.c b/arch/s390/kvm/sigp.c index 72e58bd2bee7..5318ea3ad1d3 100644 --- a/arch/s390/kvm/sigp.c +++ b/arch/s390/kvm/sigp.c @@ -205,9 +205,6 @@ static int __sigp_set_prefix(struct kvm_vcpu *vcpu, struct kvm_vcpu *dst_vcpu, *reg &= 0xffffffff00000000UL; *reg |= SIGP_STATUS_INCORRECT_STATE; return SIGP_CC_STATUS_STORED; - } else if (rc == 0) { - VCPU_EVENT(vcpu, 4, "set prefix of cpu %02x to %x", - dst_vcpu->vcpu_id, irq.u.prefix.address); } return rc; |