From: Peter Xu <peterx@redhat.com>
To: Steven Sistare <steven.sistare@oracle.com>
Cc: Fabiano Rosas <farosas@suse.de>,
qemu-devel@nongnu.org, Jason Wang <jasowang@redhat.com>,
"Michael S. Tsirkin" <mst@redhat.com>,
Stefano Garzarella <sgarzare@redhat.com>,
Hamza Khan <hamza.khan@nutanix.com>
Subject: Re: [RFC V2 0/8] Live update: tap and vhost
Date: Wed, 6 Aug 2025 11:51:51 -0400 [thread overview]
Message-ID: <aJN6F29tcWu-Gr8y@x1.local> (raw)
In-Reply-To: <a01be1bc-8604-4ed1-9c22-9fe4b45de595@oracle.com>
On Tue, Aug 05, 2025 at 03:53:09PM -0400, Steven Sistare wrote:
> On 8/5/2025 9:54 AM, Fabiano Rosas wrote:
> > Steve Sistare <steven.sistare@oracle.com> writes:
> >
> > > Tap and vhost devices can be preserved during cpr-transfer using
> > > traditional live migration methods, wherein the management layer
> > > creates new interfaces for the target and fiddles with 'ip link'
> > > to deactivate the old interface and activate the new.
> > >
> > > However, CPR can simply send the file descriptors to new QEMU,
> > > with no special management actions required. The user enables
> > > this behavior by specifing '-netdev tap,cpr=on'. The default
> > > is cpr=off.
> > >
> > > Steve Sistare (8):
> > > migration: stop vm earlier for cpr
> > > migration: cpr setup notifier
> > > vhost: reset vhost devices for cpr
> > > cpr: delete all fds
> > > Revert "vhost-backend: remove vhost_kernel_reset_device()"
> > > tap: common return label
> > > tap: cpr support
> > > tap: postload fix for cpr
> > >
> > > qapi/net.json | 5 +-
> > > include/hw/virtio/vhost.h | 1 +
> > > include/migration/cpr.h | 3 +-
> > > include/net/tap.h | 1 +
> > > hw/net/virtio-net.c | 20 +++++++
> > > hw/vfio/device.c | 2 +-
> > > hw/virtio/vhost-backend.c | 6 ++
> > > hw/virtio/vhost.c | 32 +++++++++++
> > > migration/cpr.c | 24 ++++++--
> > > migration/migration.c | 38 ++++++++-----
> > > net/tap-win32.c | 5 ++
> > > net/tap.c | 141 +++++++++++++++++++++++++++++++++++-----------
> > > 12 files changed, 223 insertions(+), 55 deletions(-)
> >
> > Hi Steve,
> >
> > Patches 1-2 seem to potentially interact with your arm pending
> > interrupts fix. Do we want them together?
>
> Good observation, thanks!. I may need patches 1-2 to completely close
> the dropped interrupt race. I will do more testing to verify that.
Sorry to respond late.. Could I request (for each of the patches 1 & 2)
in-code comments explaining the order of events?
For example, patch 1 moved stop_vm even earlier for CPR. It used to be
early because it wants to avoid dirty tracking: this is something I didn't
realize but remembered after re-read the doc.. Now it further needs to
avoid the notifiers. A comment above stop_vm for cpr explaining all these
order of events would be really helpful (including any necessary doc update).
--
Peter Xu
next prev parent reply other threads:[~2025-08-06 17:05 UTC|newest]
Thread overview: 28+ messages / expand[flat|nested] mbox.gz Atom feed top
2025-07-17 18:39 [RFC V2 0/8] Live update: tap and vhost Steve Sistare
2025-07-17 18:39 ` [RFC V2 1/8] migration: stop vm earlier for cpr Steve Sistare
2025-07-17 18:39 ` [RFC V2 2/8] migration: cpr setup notifier Steve Sistare
2025-07-17 18:39 ` [RFC V2 3/8] vhost: reset vhost devices for cpr Steve Sistare
2025-08-27 11:29 ` Vladimir Sementsov-Ogievskiy
2025-08-27 18:38 ` Steven Sistare
2025-07-17 18:39 ` [RFC V2 4/8] cpr: delete all fds Steve Sistare
2025-07-17 18:39 ` [RFC V2 5/8] Revert "vhost-backend: remove vhost_kernel_reset_device()" Steve Sistare
2025-08-22 18:26 ` Steven Sistare
2025-07-17 18:39 ` [RFC V2 6/8] tap: common return label Steve Sistare
2025-07-17 18:39 ` [RFC V2 7/8] tap: cpr support Steve Sistare
2025-07-17 18:39 ` [RFC V2 8/8] tap: postload fix for cpr Steve Sistare
2025-07-18 8:48 ` [RFC V2 0/8] Live update: tap and vhost Lei Yang
2025-07-18 17:31 ` Steven Sistare
2025-07-24 5:46 ` Lei Yang
2025-08-05 13:54 ` Fabiano Rosas
2025-08-05 19:53 ` Steven Sistare
2025-08-06 15:51 ` Peter Xu [this message]
2025-08-11 18:24 ` Steven Sistare
2025-08-23 21:53 ` Vladimir Sementsov-Ogievskiy
2025-08-28 15:48 ` Steven Sistare
2025-08-29 19:37 ` Steven Sistare
2025-09-01 11:44 ` Vladimir Sementsov-Ogievskiy
2025-09-02 15:33 ` Steven Sistare
2025-09-02 17:09 ` Vladimir Sementsov-Ogievskiy
2025-09-05 16:16 ` Peter Xu
-- strict thread matches above, loose matches on Subject: below --
2025-08-18 15:04 Chaney, Ben
2025-08-22 18:26 ` Steven Sistare
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=aJN6F29tcWu-Gr8y@x1.local \
--to=peterx@redhat.com \
--cc=farosas@suse.de \
--cc=hamza.khan@nutanix.com \
--cc=jasowang@redhat.com \
--cc=mst@redhat.com \
--cc=qemu-devel@nongnu.org \
--cc=sgarzare@redhat.com \
--cc=steven.sistare@oracle.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 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).