mirror of
https://github.com/virt-manager/virt-manager.git
synced 2025-02-25 18:55:27 -06:00
nodedev: Include PCI vendor in pretty name
Pretty important if trying to distinguish between devices
This commit is contained in:
parent
cad64c0dc1
commit
52bb0f6067
@ -172,7 +172,7 @@ class PCIDevice(NodeDevice):
|
|||||||
int(self.slot),
|
int(self.slot),
|
||||||
int(self.function))
|
int(self.function))
|
||||||
|
|
||||||
return "%s %s %s" % (devstr, self.product_name)
|
return "%s %s %s" % (devstr, self.vendor_name, self.product_name)
|
||||||
|
|
||||||
|
|
||||||
class USBDevice(NodeDevice):
|
class USBDevice(NodeDevice):
|
||||||
|
Loading…
Reference in New Issue
Block a user