From 5b08863f1f700850af80483dbc2adaac78b021b3 Mon Sep 17 00:00:00 2001 From: sephe Date: Thu, 24 Mar 2016 01:12:28 +0000 Subject: hyperv/utils: Allow hint to disable individual utility Reviewed by: kib, Dexuan Cui MFC after: 1 week Sponsored by: Microsoft OSTC Differential Revision: https://reviews.freebsd.org/D5714 --- sys/dev/hyperv/utilities/hv_shutdown.c | 4 ++++ 1 file changed, 4 insertions(+) (limited to 'sys/dev/hyperv/utilities/hv_shutdown.c') diff --git a/sys/dev/hyperv/utilities/hv_shutdown.c b/sys/dev/hyperv/utilities/hv_shutdown.c index 20bc65e..0beed5a 100644 --- a/sys/dev/hyperv/utilities/hv_shutdown.c +++ b/sys/dev/hyperv/utilities/hv_shutdown.c @@ -116,6 +116,10 @@ static int hv_shutdown_probe(device_t dev) { const char *p = vmbus_get_type(dev); + + if (resource_disabled("hvshutdown", 0)) + return ENXIO; + if (!memcmp(p, &service_guid, sizeof(hv_guid))) { device_set_desc(dev, "Hyper-V Shutdown Service"); return BUS_PROBE_DEFAULT; -- cgit v1.1