Re: [PATCH v5 02/10] x86/mshyperv: Add support for extended Hyper-V features

2025-03-11 Thread Tianyu Lan
On Thu, Feb 27, 2025 at 7:09 AM Nuno Das Neves wrote: > > From: Stanislav Kinsburskii > > Extend the "ms_hyperv_info" structure to include a new field, > "ext_features", for capturing extended Hyper-V features. > Update the "ms_hyperv_init_platform" function to retrieve these features > using the

RE: [PATCH v5 02/10] x86/mshyperv: Add support for extended Hyper-V features

2025-03-06 Thread Michael Kelley
From: Nuno Das Neves Sent: Wednesday, February 26, 2025 3:08 PM > > From: Stanislav Kinsburskii > > Extend the "ms_hyperv_info" structure to include a new field, > "ext_features", for capturing extended Hyper-V features. > Update the "ms_hyperv_init_platform" function to retrieve these feature

Re: [PATCH v5 02/10] x86/mshyperv: Add support for extended Hyper-V features

2025-02-28 Thread Roman Kisel
On 2/27/2025 4:17 PM, Nuno Das Neves wrote: On 2/27/2025 9:59 AM, Roman Kisel wrote: On 2/26/2025 3:07 PM, Nuno Das Neves wrote: From: Stanislav Kinsburskii [...]   -    pr_info("Hyper-V: privilege flags low 0x%x, high 0x%x, hints 0x%x, misc 0x%x\n", -    ms_hyperv.features, ms_hy

Re: [PATCH v5 02/10] x86/mshyperv: Add support for extended Hyper-V features

2025-02-27 Thread Nuno Das Neves
On 2/27/2025 9:59 AM, Roman Kisel wrote: > > > On 2/26/2025 3:07 PM, Nuno Das Neves wrote: >> From: Stanislav Kinsburskii > [...] >>   -    pr_info("Hyper-V: privilege flags low 0x%x, high 0x%x, hints 0x%x, >> misc 0x%x\n", >> -    ms_hyperv.features, ms_hyperv.priv_high, ms_hyperv.hints, >

Re: [PATCH v5 02/10] x86/mshyperv: Add support for extended Hyper-V features

2025-02-27 Thread Easwar Hariharan
On 2/26/2025 3:07 PM, Nuno Das Neves wrote: > From: Stanislav Kinsburskii > > Extend the "ms_hyperv_info" structure to include a new field, > "ext_features", for capturing extended Hyper-V features. > Update the "ms_hyperv_init_platform" function to retrieve these features > using the cpuid instr

Re: [PATCH v5 02/10] x86/mshyperv: Add support for extended Hyper-V features

2025-02-27 Thread Roman Kisel
On 2/26/2025 3:07 PM, Nuno Das Neves wrote: From: Stanislav Kinsburskii [...] - pr_info("Hyper-V: privilege flags low 0x%x, high 0x%x, hints 0x%x, misc 0x%x\n", - ms_hyperv.features, ms_hyperv.priv_high, ms_hyperv.hints, + pr_info("Hyper-V: privilege flags low 0x%x, h

Re: [PATCH v5 02/10] x86/mshyperv: Add support for extended Hyper-V features

2025-02-26 Thread Stanislav Kinsburskii
On Wed, Feb 26, 2025 at 03:07:56PM -0800, Nuno Das Neves wrote: > From: Stanislav Kinsburskii > > Extend the "ms_hyperv_info" structure to include a new field, > "ext_features", for capturing extended Hyper-V features. > Update the "ms_hyperv_init_platform" function to retrieve these features > u

[PATCH v5 02/10] x86/mshyperv: Add support for extended Hyper-V features

2025-02-26 Thread Nuno Das Neves
From: Stanislav Kinsburskii Extend the "ms_hyperv_info" structure to include a new field, "ext_features", for capturing extended Hyper-V features. Update the "ms_hyperv_init_platform" function to retrieve these features using the cpuid instruction and include them in the informational output. Si