qemu-devel.nongnu.org archive mirror
 help / color / mirror / Atom feed
* [PATCH] qga: Fix truncated output handling in guest-exec status reporting
@ 2025-07-11  2:17 Minglei Liu
  2025-07-11  8:53 ` Daniel P. Berrangé
  2025-09-03  7:08 ` Michael Tokarev
  0 siblings, 2 replies; 4+ messages in thread
From: Minglei Liu @ 2025-07-11  2:17 UTC (permalink / raw)
  To: qemu-devel; +Cc: Michael Roth, Kostiantyn Kostiuk, minglei.liu

From: "minglei.liu" <minglei.liu@smartx.com>

Signed-off-by: minglei.liu <minglei.liu@smartx.com>
---
 qga/commands.c | 6 ++++--
 1 file changed, 4 insertions(+), 2 deletions(-)

diff --git a/qga/commands.c b/qga/commands.c
index 5a5fad31f8..5f20af25d3 100644
--- a/qga/commands.c
+++ b/qga/commands.c
@@ -205,13 +205,15 @@ GuestExecStatus *qmp_guest_exec_status(int64_t pid, Error **errp)
 #endif
         if (gei->out.length > 0) {
             ges->out_data = g_base64_encode(gei->out.data, gei->out.length);
-            ges->has_out_truncated = gei->out.truncated;
+            ges->has_out_truncated = true;
+            ges->out_truncated = gei->out.truncated;
         }
         g_free(gei->out.data);
 
         if (gei->err.length > 0) {
             ges->err_data = g_base64_encode(gei->err.data, gei->err.length);
-            ges->has_err_truncated = gei->err.truncated;
+            ges->has_err_truncated = true;
+            ges->err_truncated = gei->err.truncated;
         }
         g_free(gei->err.data);
 
-- 
2.39.5 (Apple Git-154)



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

* Re: [PATCH] qga: Fix truncated output handling in guest-exec status reporting
  2025-07-11  2:17 [PATCH] qga: Fix truncated output handling in guest-exec status reporting Minglei Liu
@ 2025-07-11  8:53 ` Daniel P. Berrangé
  2025-08-27 10:51   ` Kostiantyn Kostiuk
  2025-09-03  7:08 ` Michael Tokarev
  1 sibling, 1 reply; 4+ messages in thread
From: Daniel P. Berrangé @ 2025-07-11  8:53 UTC (permalink / raw)
  To: Minglei Liu; +Cc: qemu-devel, Michael Roth, Kostiantyn Kostiuk

On Fri, Jul 11, 2025 at 10:17:14AM +0800, Minglei Liu wrote:
> From: "minglei.liu" <minglei.liu@smartx.com>
>

Fixes: a1853dca743

Broken since day 1 :-(

> Signed-off-by: minglei.liu <minglei.liu@smartx.com>
> ---
>  qga/commands.c | 6 ++++--
>  1 file changed, 4 insertions(+), 2 deletions(-)

Reviewed-by: Daniel P. Berrangé <berrange@redhat.com>


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 :|



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

* Re: [PATCH] qga: Fix truncated output handling in guest-exec status reporting
  2025-07-11  8:53 ` Daniel P. Berrangé
@ 2025-08-27 10:51   ` Kostiantyn Kostiuk
  0 siblings, 0 replies; 4+ messages in thread
From: Kostiantyn Kostiuk @ 2025-08-27 10:51 UTC (permalink / raw)
  To: Daniel P. Berrangé; +Cc: Minglei Liu, qemu-devel, Michael Roth

[-- Attachment #1: Type: text/plain, Size: 857 bytes --]

Reviewed-by: Kostiantyn Kostiuk <kkostiuk@redhat.com>

Best Regards,
Kostiantyn Kostiuk.


On Fri, Jul 11, 2025 at 11:53 AM Daniel P. Berrangé <berrange@redhat.com>
wrote:

> On Fri, Jul 11, 2025 at 10:17:14AM +0800, Minglei Liu wrote:
> > From: "minglei.liu" <minglei.liu@smartx.com>
> >
>
> Fixes: a1853dca743
>
> Broken since day 1 :-(
>
> > Signed-off-by: minglei.liu <minglei.liu@smartx.com>
> > ---
> >  qga/commands.c | 6 ++++--
> >  1 file changed, 4 insertions(+), 2 deletions(-)
>
> Reviewed-by: Daniel P. Berrangé <berrange@redhat.com>
>
>
> 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 :|
>
>

[-- Attachment #2: Type: text/html, Size: 2103 bytes --]

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

* Re: [PATCH] qga: Fix truncated output handling in guest-exec status reporting
  2025-07-11  2:17 [PATCH] qga: Fix truncated output handling in guest-exec status reporting Minglei Liu
  2025-07-11  8:53 ` Daniel P. Berrangé
@ 2025-09-03  7:08 ` Michael Tokarev
  1 sibling, 0 replies; 4+ messages in thread
From: Michael Tokarev @ 2025-09-03  7:08 UTC (permalink / raw)
  To: Minglei Liu, qemu-devel
  Cc: Michael Roth, Kostiantyn Kostiuk, qemu-stable, Daniel Xu

On 11.07.2025 05:17, Minglei Liu wrote:
> From: "minglei.liu" <minglei.liu@smartx.com>
> 
> Signed-off-by: minglei.liu <minglei.liu@smartx.com>
> ---
>   qga/commands.c | 6 ++++--
>   1 file changed, 4 insertions(+), 2 deletions(-)
> 
> diff --git a/qga/commands.c b/qga/commands.c
> index 5a5fad31f8..5f20af25d3 100644
> --- a/qga/commands.c
> +++ b/qga/commands.c
> @@ -205,13 +205,15 @@ GuestExecStatus *qmp_guest_exec_status(int64_t pid, Error **errp)
>   #endif
>           if (gei->out.length > 0) {
>               ges->out_data = g_base64_encode(gei->out.data, gei->out.length);
> -            ges->has_out_truncated = gei->out.truncated;
> +            ges->has_out_truncated = true;
> +            ges->out_truncated = gei->out.truncated;
>           }
>           g_free(gei->out.data);
>   
>           if (gei->err.length > 0) {
>               ges->err_data = g_base64_encode(gei->err.data, gei->err.length);
> -            ges->has_err_truncated = gei->err.truncated;
> +            ges->has_err_truncated = true;
> +            ges->err_truncated = gei->err.truncated;
>           }
>           g_free(gei->err.data);
>   

I'm picking this up for all current active stable releases as well
(with d6f67b83b81b "qga: Fix memory leak when output stream is unused"
before it for 7.2).

Please let me know if I shouldn't

Thanks,

/mjt


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

end of thread, other threads:[~2025-09-03  7:08 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2025-07-11  2:17 [PATCH] qga: Fix truncated output handling in guest-exec status reporting Minglei Liu
2025-07-11  8:53 ` Daniel P. Berrangé
2025-08-27 10:51   ` Kostiantyn Kostiuk
2025-09-03  7:08 ` Michael Tokarev

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).