diff options
author | Dexuan Cui <decui@microsoft.com> | 2016-09-07 08:39:34 -0400 |
---|---|---|
committer | Greg Kroah-Hartman <gregkh@linuxfoundation.org> | 2016-09-07 06:57:55 -0400 |
commit | 0f98829a99850836cf7c2cc9fbf1d7ce0f795780 (patch) | |
tree | a0336b84348fce978068af05f083ce776ab1ce0e /include/linux/hyperv.h | |
parent | e2e808413425d82c8f162933a30304d10a5df231 (diff) |
Drivers: hv: vmbus: suppress some "hv_vmbus: Unknown GUID" warnings
Some VMBus devices are not needed by Linux guest[1][2], and, VMBus channels
of Hyper-V Sockets don't really mean usual synthetic devices, so let's
suppress the warnings for them.
[1] https://support.microsoft.com/en-us/kb/2925727
[2] https://msdn.microsoft.com/en-us/library/jj980180(v=winembedded.81).aspx
Signed-off-by: Dexuan Cui <decui@microsoft.com>
Signed-off-by: K. Y. Srinivasan <kys@microsoft.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Diffstat (limited to 'include/linux/hyperv.h')
-rw-r--r-- | include/linux/hyperv.h | 21 |
1 files changed, 21 insertions, 0 deletions
diff --git a/include/linux/hyperv.h b/include/linux/hyperv.h index 613074ef1ce9..430619a92d3b 100644 --- a/include/linux/hyperv.h +++ b/include/linux/hyperv.h | |||
@@ -1315,6 +1315,27 @@ u64 hv_do_hypercall(u64 control, void *input, void *output); | |||
1315 | 0x80, 0x2e, 0x27, 0xed, 0xe1, 0x9f) | 1315 | 0x80, 0x2e, 0x27, 0xed, 0xe1, 0x9f) |
1316 | 1316 | ||
1317 | /* | 1317 | /* |
1318 | * Linux doesn't support the 3 devices: the first two are for | ||
1319 | * Automatic Virtual Machine Activation, and the third is for | ||
1320 | * Remote Desktop Virtualization. | ||
1321 | * {f8e65716-3cb3-4a06-9a60-1889c5cccab5} | ||
1322 | * {3375baf4-9e15-4b30-b765-67acb10d607b} | ||
1323 | * {276aacf4-ac15-426c-98dd-7521ad3f01fe} | ||
1324 | */ | ||
1325 | |||
1326 | #define HV_AVMA1_GUID \ | ||
1327 | .guid = UUID_LE(0xf8e65716, 0x3cb3, 0x4a06, 0x9a, 0x60, \ | ||
1328 | 0x18, 0x89, 0xc5, 0xcc, 0xca, 0xb5) | ||
1329 | |||
1330 | #define HV_AVMA2_GUID \ | ||
1331 | .guid = UUID_LE(0x3375baf4, 0x9e15, 0x4b30, 0xb7, 0x65, \ | ||
1332 | 0x67, 0xac, 0xb1, 0x0d, 0x60, 0x7b) | ||
1333 | |||
1334 | #define HV_RDV_GUID \ | ||
1335 | .guid = UUID_LE(0x276aacf4, 0xac15, 0x426c, 0x98, 0xdd, \ | ||
1336 | 0x75, 0x21, 0xad, 0x3f, 0x01, 0xfe) | ||
1337 | |||
1338 | /* | ||
1318 | * Common header for Hyper-V ICs | 1339 | * Common header for Hyper-V ICs |
1319 | */ | 1340 | */ |
1320 | 1341 | ||