On 28/01/21 16:21, Vitaly Kuznetsov wrote:
Paolo Bonzini <pbonzini@xxxxxxxxxx> writes:
On 26/01/21 14:48, Vitaly Kuznetsov wrote:
+static inline u32 to_hv_vpindex(struct kvm_vcpu *vcpu)
+{
+ struct kvm_vcpu_hv *hv_vcpu = to_hv_vcpu(vcpu);
+
+ return hv_vcpu ? hv_vcpu->vp_index : kvm_vcpu_get_idx(vcpu);
+}
+
I'd rather restrict to_* names for pointer conversions.
kvm_hv_get_vpindex is a better choice here.
No objections, feel free to rename. Alternatively, I can send a
follow-up patch.
Ok, will do.
Paolo