aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--drivers/hv/connection.c2
-rw-r--r--include/linux/hyperv.h1
2 files changed, 2 insertions, 1 deletions
diff --git a/drivers/hv/connection.c b/drivers/hv/connection.c
index ac71653abb77..3965537a659d 100644
--- a/drivers/hv/connection.c
+++ b/drivers/hv/connection.c
@@ -194,7 +194,7 @@ int vmbus_connect(void)
194 * version. 194 * version.
195 */ 195 */
196 196
197 version = VERSION_WS2008; 197 version = VERSION_CURRENT;
198 198
199 do { 199 do {
200 ret = vmbus_negotiate_version(msginfo, version); 200 ret = vmbus_negotiate_version(msginfo, version);
diff --git a/include/linux/hyperv.h b/include/linux/hyperv.h
index 8c3cb1fc34d4..5095b066df94 100644
--- a/include/linux/hyperv.h
+++ b/include/linux/hyperv.h
@@ -434,6 +434,7 @@ hv_get_ringbuffer_availbytes(struct hv_ring_buffer_info *rbi,
434 434
435#define VERSION_INVAL -1 435#define VERSION_INVAL -1
436 436
437#define VERSION_CURRENT VERSION_WIN8
437 438
438/* Make maximum size of pipe payload of 16K */ 439/* Make maximum size of pipe payload of 16K */
439#define MAX_PIPE_DATA_PAYLOAD (sizeof(u8) * 16384) 440#define MAX_PIPE_DATA_PAYLOAD (sizeof(u8) * 16384)