From: "Daniel P. Berrangé" <berrange@redhat.com>
To: Jaehoon Kim <jhkim@linux.ibm.com>
Cc: qemu-devel@nongnu.org, jjherne@linux.ibm.com,
steven.sistare@oracle.com, peterx@redhat.com, farosas@suse.de,
lvivier@redhat.com, pbonzini@redhat.com
Subject: Re: [PATCH v4 2/2] migration: Support fd-based socket address in cpr_transfer_input
Date: Thu, 12 Jun 2025 14:41:15 +0100 [thread overview]
Message-ID: <aErY-yZy9qbVpdcU@redhat.com> (raw)
In-Reply-To: <20250611205610.147008-3-jhkim@linux.ibm.com>
On Wed, Jun 11, 2025 at 03:56:10PM -0500, Jaehoon Kim wrote:
> Extend cpr_transfer_input to handle SOCKET_ADDRESS_TYPE_FD alongside
> SOCKET_ADDRESS_TYPE_UNIX. This change supports the use of pre-listened
> socket file descriptors for cpr migration channels.
>
> This change is particularly useful in qtest environments, where the
> socket may be created externally and passed via fd.
>
> Reviewed-by: Jason J. Herne <jjherne@linux.ibm.com>
> Reviewed-by: Steve Sistare <steven.sistare@oracle.com>
> Signed-off-by: Jaehoon Kim <jhkim@linux.ibm.com>
> ---
> migration/cpr-transfer.c | 7 +++++--
> 1 file changed, 5 insertions(+), 2 deletions(-)
This patch *MUST* be first in the series, otherwise 'git bisect'
will hit test failures on the former patch.
>
> diff --git a/migration/cpr-transfer.c b/migration/cpr-transfer.c
> index e1f140359c..00371d17c3 100644
> --- a/migration/cpr-transfer.c
> +++ b/migration/cpr-transfer.c
> @@ -46,7 +46,8 @@ QEMUFile *cpr_transfer_input(MigrationChannel *channel, Error **errp)
> MigrationAddress *addr = channel->addr;
>
> if (addr->transport == MIGRATION_ADDRESS_TYPE_SOCKET &&
> - addr->u.socket.type == SOCKET_ADDRESS_TYPE_UNIX) {
> + (addr->u.socket.type == SOCKET_ADDRESS_TYPE_UNIX ||
> + addr->u.socket.type == SOCKET_ADDRESS_TYPE_FD)) {
>
> g_autoptr(QIOChannelSocket) sioc = NULL;
> SocketAddress *saddr = &addr->u.socket;
> @@ -60,7 +61,9 @@ QEMUFile *cpr_transfer_input(MigrationChannel *channel, Error **errp)
>
> sioc = qio_net_listener_wait_client(listener);
> ioc = QIO_CHANNEL(sioc);
> - trace_cpr_transfer_input(addr->u.socket.u.q_unix.path);
> + trace_cpr_transfer_input(
> + addr->u.socket.type == SOCKET_ADDRESS_TYPE_UNIX ?
> + addr->u.socket.u.q_unix.path : addr->u.socket.u.fd.str);
> qio_channel_set_name(ioc, "cpr-in");
> return qemu_file_new_input(ioc);
>
> --
> 2.49.0
>
>
With regards,
Daniel
--
|: https://berrange.com -o- https://www.flickr.com/photos/dberrange :|
|: https://libvirt.org -o- https://fstop138.berrange.com :|
|: https://entangle-photo.org -o- https://www.instagram.com/dberrange :|
next prev parent reply other threads:[~2025-06-12 13:42 UTC|newest]
Thread overview: 6+ messages / expand[flat|nested] mbox.gz Atom feed top
2025-06-11 20:56 [PATCH v4 0/2] migration: Support socket fd for CPR and fix Jaehoon Kim
2025-06-11 20:56 ` [PATCH v4 1/2] tests/migration: Setup pre-listened cpr.sock to remove race-condition Jaehoon Kim
2025-06-12 13:33 ` Steven Sistare
2025-06-11 20:56 ` [PATCH v4 2/2] migration: Support fd-based socket address in cpr_transfer_input Jaehoon Kim
2025-06-12 13:41 ` Daniel P. Berrangé [this message]
2025-06-12 14:37 ` Peter Xu
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=aErY-yZy9qbVpdcU@redhat.com \
--to=berrange@redhat.com \
--cc=farosas@suse.de \
--cc=jhkim@linux.ibm.com \
--cc=jjherne@linux.ibm.com \
--cc=lvivier@redhat.com \
--cc=pbonzini@redhat.com \
--cc=peterx@redhat.com \
--cc=qemu-devel@nongnu.org \
--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).