Re: [PATCH v5 02/10] x86/mshyperv: Add support for extended Hyper-V features
From: Roman Kisel <hidden>
Date: 2025-02-27 17:59:39
Also in:
linux-acpi, linux-arch, linux-hyperv, lkml
From: Roman Kisel <hidden>
Date: 2025-02-27 17:59:39
Also in:
linux-acpi, linux-arch, linux-hyperv, lkml
On 2/26/2025 3:07 PM, Nuno Das Neves wrote:
From: Stanislav Kinsburskii <redacted>
[...]
- 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, high 0x%x, ext 0x%x, hints 0x%x, misc 0x%x\n",
+ ms_hyperv.features, ms_hyperv.priv_high,
+ ms_hyperv.ext_features, ms_hyperv.hints,
ms_hyperv.misc_features);Would using %#x instead of 0x%x be better in your opinion? [..] -- Thank you, Roman