Skip to content

Commit

Permalink
hyperv: make hyperv_vp_index inline
Browse files Browse the repository at this point in the history
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: Roman Kagan <rkagan@virtuozzo.com>
Message-Id: <20180921082041.29380-3-rkagan@virtuozzo.com>
Signed-off-by: Paolo Bonzini <pbonzini@redhat.com>
  • Loading branch information
rvka authored and bonzini committed Oct 19, 2018
1 parent 5116122 commit 51f0ac6
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 9 deletions.
11 changes: 4 additions & 7 deletions target/i386/hyperv.c
Expand Up @@ -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)
Expand Down
6 changes: 4 additions & 2 deletions target/i386/hyperv.h
Expand Up @@ -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

0 comments on commit 51f0ac6

Please sign in to comment.