all lists on lists.proxmox.com
 help / color / mirror / Atom feed
* [pve-devel] [PATCH-SERIES qemu-server] QEMU 9.2 compat
@ 2025-02-07 14:18 Fiona Ebner
  2025-02-07 14:18 ` [pve-devel] [PATCH qemu-server 1/4] cfg2cmd: replace deprecated 'reconnect' option with 'reconnect-ms' Fiona Ebner
                   ` (4 more replies)
  0 siblings, 5 replies; 7+ messages in thread
From: Fiona Ebner @ 2025-02-07 14:18 UTC (permalink / raw)
  To: pve-devel

Adapt to deprecated features in QEMU 9.2 and clean up setting
migration capabilities.

Fiona Ebner (4):
  cfg2cmd: replace deprecated 'reconnect' option with 'reconnect-ms'
  migration: drop removed 'compress' capability
  migration: drop deprecated 'zero-blocks' capability
  migration: remove wrong attempt of disabling 'rdma-pin-all' capability

 PVE/QemuServer.pm                                      | 10 ++++++----
 debian/control                                         |  2 +-
 test/cfg2cmd/bootorder-empty.conf.cmd                  |  2 +-
 test/cfg2cmd/bootorder-legacy.conf.cmd                 |  2 +-
 test/cfg2cmd/bootorder.conf.cmd                        |  2 +-
 .../cputype-icelake-client-deprecation.conf.cmd        |  2 +-
 test/cfg2cmd/custom-cpu-model-defaults.conf.cmd        |  2 +-
 test/cfg2cmd/custom-cpu-model-host-phys-bits.conf.cmd  |  2 +-
 test/cfg2cmd/custom-cpu-model.conf.cmd                 |  2 +-
 test/cfg2cmd/efi-raw-old.conf.cmd                      |  2 +-
 test/cfg2cmd/efi-raw-template.conf.cmd                 |  2 +-
 test/cfg2cmd/efi-raw.conf.cmd                          |  2 +-
 test/cfg2cmd/efi-secboot-and-tpm-q35.conf.cmd          |  2 +-
 test/cfg2cmd/efi-secboot-and-tpm.conf.cmd              |  2 +-
 test/cfg2cmd/efidisk-on-rbd.conf.cmd                   |  2 +-
 test/cfg2cmd/i440fx-viommu-virtio.conf.cmd             |  2 +-
 test/cfg2cmd/i440fx-win10-hostpci.conf.cmd             |  2 +-
 test/cfg2cmd/ide.conf.cmd                              |  2 +-
 test/cfg2cmd/memory-hotplug-hugepages.conf.cmd         |  2 +-
 test/cfg2cmd/memory-hotplug.conf.cmd                   |  2 +-
 test/cfg2cmd/memory-hugepages-1g.conf.cmd              |  2 +-
 test/cfg2cmd/memory-hugepages-2m.conf.cmd              |  2 +-
 test/cfg2cmd/minimal-defaults.conf.cmd                 |  2 +-
 test/cfg2cmd/netdev-7.0-multiqueues.conf.cmd           |  2 +-
 test/cfg2cmd/netdev-7.1-multiqueues.conf.cmd           |  2 +-
 test/cfg2cmd/netdev-7.1.conf.cmd                       |  2 +-
 test/cfg2cmd/netdev.conf.cmd                           |  2 +-
 test/cfg2cmd/pinned-version-pxe-pve.conf.cmd           |  2 +-
 test/cfg2cmd/pinned-version-pxe.conf.cmd               |  2 +-
 test/cfg2cmd/pinned-version.conf.cmd                   |  2 +-
 test/cfg2cmd/q35-ide.conf.cmd                          |  2 +-
 test/cfg2cmd/q35-linux-hostpci-mapping.conf.cmd        |  2 +-
 test/cfg2cmd/q35-linux-hostpci-multifunction.conf.cmd  |  2 +-
 test/cfg2cmd/q35-linux-hostpci-template.conf.cmd       |  2 +-
 .../cfg2cmd/q35-linux-hostpci-x-pci-overrides.conf.cmd |  2 +-
 test/cfg2cmd/q35-linux-hostpci.conf.cmd                |  2 +-
 test/cfg2cmd/q35-simple-6.0.conf.cmd                   |  2 +-
 test/cfg2cmd/q35-simple-7.0.conf.cmd                   |  2 +-
 test/cfg2cmd/q35-simple-pinned-6.1.conf.cmd            |  2 +-
 test/cfg2cmd/q35-simple.conf.cmd                       |  2 +-
 test/cfg2cmd/q35-usb2.conf.cmd                         |  2 +-
 test/cfg2cmd/q35-usb3.conf.cmd                         |  2 +-
 test/cfg2cmd/q35-viommu-intel.conf.cmd                 |  2 +-
 test/cfg2cmd/q35-viommu-virtio.conf.cmd                |  2 +-
 test/cfg2cmd/q35-win10-hostpci.conf.cmd                |  2 +-
 test/cfg2cmd/qemu-xhci-7.1.conf.cmd                    |  2 +-
 test/cfg2cmd/qemu-xhci-q35-7.1.conf.cmd                |  2 +-
 test/cfg2cmd/seabios_serial.conf.cmd                   |  2 +-
 .../simple-balloon-free-page-reporting.conf.cmd        |  2 +-
 test/cfg2cmd/simple-btrfs.conf.cmd                     |  2 +-
 test/cfg2cmd/simple-virtio-blk.conf.cmd                |  2 +-
 test/cfg2cmd/simple1-template.conf.cmd                 |  2 +-
 test/cfg2cmd/simple1.conf.cmd                          |  2 +-
 test/cfg2cmd/spice-enhancments.conf.cmd                |  2 +-
 test/cfg2cmd/spice-linux-4.1.conf.cmd                  |  2 +-
 test/cfg2cmd/spice-usb3.conf.cmd                       |  2 +-
 test/cfg2cmd/spice-win.conf.cmd                        |  2 +-
 test/cfg2cmd/vnc-clipboard-spice.conf.cmd              |  2 +-
 test/cfg2cmd/vnc-clipboard-std.conf.cmd                |  2 +-
 59 files changed, 64 insertions(+), 62 deletions(-)

-- 
2.39.5



_______________________________________________
pve-devel mailing list
pve-devel@lists.proxmox.com
https://lists.proxmox.com/cgi-bin/mailman/listinfo/pve-devel


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

end of thread, other threads:[~2025-04-07  7:35 UTC | newest]

Thread overview: 7+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2025-02-07 14:18 [pve-devel] [PATCH-SERIES qemu-server] QEMU 9.2 compat Fiona Ebner
2025-02-07 14:18 ` [pve-devel] [PATCH qemu-server 1/4] cfg2cmd: replace deprecated 'reconnect' option with 'reconnect-ms' Fiona Ebner
2025-02-07 14:18 ` [pve-devel] [PATCH qemu-server 2/4] migration: drop removed 'compress' capability Fiona Ebner
2025-02-07 14:18 ` [pve-devel] [PATCH qemu-server 3/4] migration: drop deprecated 'zero-blocks' capability Fiona Ebner
2025-02-07 14:18 ` [pve-devel] [PATCH qemu-server 4/4] migration: remove wrong attempt of disabling 'rdma-pin-all' capability Fiona Ebner
2025-04-06 19:56 ` [pve-devel] [PATCH-SERIES qemu-server] QEMU 9.2 compat Thomas Lamprecht
2025-04-07  7:34   ` [pve-devel] superseded: " Fiona Ebner

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.
Service provided by Proxmox Server Solutions GmbH | Privacy | Legal