aboutsummaryrefslogtreecommitdiffstats
path: root/arch/arm64/hyperv
diff options
context:
space:
mode:
authorLi kunyu <kunyu@nfschina.com>2022-09-28 14:40:46 +0800
committerWei Liu <wei.liu@kernel.org>2022-09-28 13:36:56 +0000
commitd5ebde1e2b46154d7e03efb1ae3039a304e5386d (patch)
treec458dd46f795936b97ec128a10264e11a0625f51 /arch/arm64/hyperv
parentDrivers: hv: vmbus: Split memcpy of flex-array (diff)
downloadlinux-dev-d5ebde1e2b46154d7e03efb1ae3039a304e5386d.tar.xz
linux-dev-d5ebde1e2b46154d7e03efb1ae3039a304e5386d.zip
hyperv: simplify and rename generate_guest_id
The generate_guest_id function is more suitable for use after the following modifications. 1. The return value of the function is modified to u64. 2. Remove the d_info1 and d_info2 parameters from the function, keep the u64 type kernel_version parameter. 3. Rename the function to make it clearly a Hyper-V related function, and modify it to hv_generate_guest_id. Signed-off-by: Li kunyu <kunyu@nfschina.com> Reviewed-by: Michael Kelley <mikelley@microsoft.com> Link: https://lore.kernel.org/r/20220928064046.3545-1-kunyu@nfschina.com Signed-off-by: Wei Liu <wei.liu@kernel.org>
Diffstat (limited to 'arch/arm64/hyperv')
-rw-r--r--arch/arm64/hyperv/mshyperv.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/arch/arm64/hyperv/mshyperv.c b/arch/arm64/hyperv/mshyperv.c
index bbbe351e9045..a406454578f0 100644
--- a/arch/arm64/hyperv/mshyperv.c
+++ b/arch/arm64/hyperv/mshyperv.c
@@ -38,7 +38,7 @@ static int __init hyperv_init(void)
return 0;
/* Setup the guest ID */
- guest_id = generate_guest_id(0, LINUX_VERSION_CODE, 0);
+ guest_id = hv_generate_guest_id(LINUX_VERSION_CODE);
hv_set_vpreg(HV_REGISTER_GUEST_OSID, guest_id);
/* Get the features and hints from Hyper-V */