lkml.org 
[lkml]   [2022]   [Apr]   [20]   [last100]   RSS Feed
Views: [wrap][no wrap]   [headers]  [forward] 
 
Messages in this thread
/
Date
From
SubjectRe: [PATCH v8 1/2] s390x: KVM: guest support for topology function
> +static inline bool kvm_s390_topology_changed(struct kvm_vcpu *vcpu)
> +{
> + if (!test_kvm_facility(vcpu->kvm, 11))
> + return false;
> +
> + /* A new vCPU has been hotplugged */
> + if (vcpu->arch.prev_cpu == S390_KVM_TOPOLOGY_NEW_CPU)
> + return true;
> +
> + /* The real CPU backing up the vCPU moved to another socket */
> + if (cpumask_test_cpu(vcpu->cpu,
> + topology_core_cpumask(vcpu->arch.prev_cpu)))
> + return true;
> +
> + return false;
> +}

This seems to be wrong. I'd guess that you need

if (cpumask_test_cpu(vcpu->cpu,
topology_core_cpumask(vcpu->arch.prev_cpu)))
--> return false;
--> return true;

\
 
 \ /
  Last update: 2022-04-20 14:06    [W:0.082 / U:2.572 seconds]
©2003-2020 Jasper Spaans|hosted at Digital Ocean and TransIP|Read the blog|Advertise on this site