[PATCH RFC v1 03/18] Drivers: hv: vmbus: skip VMBus initialization if Linux is root

From: Wei Liu
Date: Mon Sep 14 2020 - 13:51:16 EST


There is no VMBus and the other infrastructures initialized in
hv_acpi_init when Linux is running as the root partition.

Signed-off-by: Wei Liu <wei.liu@xxxxxxxxxx>
---
drivers/hv/vmbus_drv.c | 3 +++
1 file changed, 3 insertions(+)

diff --git a/drivers/hv/vmbus_drv.c b/drivers/hv/vmbus_drv.c
index d69f4efa3719..da4a5660f915 100644
--- a/drivers/hv/vmbus_drv.c
+++ b/drivers/hv/vmbus_drv.c
@@ -2586,6 +2586,9 @@ static int __init hv_acpi_init(void)
if (!hv_is_hyperv_initialized())
return -ENODEV;

+ if (hv_root_partition)
+ return -ENODEV;
+
init_completion(&probe_event);

/*
--
2.20.1