Commit 51f0ac63 authored by Roman Kagan's avatar Roman Kagan Committed by Paolo Bonzini
Browse files

hyperv: make hyperv_vp_index inline



Also make the inverse function, hyperv_find_vcpu, static as it's not
used outside hyperv.c

This paves the way to making hyperv.c built optionally.

Signed-off-by: default avatarRoman Kagan <rkagan@virtuozzo.com>
Message-Id: <20180921082041.29380-3-rkagan@virtuozzo.com>
Signed-off-by: default avatarPaolo Bonzini <pbonzini@redhat.com>
parent 5116122a
Loading
Loading
Loading
Loading
+4 −7
Original line number Diff line number Diff line
@@ -27,14 +27,11 @@ struct HvSintRoute {
    unsigned refcount;
};

uint32_t hyperv_vp_index(X86CPU *cpu)
static X86CPU *hyperv_find_vcpu(uint32_t vp_index)
{
    return CPU(cpu)->cpu_index;
}

X86CPU *hyperv_find_vcpu(uint32_t vp_index)
{
    return X86_CPU(qemu_get_cpu(vp_index));
    X86CPU *cpu = X86_CPU(qemu_get_cpu(vp_index));
    assert(hyperv_vp_index(cpu) == vp_index);
    return cpu;
}

int kvm_hv_handle_exit(X86CPU *cpu, struct kvm_hyperv_exit *exit)
+4 −2
Original line number Diff line number Diff line
@@ -30,7 +30,9 @@ void hyperv_sint_route_unref(HvSintRoute *sint_route);

int hyperv_sint_route_set_sint(HvSintRoute *sint_route);

uint32_t hyperv_vp_index(X86CPU *cpu);
X86CPU *hyperv_find_vcpu(uint32_t vp_index);
static inline uint32_t hyperv_vp_index(X86CPU *cpu)
{
    return CPU(cpu)->cpu_index;
}

#endif