summaryrefslogtreecommitdiffstats
path: root/src/include/ipxe/device.h
diff options
context:
space:
mode:
authorMichael Brown2016-07-26 17:18:53 +0200
committerMichael Brown2016-07-26 17:27:12 +0200
commit145aae39987b2736ed829bf5ffccaa09b37605fe (patch)
treef6e05702ca2d83077f22578ee32943cdf3736b58 /src/include/ipxe/device.h
parent[ipv6] Allow for multiple routers (diff)
downloadipxe-145aae39987b2736ed829bf5ffccaa09b37605fe.tar.gz
ipxe-145aae39987b2736ed829bf5ffccaa09b37605fe.tar.xz
ipxe-145aae39987b2736ed829bf5ffccaa09b37605fe.zip
[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 d81417e8..d4ba001b 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 */