From: "Daniel P. Berrangé" <berrange@redhat.com>
To: marcandre.lureau@redhat.com
Cc: qemu-devel@nongnu.org, kraxel@redhat.com
Subject: Re: [PATCH for-10.1 00/10] Support vdagent migration
Date: Tue, 11 Mar 2025 16:12:07 +0000 [thread overview]
Message-ID: <Z9Bg157qSKt2v74Z@redhat.com> (raw)
In-Reply-To: <20250311155932.1472092-1-marcandre.lureau@redhat.com>
On Tue, Mar 11, 2025 at 07:59:22PM +0400, marcandre.lureau@redhat.com wrote:
> From: Marc-André Lureau <marcandre.lureau@redhat.com>
>
>
> iQJQBAABCAA6FiEEh6m9kz+HxgbSdvYt2ujhCXWWnOUFAmfQXbMcHG1hcmNhbmRy
> ZS5sdXJlYXVAcmVkaGF0LmNvbQAKCRDa6OEJdZac5bmLD/49TJdk8vSnG/G53f3Z
> UdUGdDiv98lAr/1wPZvmLPGfxiVLrVQK9Rarjnq9+dzmjoJC+w8THyPIvlvlKAQO
> aNSe5LV2lcYFLZwJqXQdGHTEWWZX3BmXroSFY06F9znX4lrNSg/cxLaI+Lt+dbEt
> BA9IIMzGYB+zhkgJh86Yji1Ioz29qwMgb4etf4OtP3PqT7/djWxxdlYLmyqN7D13
> seHAkvhaA7sqglLcfUv0MjrNA1Yxg3QQmbmiErpyaHo9kQ2AuV49THZl5/Pe3WR5
> FJAeO83G8hdxdqFuDvnXB0ID2klqWYkZTJsTD75F1hU1yqszkVt8k4mUWubTIDNm
> VEFKGz/S+xR2rO0RGgGzMPzEm0FSPbLq1+U2ETRf3xBns0Jbqe6njHeLGAzmOx9p
> 3F8fkM4mzIrs3oOU/e7dlxOl9N6uQhVfJW6G+9QMLPLveIpNR6CGphbgHuMK8PPL
> vZ1WNrGa/xoHvqQi2FvIJJrnKYYBJDXQW1edM+apDgO9jBSmiO5XlKZjeNHwgZ6J
> 0sNmJUKCmk2SPGtFHdpdRfjfYfN2eR07eTVnVgstpHCUZi0nRz+4A6yq4k0SQLQH
> ZWsaq6cdZyfNOOdSHaLfI/2/36eiLpVCAuwn+AjK+XvPR6mQc9rwebV8N5nXLEZ8
> OFcig1i00RhHBRJFPrOjWIFIQg==
> =iTg5
> -----END PGP SIGNATURE-----
Huh ? I presume there should have been a cover letter here
instead of the tail end of a pgp signature....
>
> Marc-André Lureau (10):
> ui/gtk: warn if setting the clipboard failed
> ui/clipboard: use int for selection field
> ui/clipboard: split out QemuClipboardContent
> ui/clipboard: add vmstate_cbinfo
> ui/clipboard: delay clipboard update when not running
> ui/vdagent: replace Buffer with GByteArray
> ui/vdagent: keep "connected" state
> ui/vdagent: factor out clipboard peer registration
> ui/vdagent: add migration support
> ui/vdagent: remove migration blocker
>
> include/ui/clipboard.h | 31 +++++--
> ui/clipboard.c | 66 +++++++++++++-
> ui/gtk-clipboard.c | 13 ++-
> ui/vdagent.c | 202 +++++++++++++++++++++++++++++++++++------
> 4 files changed, 268 insertions(+), 44 deletions(-)
>
> --
> 2.47.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-03-11 16:16 UTC|newest]
Thread overview: 26+ messages / expand[flat|nested] mbox.gz Atom feed top
2025-03-11 15:59 [PATCH for-10.1 00/10] Support vdagent migration marcandre.lureau
2025-03-11 15:59 ` [PATCH for-10.1 01/10] ui/gtk: warn if setting the clipboard failed marcandre.lureau
2025-05-09 11:24 ` Daniel P. Berrangé
2025-03-11 15:59 ` [PATCH for-10.1 02/10] ui/clipboard: use int for selection field marcandre.lureau
2025-05-09 11:25 ` Daniel P. Berrangé
2025-03-11 15:59 ` [PATCH for-10.1 03/10] ui/clipboard: split out QemuClipboardContent marcandre.lureau
2025-05-09 11:25 ` Daniel P. Berrangé
2025-03-11 15:59 ` [PATCH for-10.1 04/10] ui/clipboard: add vmstate_cbinfo marcandre.lureau
2025-05-09 11:26 ` Daniel P. Berrangé
2025-03-11 15:59 ` [PATCH for-10.1 05/10] ui/clipboard: delay clipboard update when not running marcandre.lureau
2025-05-09 11:29 ` Daniel P. Berrangé
2025-03-11 15:59 ` [PATCH for-10.1 06/10] ui/vdagent: replace Buffer with GByteArray marcandre.lureau
2025-05-09 11:30 ` Daniel P. Berrangé
2025-05-09 14:49 ` Marc-André Lureau
2025-03-11 15:59 ` [PATCH for-10.1 07/10] ui/vdagent: keep "connected" state marcandre.lureau
2025-05-09 11:31 ` Daniel P. Berrangé
2025-03-11 15:59 ` [PATCH for-10.1 08/10] ui/vdagent: factor out clipboard peer registration marcandre.lureau
2025-05-09 11:32 ` Daniel P. Berrangé
2025-03-11 15:59 ` [PATCH for-10.1 09/10] ui/vdagent: add migration support marcandre.lureau
2025-05-09 11:38 ` Daniel P. Berrangé
2025-03-11 15:59 ` [PATCH for-10.1 10/10] ui/vdagent: remove migration blocker marcandre.lureau
2025-03-20 8:38 ` Prasad Pandit
2025-03-20 9:05 ` Marc-André Lureau
2025-05-09 11:39 ` Daniel P. Berrangé
2025-03-11 16:12 ` Daniel P. Berrangé [this message]
2025-05-06 10:38 ` [PATCH for-10.1 00/10] Support vdagent migration Marc-André Lureau
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=Z9Bg157qSKt2v74Z@redhat.com \
--to=berrange@redhat.com \
--cc=kraxel@redhat.com \
--cc=marcandre.lureau@redhat.com \
--cc=qemu-devel@nongnu.org \
/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).