qemu-devel.nongnu.org archive mirror
 help / color / mirror / Atom feed
* [PATCH] hw/s390x: Re-enable the pci-bridge device on s390x
@ 2024-10-24 13:04 Thomas Huth
  2024-10-24 13:12 ` Cédric Le Goater
                   ` (2 more replies)
  0 siblings, 3 replies; 4+ messages in thread
From: Thomas Huth @ 2024-10-24 13:04 UTC (permalink / raw)
  To: qemu-devel, Halil Pasic, Christian Borntraeger, Eric Farman
  Cc: qemu-s390x, Boris Fiuczynski, Cédric Le Goater

Commit e779e5c05a ("hw/pci-bridge: Add a Kconfig switch for the
normal PCI bridge") added a config switch for the pci-bridge, so
that the device is not included in the s390x target anymore (since
the pci-bridge is not really useful on s390x).

However, it seems like libvirt is still adding pci-bridge devices
automatically to the guests' XML definitions (when adding a PCI
device to a non-zero PCI bus), so these guests are now broken due
to the missing pci-bridge in the QEMU binary.

To avoid disruption of the users, let's re-enable the pci-bridge
device on s390x for the time being. We could maybe disable it later
again if libvirt does not add the pci-bridge device automatically
to the guests anymore in the future.

Signed-off-by: Thomas Huth <thuth@redhat.com>
---
 hw/s390x/Kconfig | 1 +
 1 file changed, 1 insertion(+)

diff --git a/hw/s390x/Kconfig b/hw/s390x/Kconfig
index 3bbf4ae56e..82afdaa9dc 100644
--- a/hw/s390x/Kconfig
+++ b/hw/s390x/Kconfig
@@ -7,6 +7,7 @@ config S390_CCW_VIRTIO
     imply VFIO_AP
     imply VFIO_CCW
     imply WDT_DIAG288
+    imply PCI_BRIDGE
     imply PCIE_DEVICES
     imply IOMMUFD
     select PCI_EXPRESS
-- 
2.47.0



^ permalink raw reply related	[flat|nested] 4+ messages in thread

* Re: [PATCH] hw/s390x: Re-enable the pci-bridge device on s390x
  2024-10-24 13:04 [PATCH] hw/s390x: Re-enable the pci-bridge device on s390x Thomas Huth
@ 2024-10-24 13:12 ` Cédric Le Goater
  2024-10-24 13:37 ` Boris Fiuczynski
  2024-10-24 17:31 ` Philippe Mathieu-Daudé
  2 siblings, 0 replies; 4+ messages in thread
From: Cédric Le Goater @ 2024-10-24 13:12 UTC (permalink / raw)
  To: Thomas Huth, qemu-devel, Halil Pasic, Christian Borntraeger,
	Eric Farman
  Cc: qemu-s390x, Boris Fiuczynski

On 10/24/24 15:04, Thomas Huth wrote:
> Commit e779e5c05a ("hw/pci-bridge: Add a Kconfig switch for the
> normal PCI bridge") added a config switch for the pci-bridge, so
> that the device is not included in the s390x target anymore (since
> the pci-bridge is not really useful on s390x).
> 
> However, it seems like libvirt is still adding pci-bridge devices
> automatically to the guests' XML definitions (when adding a PCI
> device to a non-zero PCI bus), so these guests are now broken due
> to the missing pci-bridge in the QEMU binary.
> 
> To avoid disruption of the users, let's re-enable the pci-bridge
> device on s390x for the time being. We could maybe disable it later
> again if libvirt does not add the pci-bridge device automatically
> to the guests anymore in the future.
> 
> Signed-off-by: Thomas Huth <thuth@redhat.com>


Reviewed-by: Cédric Le Goater <clg@redhat.com>

Thanks,

C.


> ---
>   hw/s390x/Kconfig | 1 +
>   1 file changed, 1 insertion(+)
> 
> diff --git a/hw/s390x/Kconfig b/hw/s390x/Kconfig
> index 3bbf4ae56e..82afdaa9dc 100644
> --- a/hw/s390x/Kconfig
> +++ b/hw/s390x/Kconfig
> @@ -7,6 +7,7 @@ config S390_CCW_VIRTIO
>       imply VFIO_AP
>       imply VFIO_CCW
>       imply WDT_DIAG288
> +    imply PCI_BRIDGE
>       imply PCIE_DEVICES
>       imply IOMMUFD
>       select PCI_EXPRESS



^ permalink raw reply	[flat|nested] 4+ messages in thread

* Re: [PATCH] hw/s390x: Re-enable the pci-bridge device on s390x
  2024-10-24 13:04 [PATCH] hw/s390x: Re-enable the pci-bridge device on s390x Thomas Huth
  2024-10-24 13:12 ` Cédric Le Goater
@ 2024-10-24 13:37 ` Boris Fiuczynski
  2024-10-24 17:31 ` Philippe Mathieu-Daudé
  2 siblings, 0 replies; 4+ messages in thread
From: Boris Fiuczynski @ 2024-10-24 13:37 UTC (permalink / raw)
  To: Thomas Huth, qemu-devel, Halil Pasic, Christian Borntraeger,
	Eric Farman
  Cc: qemu-s390x, Cédric Le Goater

Just my two cents on this with regard to the future:
Tools using libvirt to define or modify libvirt domains should not be 
enforced to change there PCI code logic to prevent the usage of 
pci-bridge for s390x.
The PCI bus configuration in QEMU is QEMU internal only as the zPCI 
configuration is used in the s390x guest.

Therefore for this patch
Reviewed-by: Boris Fiuczynski <fiuczy@linux.ibm.com>

On 10/24/24 15:04, Thomas Huth wrote:
> Commit e779e5c05a ("hw/pci-bridge: Add a Kconfig switch for the
> normal PCI bridge") added a config switch for the pci-bridge, so
> that the device is not included in the s390x target anymore (since
> the pci-bridge is not really useful on s390x).
> 
> However, it seems like libvirt is still adding pci-bridge devices
> automatically to the guests' XML definitions (when adding a PCI
> device to a non-zero PCI bus), so these guests are now broken due
> to the missing pci-bridge in the QEMU binary.
> 
> To avoid disruption of the users, let's re-enable the pci-bridge
> device on s390x for the time being. We could maybe disable it later
> again if libvirt does not add the pci-bridge device automatically
> to the guests anymore in the future.
> 
> Signed-off-by: Thomas Huth <thuth@redhat.com>
> ---
>   hw/s390x/Kconfig | 1 +
>   1 file changed, 1 insertion(+)
> 
> diff --git a/hw/s390x/Kconfig b/hw/s390x/Kconfig
> index 3bbf4ae56e..82afdaa9dc 100644
> --- a/hw/s390x/Kconfig
> +++ b/hw/s390x/Kconfig
> @@ -7,6 +7,7 @@ config S390_CCW_VIRTIO
>       imply VFIO_AP
>       imply VFIO_CCW
>       imply WDT_DIAG288
> +    imply PCI_BRIDGE
>       imply PCIE_DEVICES
>       imply IOMMUFD
>       select PCI_EXPRESS


-- 
Mit freundlichen Grüßen/Kind regards
    Boris Fiuczynski

IBM Deutschland Research & Development GmbH
Vorsitzender des Aufsichtsrats: Wolfgang Wendt
Geschäftsführung: David Faller
Sitz der Gesellschaft: Böblingen
Registergericht: Amtsgericht Stuttgart, HRB 243294


^ permalink raw reply	[flat|nested] 4+ messages in thread

* Re: [PATCH] hw/s390x: Re-enable the pci-bridge device on s390x
  2024-10-24 13:04 [PATCH] hw/s390x: Re-enable the pci-bridge device on s390x Thomas Huth
  2024-10-24 13:12 ` Cédric Le Goater
  2024-10-24 13:37 ` Boris Fiuczynski
@ 2024-10-24 17:31 ` Philippe Mathieu-Daudé
  2 siblings, 0 replies; 4+ messages in thread
From: Philippe Mathieu-Daudé @ 2024-10-24 17:31 UTC (permalink / raw)
  To: Thomas Huth, qemu-devel, Halil Pasic, Christian Borntraeger,
	Eric Farman
  Cc: qemu-s390x, Boris Fiuczynski, Cédric Le Goater

On 24/10/24 10:04, Thomas Huth wrote:
> Commit e779e5c05a ("hw/pci-bridge: Add a Kconfig switch for the
> normal PCI bridge") added a config switch for the pci-bridge, so
> that the device is not included in the s390x target anymore (since
> the pci-bridge is not really useful on s390x).
> 
> However, it seems like libvirt is still adding pci-bridge devices
> automatically to the guests' XML definitions (when adding a PCI
> device to a non-zero PCI bus), so these guests are now broken due
> to the missing pci-bridge in the QEMU binary.
> 
> To avoid disruption of the users, let's re-enable the pci-bridge
> device on s390x for the time being. We could maybe disable it later
> again if libvirt does not add the pci-bridge device automatically
> to the guests anymore in the future.
> 
> Signed-off-by: Thomas Huth <thuth@redhat.com>
> ---
>   hw/s390x/Kconfig | 1 +
>   1 file changed, 1 insertion(+)

Reviewed-by: Philippe Mathieu-Daudé <philmd@linaro.org>




^ permalink raw reply	[flat|nested] 4+ messages in thread

end of thread, other threads:[~2024-10-24 17:32 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2024-10-24 13:04 [PATCH] hw/s390x: Re-enable the pci-bridge device on s390x Thomas Huth
2024-10-24 13:12 ` Cédric Le Goater
2024-10-24 13:37 ` Boris Fiuczynski
2024-10-24 17:31 ` Philippe Mathieu-Daudé

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).