Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 186599
b: refs/heads/master
c: c22090f
h: refs/heads/master
i:
  186597: 4167d56
  186595: 3f7bfdc
  186591: 751ebb1
v: v3
  • Loading branch information
Greg Kroah-Hartman committed Mar 4, 2010
1 parent 4b9f922 commit c253514
Show file tree
Hide file tree
Showing 2 changed files with 18 additions and 5 deletions.
2 changes: 1 addition & 1 deletion [refs]
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
---
refs/heads/master: 9a775dbd4e8c87b7d35549183145321c7205404e
refs/heads/master: c22090facd354749cfe99a46e903449c7ac07788
21 changes: 17 additions & 4 deletions trunk/drivers/staging/hv/vmbus_drv.c
Original file line number Diff line number Diff line change
Expand Up @@ -25,6 +25,7 @@
#include <linux/interrupt.h>
#include <linux/sysctl.h>
#include <linux/pci.h>
#include <linux/dmi.h>
#include "VersionInfo.h"
#include "osd.h"
#include "logging.h"
Expand Down Expand Up @@ -948,6 +949,19 @@ static irqreturn_t vmbus_isr(int irq, void *dev_id)
}
}

static struct dmi_system_id __initdata microsoft_hv_dmi_table[] = {
{
.ident = "Hyper-V",
.matches = {
DMI_MATCH(DMI_SYS_VENDOR, "Microsoft Corporation"),
DMI_MATCH(DMI_PRODUCT_NAME, "Virtual Machine"),
DMI_MATCH(DMI_BOARD_NAME, "Virtual Machine"),
},
},
{ },
};
MODULE_DEVICE_TABLE(dmi, microsoft_hv_dmi_table);

static int __init vmbus_init(void)
{
int ret = 0;
Expand All @@ -959,6 +973,9 @@ static int __init vmbus_init(void)
vmbus_loglevel, HIWORD(vmbus_loglevel), LOWORD(vmbus_loglevel));
/* Todo: it is used for loglevel, to be ported to new kernel. */

if (!dmi_check_system(microsoft_hv_dmi_table))
return -ENODEV;

ret = vmbus_bus_init(VmbusInitialize);

DPRINT_EXIT(VMBUS_DRV);
Expand All @@ -980,10 +997,6 @@ static void __exit vmbus_exit(void)
* needed by distro tools to determine if the hyperv drivers should be
* installed and/or configured. We don't do anything else with the table, but
* it needs to be present.
*
* We might consider triggering off of DMI table info as well, as that does
* decribe the virtual machine being run on, but not all configuration tools
* seem to be able to handle DMI device ids properly.
*/
const static struct pci_device_id microsoft_hv_pci_table[] = {
{ PCI_DEVICE(0x1414, 0x5353) }, /* VGA compatible controller */
Expand Down

0 comments on commit c253514

Please sign in to comment.