lkml.org 
[lkml]   [2022]   [Mar]   [4]   [last100]   RSS Feed
Views: [wrap][no wrap]   [headers]  [forward] 
 
Messages in this thread
Patch in this message
/
From
Subject[PATCH] arm64: hyperv: make the format of 'Hyper-V: Host Build' output match x86
Date
Currently, the following is observed on Hyper-V/ARM:

Hyper-V: Host Build 10.0.22477.1061-1-0

This differs from similar output on x86:

Hyper-V Host Build:20348-10.0-1-0.1138

and this is inconvenient. As x86 was the first to introduce the current
format and to not break existing tools parsing it, change the format on
ARM to match.

Signed-off-by: Vitaly Kuznetsov <vkuznets@redhat.com>
---
arch/arm64/hyperv/mshyperv.c | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/arch/arm64/hyperv/mshyperv.c b/arch/arm64/hyperv/mshyperv.c
index bbbe351e9045..7b9c1c542a77 100644
--- a/arch/arm64/hyperv/mshyperv.c
+++ b/arch/arm64/hyperv/mshyperv.c
@@ -60,8 +60,8 @@ static int __init hyperv_init(void)
b = result.as32.b;
c = result.as32.c;
d = result.as32.d;
- pr_info("Hyper-V: Host Build %d.%d.%d.%d-%d-%d\n",
- b >> 16, b & 0xFFFF, a, d & 0xFFFFFF, c, d >> 24);
+ pr_info("Hyper-V Host Build:%d-%d.%d-%d-%d.%d\n",
+ a, b >> 16, b & 0xFFFF, c, d >> 24, d & 0xFFFFFF);

ret = hv_common_init();
if (ret)
--
2.35.1
\
 
 \ /
  Last update: 2022-03-04 13:25    [W:0.044 / U:0.400 seconds]
©2003-2020 Jasper Spaans|hosted at Digital Ocean and TransIP|Read the blog|Advertise on this site