all lists on lists.proxmox.com
 help / color / mirror / Atom feed
From: Thomas Lamprecht <t.lamprecht@proxmox.com>
To: Proxmox VE development discussion <pve-devel@lists.proxmox.com>,
	Christoph Heiss <c.heiss@proxmox.com>
Subject: [pve-devel] applied-series: [PATCH firewall/qemu-server/manager/docs v5 00/11] fix #5180: migrate conntrack state on live migration
Date: Thu, 31 Jul 2025 00:45:30 +0200	[thread overview]
Message-ID: <b9cae475-6ba7-4b6b-a866-a03b27139f96@proxmox.com> (raw)
In-Reply-To: <20250730094549.263805-1-c.heiss@proxmox.com>

Am 30.07.25 um 11:47 schrieb Christoph Heiss:

> Diffstat
> ========
> 
> proxmox-firewall:
> 
> Christoph Heiss (1):
>   firewall: add connmark rule with VMID to all guest chains
> 
>  proxmox-firewall/src/firewall.rs              | 14 +++-
>  .../integration_tests__firewall.snap          | 84 +++++++++++++++++++
>  proxmox-nftables/src/expression.rs            |  9 ++
>  proxmox-nftables/src/statement.rs             | 10 ++-
>  4 files changed, 114 insertions(+), 3 deletions(-)
> 
> pve-firewall:
> 
> Christoph Heiss (2):
>   firewall: add connmark rule with VMID to all guest chains
>   firewall: helpers: add sub for flushing conntrack entries by mark
> 
>  debian/control              |  3 ++-
>  src/PVE/Firewall.pm         | 14 ++++++++++++--
>  src/PVE/Firewall/Helpers.pm | 20 ++++++++++++++++++++
>  3 files changed, 34 insertions(+), 3 deletions(-)
> 
> qemu-server:
> 
> Christoph Heiss (5):
>   qmp helpers: allow passing structured args via qemu_objectadd()
>   api2: qemu: add module exposing node migration capabilities
>   fix #5180: dbus-vmstate: add daemon for QEMUs dbus-vmstate interface
>   fix #5180: migrate: integrate helper for live-migrating conntrack info
>   migrate: flush old VM conntrack entries after successful migration
> 
>  Makefile                                      |   4 +-
>  debian/control                                |   7 +-
>  src/Makefile                                  |   1 +
>  src/PVE/API2/Makefile                         |   1 +
>  src/PVE/API2/NodeCapabilities/Makefile        |   9 +
>  .../API2/NodeCapabilities/Qemu/Migration.pm   |  48 +++++
>  src/PVE/API2/Qemu.pm                          |  75 ++++++++
>  src/PVE/CLI/qm.pm                             |   5 +
>  src/PVE/QemuMigrate.pm                        |  78 ++++++++
>  src/PVE/QemuServer.pm                         |   6 +
>  src/PVE/QemuServer/DBusVMState.pm             | 125 +++++++++++++
>  src/PVE/QemuServer/Makefile                   |   1 +
>  src/PVE/QemuServer/QMPHelpers.pm              |   4 +-
>  src/dbus-vmstate/Makefile                     |  11 ++
>  src/dbus-vmstate/dbus-vmstate                 | 168 ++++++++++++++++++
>  src/dbus-vmstate/org.qemu.VMState1.conf       |  11 ++
>  src/dbus-vmstate/pve-dbus-vmstate@.service    |  10 ++
>  17 files changed, 560 insertions(+), 4 deletions(-)
>  create mode 100644 src/PVE/API2/NodeCapabilities/Makefile
>  create mode 100644 src/PVE/API2/NodeCapabilities/Qemu/Migration.pm
>  create mode 100644 src/PVE/QemuServer/DBusVMState.pm
>  create mode 100644 src/dbus-vmstate/Makefile
>  create mode 100755 src/dbus-vmstate/dbus-vmstate
>  create mode 100644 src/dbus-vmstate/org.qemu.VMState1.conf
>  create mode 100644 src/dbus-vmstate/pve-dbus-vmstate@.service
> 
> pve-manager:
> 
> Christoph Heiss (2):
>   api2: capabilities: expose new qemu/migration endpoint
>   ui: window: Migrate: add checkbox for migrating VM conntrack state
> 
>  PVE/API2/Capabilities.pm       |  8 +++-
>  www/manager6/window/Migrate.js | 82 ++++++++++++++++++++++++++++++++--
>  2 files changed, 86 insertions(+), 4 deletions(-)
> 
> pve-docs:
> 
> Christoph Heiss (1):
>   qm: document conntrack state migration for live migrations
> 
>  qm.adoc | 18 ++++++++++++++++++
>  1 file changed, 18 insertions(+)
> 


applied, thanks!


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


      parent reply	other threads:[~2025-07-30 22:44 UTC|newest]

Thread overview: 14+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2025-07-30  9:45 [pve-devel] " Christoph Heiss
2025-07-30  9:45 ` [pve-devel] [PATCH proxmox-firewall v5 01/11] firewall: add connmark rule with VMID to all guest chains Christoph Heiss
2025-07-30  9:45 ` [pve-devel] [PATCH firewall v5 02/11] " Christoph Heiss
2025-07-30  9:45 ` [pve-devel] [PATCH firewall v5 03/11] firewall: helpers: add sub for flushing conntrack entries by mark Christoph Heiss
2025-07-30  9:45 ` [pve-devel] [PATCH qemu-server v5 04/11] qmp helpers: allow passing structured args via qemu_objectadd() Christoph Heiss
2025-07-30  9:45 ` [pve-devel] [PATCH qemu-server v5 05/11] api2: qemu: add module exposing node migration capabilities Christoph Heiss
2025-07-30  9:45 ` [pve-devel] [PATCH qemu-server v5 06/11] fix #5180: dbus-vmstate: add daemon for QEMUs dbus-vmstate interface Christoph Heiss
2025-07-30  9:45 ` [pve-devel] [PATCH qemu-server v5 07/11] fix #5180: migrate: integrate helper for live-migrating conntrack info Christoph Heiss
2025-07-30  9:45 ` [pve-devel] [PATCH qemu-server v5 08/11] migrate: flush old VM conntrack entries after successful migration Christoph Heiss
2025-07-30  9:45 ` [pve-devel] [PATCH manager v5 09/11] api2: capabilities: expose new qemu/migration endpoint Christoph Heiss
2025-07-30  9:45 ` [pve-devel] [PATCH manager v5 10/11] ui: window: Migrate: add checkbox for migrating VM conntrack state Christoph Heiss
2025-07-30  9:45 ` [pve-devel] [PATCH docs v5 11/11] qm: document conntrack state migration for live migrations Christoph Heiss
2025-07-30 23:48   ` [pve-devel] applied: " Thomas Lamprecht
2025-07-30 22:45 ` Thomas Lamprecht [this message]

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=b9cae475-6ba7-4b6b-a866-a03b27139f96@proxmox.com \
    --to=t.lamprecht@proxmox.com \
    --cc=c.heiss@proxmox.com \
    --cc=pve-devel@lists.proxmox.com \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
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