summaryrefslogtreecommitdiffstats
path: root/include/linux/hyperv.h
diff options
context:
space:
mode:
authorKeith Mange2015-05-26 23:23:01 +0200
committerGreg Kroah-Hartman2015-05-31 23:38:21 +0200
commit6c4e5f9c9ff41ea997fd0f345b3b2b88c113eb68 (patch)
tree7dc3dcc14e3916dfcf0dabaf2b3bb32422f21590 /include/linux/hyperv.h
parentchar: misc: restore MISC_DYNAMIC_MINOR on device_create() failure (diff)
downloadkernel-qcow2-linux-6c4e5f9c9ff41ea997fd0f345b3b2b88c113eb68.tar.gz
kernel-qcow2-linux-6c4e5f9c9ff41ea997fd0f345b3b2b88c113eb68.tar.xz
kernel-qcow2-linux-6c4e5f9c9ff41ea997fd0f345b3b2b88c113eb68.zip
Drivers: hv: vmbus:Update preferred vmbus protocol version to windows 10.
Add support for Windows 10. Signed-off-by: Keith Mange <keith.mange@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.h4
1 files changed, 3 insertions, 1 deletions
diff --git a/include/linux/hyperv.h b/include/linux/hyperv.h
index 3932a993ff5a..4317cd1b69ed 100644
--- a/include/linux/hyperv.h
+++ b/include/linux/hyperv.h
@@ -160,16 +160,18 @@ hv_get_ringbuffer_availbytes(struct hv_ring_buffer_info *rbi,
* 1 . 1 (Windows 7)
* 2 . 4 (Windows 8)
* 3 . 0 (Windows 8 R2)
+ * 4 . 0 (Windows 10)
*/
#define VERSION_WS2008 ((0 << 16) | (13))
#define VERSION_WIN7 ((1 << 16) | (1))
#define VERSION_WIN8 ((2 << 16) | (4))
#define VERSION_WIN8_1 ((3 << 16) | (0))
+#define VERSION_WIN10 ((4 << 16) | (0))
#define VERSION_INVAL -1
-#define VERSION_CURRENT VERSION_WIN8_1
+#define VERSION_CURRENT VERSION_WIN10
/* Make maximum size of pipe payload of 16K */
#define MAX_PIPE_DATA_PAYLOAD (sizeof(u8) * 16384)