KVM: s390: remove __cpu_is_stopped and expose is_vcpu_stopped
The function "__cpu_is_stopped" is not used any more. Let's remove it and expose the function "is_vcpu_stopped" instead, which is actually what we want. This patch also converts an open coded check for CPUSTAT_STOPPED to is_vcpu_stopped(). Signed-off-by: David Hildenbrand <dahi@linux.vnet.ibm.com> Reviewed-by: Cornelia Huck <cornelia.huck@de.ibm.com> Acked-by: Christian Borntraeger <borntraeger@de.ibm.com> Signed-off-by: Christian Borntraeger <borntraeger@de.ibm.com>
This commit is contained in:
parent
32f5ff63ff
commit
7a42fdc20f
2 changed files with 3 additions and 8 deletions
|
@ -926,7 +926,7 @@ static int kvm_arch_vcpu_ioctl_set_initial_psw(struct kvm_vcpu *vcpu, psw_t psw)
|
||||||
{
|
{
|
||||||
int rc = 0;
|
int rc = 0;
|
||||||
|
|
||||||
if (!(atomic_read(&vcpu->arch.sie_block->cpuflags) & CPUSTAT_STOPPED))
|
if (!is_vcpu_stopped(vcpu))
|
||||||
rc = -EBUSY;
|
rc = -EBUSY;
|
||||||
else {
|
else {
|
||||||
vcpu->run->psw_mask = psw.mask;
|
vcpu->run->psw_mask = psw.mask;
|
||||||
|
@ -1413,11 +1413,6 @@ int kvm_s390_vcpu_store_status(struct kvm_vcpu *vcpu, unsigned long addr)
|
||||||
return kvm_s390_store_status_unloaded(vcpu, addr);
|
return kvm_s390_store_status_unloaded(vcpu, addr);
|
||||||
}
|
}
|
||||||
|
|
||||||
static inline int is_vcpu_stopped(struct kvm_vcpu *vcpu)
|
|
||||||
{
|
|
||||||
return atomic_read(&(vcpu)->arch.sie_block->cpuflags) & CPUSTAT_STOPPED;
|
|
||||||
}
|
|
||||||
|
|
||||||
static void __disable_ibs_on_vcpu(struct kvm_vcpu *vcpu)
|
static void __disable_ibs_on_vcpu(struct kvm_vcpu *vcpu)
|
||||||
{
|
{
|
||||||
kvm_check_request(KVM_REQ_ENABLE_IBS, vcpu);
|
kvm_check_request(KVM_REQ_ENABLE_IBS, vcpu);
|
||||||
|
|
|
@ -45,9 +45,9 @@ do { \
|
||||||
d_args); \
|
d_args); \
|
||||||
} while (0)
|
} while (0)
|
||||||
|
|
||||||
static inline int __cpu_is_stopped(struct kvm_vcpu *vcpu)
|
static inline int is_vcpu_stopped(struct kvm_vcpu *vcpu)
|
||||||
{
|
{
|
||||||
return atomic_read(&vcpu->arch.sie_block->cpuflags) & CPUSTAT_STOP_INT;
|
return atomic_read(&vcpu->arch.sie_block->cpuflags) & CPUSTAT_STOPPED;
|
||||||
}
|
}
|
||||||
|
|
||||||
static inline int kvm_is_ucontrol(struct kvm *kvm)
|
static inline int kvm_is_ucontrol(struct kvm *kvm)
|
||||||
|
|
Loading…
Add table
Reference in a new issue