search for: hv_cpu_init

Displaying 2 results from an estimated 2 matches for "hv_cpu_init".

Did you mean: hv_acpi_init
2020 Sep 16
0
[PATCH RFC v1 06/18] x86/hyperv: allocate output arg pages if required
...> +void __percpu **hyperv_pcpu_output_arg; >> > > +EXPORT_SYMBOL_GPL(hyperv_pcpu_output_arg); >> > > + >> > > u32 hv_max_vp_index; >> > > EXPORT_SYMBOL_GPL(hv_max_vp_index); >> > > >> > > @@ -75,14 +78,29 @@ static int hv_cpu_init(unsigned int cpu) >> > > u64 msr_vp_index; >> > > struct hv_vp_assist_page **hvp = &hv_vp_assist_page[smp_processor_id()]; >> > > void **input_arg; >> > > - struct page *pg; >> > > + struct page *input_pg; >> > > &g...
2020 Sep 15
0
[PATCH RFC v1 06/18] x86/hyperv: allocate output arg pages if required
...rcpu **hyperv_pcpu_input_arg; > EXPORT_SYMBOL_GPL(hyperv_pcpu_input_arg); > > +void __percpu **hyperv_pcpu_output_arg; > +EXPORT_SYMBOL_GPL(hyperv_pcpu_output_arg); > + > u32 hv_max_vp_index; > EXPORT_SYMBOL_GPL(hv_max_vp_index); > > @@ -75,14 +78,29 @@ static int hv_cpu_init(unsigned int cpu) > u64 msr_vp_index; > struct hv_vp_assist_page **hvp = &hv_vp_assist_page[smp_processor_id()]; > void **input_arg; > - struct page *pg; > + struct page *input_pg; > > input_arg = (void **)this_cpu_ptr(hyperv_pcpu_input_arg); > /* hv_cpu_init...