> > @@ -154,6 +154,8 @@ static uint32_t __init ms_hyperv_platform(void) > > This function is for platform detection only. > > > if (!boot_cpu_has(X86_FEATURE_HYPERVISOR)) > > return 0; > > > > + pv_info.name = "Hyper-V"; > > + > > At this point we're not sure if Linux is really running on Hyper-V yet. > > Setting pv_info.name should be moved to the init_platform hook, i.e. > ms_hyperv_init_platform. Thank you for the review, Wei. I'll move this to the init_platform hook and re-submit shortly. Thanks, Andrea