qemu-devel.nongnu.org archive mirror
 help / color / mirror / Atom feed
From: Ilya Leoshkevich <iii@linux.ibm.com>
To: "Philippe Mathieu-Daudé" <philmd@linaro.org>, qemu-devel@nongnu.org
Cc: Zach van Rijn <me@zv.io>,
	Richard Henderson <richard.henderson@linaro.org>,
	Laurent Vivier <laurent@vivier.eu>
Subject: Re: [PATCH v3 1/5] linux-user: Correct print_sockaddr() format
Date: Wed, 02 Oct 2024 09:54:07 +0200	[thread overview]
Message-ID: <476e5647ed10327c955809de9a4bafd45e8c2c1f.camel@linux.ibm.com> (raw)
In-Reply-To: <20240807124306.52903-2-philmd@linaro.org>

On Wed, 2024-08-07 at 14:43 +0200, Philippe Mathieu-Daudé wrote:
> When the %addr argument can not be accessed, a double comma
> is logged (the final qemu_log call prepend a comma). Call
> print_raw_param with last=1 to avoid the extra comma.
> Remove spurious space.
> 
> Signed-off-by: Philippe Mathieu-Daudé <philmd@linaro.org>
> ---
>  linux-user/strace.c | 4 ++--
>  1 file changed, 2 insertions(+), 2 deletions(-)
> 
> diff --git a/linux-user/strace.c b/linux-user/strace.c
> index b4d1098170..73f81e66fc 100644
> --- a/linux-user/strace.c
> +++ b/linux-user/strace.c
> @@ -434,9 +434,9 @@ print_sockaddr(abi_ulong addr, abi_long addrlen,
> int last)
>          }
>          unlock_user(sa, addr, 0);
>      } else {
> -        print_raw_param("0x"TARGET_ABI_FMT_lx, addr, 0);
> +        print_raw_param("0x"TARGET_ABI_FMT_lx, addr, 1);
>      }
> -    qemu_log(", "TARGET_ABI_FMT_ld"%s", addrlen, get_comma(last));
> +    qemu_log(","TARGET_ABI_FMT_ld"%s", addrlen, get_comma(last));
>  }
>  
>  static void

I see why this works, but it feels a bit wrong semantically: addr is
not the last argument.
Wouldn't it be better to add commas to the preceding switch's cases?

Anyhow:

Acked-by: Ilya Leoshkevich <iii@linux.ibm.com>


  reply	other threads:[~2024-10-02  8:09 UTC|newest]

Thread overview: 13+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2024-08-07 12:43 [PATCH v3 0/5] linux-user: Trace sendto/recvfrom Philippe Mathieu-Daudé
2024-08-07 12:43 ` [PATCH v3 1/5] linux-user: Correct print_sockaddr() format Philippe Mathieu-Daudé
2024-10-02  7:54   ` Ilya Leoshkevich [this message]
2024-10-05 18:05     ` Richard Henderson
2024-08-07 12:43 ` [PATCH v3 2/5] linux-user: Display sockaddr buffer as pointer Philippe Mathieu-Daudé
2024-10-02  7:43   ` Ilya Leoshkevich
2024-08-07 12:43 ` [PATCH v3 3/5] linux-user: Factor print_buf_len() out Philippe Mathieu-Daudé
2024-10-02  7:41   ` Ilya Leoshkevich
2024-08-07 12:43 ` [PATCH v3 4/5] linux-user: Add strace for sendto() Philippe Mathieu-Daudé
2024-10-02  7:40   ` Ilya Leoshkevich
2024-08-07 12:43 ` [PATCH v3 5/5] linux-user: Add strace for recvfrom() Philippe Mathieu-Daudé
2024-10-02  6:55   ` Ilya Leoshkevich
2024-10-05 18:31     ` Richard Henderson

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=476e5647ed10327c955809de9a4bafd45e8c2c1f.camel@linux.ibm.com \
    --to=iii@linux.ibm.com \
    --cc=laurent@vivier.eu \
    --cc=me@zv.io \
    --cc=philmd@linaro.org \
    --cc=qemu-devel@nongnu.org \
    --cc=richard.henderson@linaro.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).