summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMichael Kelley <mhkelley58@gmail.com>2026-08-05 13:37:47 -0700
committerWei Liu <wei.liu@kernel.org>2026-08-24 00:35:42 +0000
commit73da9973b353abf2fed5038d38fa403fc6944339 (patch)
tree3157bc7902e437b99d9d5846c2d91f1a450007f0
parenta9a05e801efffe3a2f949fef2a83f855e733d6e1 (diff)
hv_sock: Remove check for old Hyper-V hosts
With the overall removal of Linux support for running on Hyper-V hosts earlier than WS2016 and Windows 10, the check for such versions during hv_sock initialization is no longer necessary. Remove the check. Signed-off-by: Michael Kelley <mhklinux@outlook.com> Signed-off-by: Wei Liu <wei.liu@kernel.org>
-rw-r--r--net/vmw_vsock/hyperv_transport.c3
1 files changed, 0 insertions, 3 deletions
diff --git a/net/vmw_vsock/hyperv_transport.c b/net/vmw_vsock/hyperv_transport.c
index 5405c2680dec..855b15971c35 100644
--- a/net/vmw_vsock/hyperv_transport.c
+++ b/net/vmw_vsock/hyperv_transport.c
@@ -961,9 +961,6 @@ static int __init hvs_init(void)
{
int ret;
- if (vmbus_proto_version < VERSION_WIN10)
- return -ENODEV;
-
ret = vmbus_driver_register(&hvs_drv);
if (ret != 0)
return ret;