4648861824
535584ed-fix-target-validation-when-editing-device.patch - bnc#874408 - virt-manager and libvirt issues persist - unable to create or launch virtman-vminstall.patch - Upstream bug fix 5350d9cc-display-error-on-empty-installation-URL.patch - Dropped unused and unnecessary patches virtinst-cdrom.patch virtman-update-backend.patch virtman-slow-mouse.patch virtman-reverse-serialcon.patch - Reordered some patches - Upstream bug fixes 534bcfa0-use-uniformed-expression-of-Default.patch 534be092-early-detect-ftp-connection-errors.patch 534d45db-hiding-removebutton-for-USB-controller.patch 534d6406-display-the-domain-for-PCI-devices.patch 534eafe4-avoid-useless-errors-when-connection-closes.patch - bnc#872789 - XEN domain fails to start when xen disk is atttached virtinst-xenbus-disk-index-fix.patch - bnc#872777 - virt-manager - Error shutting down domain: internal error: Failed to shutdown domain '3' with libxenlight virtman-shutdown-with-acpi-button.patch OBS-URL: https://build.opensuse.org/package/show/Virtualization/virt-manager?expand=0&rev=166
28 lines
1.1 KiB
Diff
28 lines
1.1 KiB
Diff
Subject: virtinst: display the domain for PCI devices
|
|
From: Giuseppe Scrivano gscrivan@redhat.com Tue Apr 15 16:22:33 2014 +0200
|
|
Date: Tue Apr 15 18:53:26 2014 +0200:
|
|
Git: e980d9c737284a5e098a35ea6d8a17155aaf5ce9
|
|
|
|
Closes: https://bugzilla.redhat.com/show_bug.cgi?id=1085499
|
|
|
|
Signed-off-by: Giuseppe Scrivano <gscrivan@redhat.com>
|
|
|
|
diff --git a/virtinst/nodedev.py b/virtinst/nodedev.py
|
|
index af6dbf7..17524dc 100644
|
|
--- a/virtinst/nodedev.py
|
|
+++ b/virtinst/nodedev.py
|
|
@@ -169,9 +169,10 @@ class PCIDevice(NodeDevice):
|
|
iommu_group = XMLProperty("./capability/iommuGroup/@number", is_int=True)
|
|
|
|
def pretty_name(self):
|
|
- devstr = "%.2X:%.2X:%X" % (int(self.bus),
|
|
- int(self.slot),
|
|
- int(self.function))
|
|
+ devstr = "%.4X:%.2X:%.2X:%X" % (int(self.domain),
|
|
+ int(self.bus),
|
|
+ int(self.slot),
|
|
+ int(self.function))
|
|
|
|
return "%s %s %s" % (devstr, self.vendor_name, self.product_name)
|
|
|