@@ -37,7 +37,7 @@
bool __read_mostly xen_guest;
-static __read_mostly uint32_t xen_cpuid_base;
+__read_mostly uint32_t xen_cpuid_base;
extern char hypercall_page[];
static struct rangeset *mem;
@@ -301,11 +301,6 @@ int hypervisor_free_unused_page(mfn_t mfn)
return rangeset_remove_range(mem, mfn_x(mfn), mfn_x(mfn));
}
-uint32_t hypervisor_cpuid_base(void)
-{
- return xen_cpuid_base;
-}
-
static void ap_resume(void *unused)
{
map_vcpuinfo();
@@ -992,7 +992,7 @@ domid_t get_initial_domain_id(void)
if ( !pv_shim )
return 0;
- cpuid(hypervisor_cpuid_base() + 4, &eax, &ebx, &ecx, &edx);
+ cpuid(xen_cpuid_base + 4, &eax, &ebx, &ecx, &edx);
return (eax & XEN_HVM_CPUID_DOMID_PRESENT) ? ecx : 1;
}
@@ -30,13 +30,13 @@
extern bool xen_guest;
extern bool pv_console;
+extern uint32_t xen_cpuid_base;
void probe_hypervisor(void);
void hypervisor_setup(void);
void hypervisor_ap_setup(void);
int hypervisor_alloc_unused_page(mfn_t *mfn);
int hypervisor_free_unused_page(mfn_t mfn);
-uint32_t hypervisor_cpuid_base(void);
void hypervisor_resume(void);
DECLARE_PER_CPU(unsigned int, vcpu_id);
The only user is Xen specific code in PV shim. We can therefore export the variable directly. Signed-off-by: Wei Liu <liuwe@microsoft.com> --- xen/arch/x86/guest/xen/xen.c | 7 +------ xen/arch/x86/pv/shim.c | 2 +- xen/include/asm-x86/guest/xen.h | 2 +- 3 files changed, 3 insertions(+), 8 deletions(-)