diff options
Diffstat (limited to 'arch/x86/hyperv/hv_init.c')
| -rw-r--r-- | arch/x86/hyperv/hv_init.c | 16 | 
1 files changed, 14 insertions, 2 deletions
diff --git a/arch/x86/hyperv/hv_init.c b/arch/x86/hyperv/hv_init.c index 0d258688c8cf..2db3972c0e0f 100644 --- a/arch/x86/hyperv/hv_init.c +++ b/arch/x86/hyperv/hv_init.c @@ -37,6 +37,20 @@ EXPORT_SYMBOL_GPL(hyperv_pcpu_input_arg);  u32 hv_max_vp_index;  EXPORT_SYMBOL_GPL(hv_max_vp_index); +void *hv_alloc_hyperv_page(void) +{ +	BUILD_BUG_ON(PAGE_SIZE != HV_HYP_PAGE_SIZE); + +	return (void *)__get_free_page(GFP_KERNEL); +} +EXPORT_SYMBOL_GPL(hv_alloc_hyperv_page); + +void hv_free_hyperv_page(unsigned long addr) +{ +	free_page(addr); +} +EXPORT_SYMBOL_GPL(hv_free_hyperv_page); +  static int hv_cpu_init(unsigned int cpu)  {  	u64 msr_vp_index; @@ -301,8 +315,6 @@ void __init hyperv_init(void)  	x86_init.pci.arch_init = hv_pci_init; -	/* Register Hyper-V specific clocksource */ -	hv_init_clocksource();  	return;  remove_cpuhp_state:  |