aboutsummaryrefslogtreecommitdiffstats
path: root/src/include/ipxe/device.h
diff options
context:
space:
mode:
authorMichael Brown <mcb30@ipxe.org>2016-07-26 16:18:53 +0100
committerMichael Brown <mcb30@ipxe.org>2016-07-26 16:27:12 +0100
commit145aae39987b2736ed829bf5ffccaa09b37605fe (patch)
treef6e05702ca2d83077f22578ee32943cdf3736b58 /src/include/ipxe/device.h
parenta4c4f72297bea6902001ce813aaf432bd49d382d (diff)
downloadipxe-145aae39987b2736ed829bf5ffccaa09b37605fe.tar.gz
[hyperv] Use instance UUID in device name
The Windows drivers for VMBus devices are enumerated using the instance UUID rather than the channel number. Include the instance UUID within the iPXE device name to allow an iPXE network device to be more easily associated with the corresponding Windows network device when debugging. Signed-off-by: Michael Brown <mcb30@ipxe.org>
Diffstat (limited to 'src/include/ipxe/device.h')
-rw-r--r--src/include/ipxe/device.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/include/ipxe/device.h b/src/include/ipxe/device.h
index d81417e8e..d4ba001b0 100644
--- a/src/include/ipxe/device.h
+++ b/src/include/ipxe/device.h
@@ -72,7 +72,7 @@ struct device_description {
/** A hardware device */
struct device {
/** Name */
- char name[32];
+ char name[40];
/** Driver name */
const char *driver_name;
/** Device description */