aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/hv
diff options
context:
space:
mode:
authorK. Y. Srinivasan <kys@microsoft.com>2012-12-01 06:46:41 -0800
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>2013-01-17 11:34:36 -0800
commit37f7278b81a9ab9b76cf4d716ba420444ca4a616 (patch)
tree5009a8fe1db5b3e8a88f7d307ddca8b85fc2a912 /drivers/hv
parentDrivers: hv: Extend/modify vmbus_channel_offer_channel for win7 and beyond (diff)
downloadlinux-dev-37f7278b81a9ab9b76cf4d716ba420444ca4a616.tar.xz
linux-dev-37f7278b81a9ab9b76cf4d716ba420444ca4a616.zip
Drivers: hv: Save and export negotiated vmbus version
Export the negotiated vmbus version as this may be useful for individual drivers. Signed-off-by: K. Y. Srinivasan <kys@microsoft.com> Reviewed-by: Haiyang Zhang <haiyangz@microsoft.com> Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Diffstat (limited to 'drivers/hv')
-rw-r--r--drivers/hv/connection.c9
1 files changed, 9 insertions, 0 deletions
diff --git a/drivers/hv/connection.c b/drivers/hv/connection.c
index 2b56a3f47b30..70ea5d1fc16c 100644
--- a/drivers/hv/connection.c
+++ b/drivers/hv/connection.c
@@ -30,6 +30,7 @@
#include <linux/slab.h>
#include <linux/vmalloc.h>
#include <linux/hyperv.h>
+#include <linux/export.h>
#include <asm/hyperv.h>
#include "hyperv_vmbus.h"
@@ -54,6 +55,12 @@ struct vmbus_connection vmbus_connection = {
#define VERSION_INVAL -1
+/*
+ * Negotiated protocol version with the host.
+ */
+__u32 vmbus_proto_version;
+EXPORT_SYMBOL_GPL(vmbus_proto_version);
+
static __u32 vmbus_get_next_version(__u32 current_version)
{
switch (current_version) {
@@ -215,6 +222,8 @@ int vmbus_connect(void)
if (version == VERSION_INVAL)
goto cleanup;
+ vmbus_proto_version = version;
+ pr_info("Negotiated host information %d\n", version);
kfree(msginfo);
return 0;