Drivers: hv: Capture the host build information
authorK. Y. Srinivasan <kys@microsoft.com>
Sat, 1 Dec 2012 14:46:58 +0000 (06:46 -0800)
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>
Thu, 17 Jan 2013 19:41:49 +0000 (11:41 -0800)
Capture the host build information so it can be presented along with the
negotiated vmbus version information.

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>
drivers/hv/hv.c
drivers/hv/hyperv_vmbus.h

index 03e6a1e..0cd2da3 100644 (file)
@@ -40,6 +40,11 @@ struct hv_context hv_context = {
 /*
  * query_hypervisor_info - Get version info of the windows hypervisor
  */
+unsigned int host_info_eax;
+unsigned int host_info_ebx;
+unsigned int host_info_ecx;
+unsigned int host_info_edx;
+
 static int query_hypervisor_info(void)
 {
        unsigned int eax;
@@ -76,6 +81,10 @@ static int query_hypervisor_info(void)
                            ecx,
                            edx >> 24,
                            edx & 0xFFFFFF);
+               host_info_eax = eax;
+               host_info_ebx = ebx;
+               host_info_ecx = ecx;
+               host_info_edx = edx;
        }
        return max_leaf;
 }
index ac111f2..12f2f9e 100644 (file)
@@ -531,6 +531,13 @@ extern void hv_synic_init(void *irqarg);
 
 extern void hv_synic_cleanup(void *arg);
 
+/*
+ * Host version information.
+ */
+extern unsigned int host_info_eax;
+extern unsigned int host_info_ebx;
+extern unsigned int host_info_ecx;
+extern unsigned int host_info_edx;
 
 /* Interface */