qemu-devel.nongnu.org archive mirror
 help / color / mirror / Atom feed
From: "Philippe Mathieu-Daudé" <philmd@linaro.org>
To: qemu-devel@nongnu.org
Cc: "Richard Henderson" <richard.henderson@linaro.org>,
	"Philippe Mathieu-Daudé" <philmd@linaro.org>
Subject: [PULL 09/32] util/hexdump: Remove b parameter from qemu_hexdump_line
Date: Tue,  4 Jun 2024 11:55:45 +0200	[thread overview]
Message-ID: <20240604095609.12285-10-philmd@linaro.org> (raw)
In-Reply-To: <20240604095609.12285-1-philmd@linaro.org>

From: Richard Henderson <richard.henderson@linaro.org>

Require that the caller output the offset and increment bufptr.
Use QEMU_HEXDUMP_LINE_BYTES in vhost_vdpa_dump_config instead
of raw integer.

Signed-off-by: Richard Henderson <richard.henderson@linaro.org>
Reviewed-by: Philippe Mathieu-Daudé <philmd@linaro.org>
Message-ID: <20240412073346.458116-2-richard.henderson@linaro.org>
Signed-off-by: Philippe Mathieu-Daudé <philmd@linaro.org>
---
 include/qemu/cutils.h  |  2 +-
 hw/virtio/vhost-vdpa.c |  4 ++--
 util/hexdump.c         | 13 ++++++-------
 hw/virtio/trace-events |  2 +-
 4 files changed, 10 insertions(+), 11 deletions(-)

diff --git a/include/qemu/cutils.h b/include/qemu/cutils.h
index 741dade7cf..d7715f7a33 100644
--- a/include/qemu/cutils.h
+++ b/include/qemu/cutils.h
@@ -287,7 +287,7 @@ int parse_debug_env(const char *name, int max, int initial);
  */
 #define QEMU_HEXDUMP_LINE_BYTES 16 /* Number of bytes to dump */
 #define QEMU_HEXDUMP_LINE_LEN 75   /* Number of characters in line */
-void qemu_hexdump_line(char *line, unsigned int b, const void *bufptr,
+void qemu_hexdump_line(char *line, const void *bufptr,
                        unsigned int len, bool ascii);
 
 /*
diff --git a/hw/virtio/vhost-vdpa.c b/hw/virtio/vhost-vdpa.c
index ed99ab8745..f3a86c1a8c 100644
--- a/hw/virtio/vhost-vdpa.c
+++ b/hw/virtio/vhost-vdpa.c
@@ -949,8 +949,8 @@ static void vhost_vdpa_dump_config(struct vhost_dev *dev, const uint8_t *config,
 
     for (b = 0; b < config_len; b += 16) {
         len = config_len - b;
-        qemu_hexdump_line(line, b, config, len, false);
-        trace_vhost_vdpa_dump_config(dev, line);
+        qemu_hexdump_line(line, config + b, len, false);
+        trace_vhost_vdpa_dump_config(dev, b, line);
     }
 }
 
diff --git a/util/hexdump.c b/util/hexdump.c
index 9921114b3c..7324e7b126 100644
--- a/util/hexdump.c
+++ b/util/hexdump.c
@@ -16,7 +16,7 @@
 #include "qemu/osdep.h"
 #include "qemu/cutils.h"
 
-void qemu_hexdump_line(char *line, unsigned int b, const void *bufptr,
+void qemu_hexdump_line(char *line, const void *bufptr,
                        unsigned int len, bool ascii)
 {
     const char *buf = bufptr;
@@ -26,13 +26,12 @@ void qemu_hexdump_line(char *line, unsigned int b, const void *bufptr,
         len = QEMU_HEXDUMP_LINE_BYTES;
     }
 
-    line += snprintf(line, 6, "%04x:", b);
     for (i = 0; i < QEMU_HEXDUMP_LINE_BYTES; i++) {
-        if ((i % 4) == 0) {
+        if (i != 0 && (i % 4) == 0) {
             *line++ = ' ';
         }
         if (i < len) {
-            line += sprintf(line, " %02x", (unsigned char)buf[b + i]);
+            line += sprintf(line, " %02x", (unsigned char)buf[i]);
         } else {
             line += sprintf(line, "   ");
         }
@@ -40,7 +39,7 @@ void qemu_hexdump_line(char *line, unsigned int b, const void *bufptr,
     if (ascii) {
         *line++ = ' ';
         for (i = 0; i < len; i++) {
-            c = buf[b + i];
+            c = buf[i];
             if (c < ' ' || c > '~') {
                 c = '.';
             }
@@ -58,8 +57,8 @@ void qemu_hexdump(FILE *fp, const char *prefix,
 
     for (b = 0; b < size; b += QEMU_HEXDUMP_LINE_BYTES) {
         len = size - b;
-        qemu_hexdump_line(line, b, bufptr, len, true);
-        fprintf(fp, "%s: %s\n", prefix, line);
+        qemu_hexdump_line(line, bufptr + b, len, true);
+        fprintf(fp, "%s: %04x: %s\n", prefix, b, line);
     }
 
 }
diff --git a/hw/virtio/trace-events b/hw/virtio/trace-events
index 96632fd026..3cf84e04a7 100644
--- a/hw/virtio/trace-events
+++ b/hw/virtio/trace-events
@@ -50,7 +50,7 @@ vhost_vdpa_get_device_id(void *dev, uint32_t device_id) "dev: %p device_id %"PRI
 vhost_vdpa_reset_device(void *dev) "dev: %p"
 vhost_vdpa_get_vq_index(void *dev, int idx, int vq_idx) "dev: %p idx: %d vq idx: %d"
 vhost_vdpa_set_vring_enable_one(void *dev, unsigned i, int enable, int r) "dev: %p, idx: %u, enable: %u, r: %d"
-vhost_vdpa_dump_config(void *dev, const char *line) "dev: %p %s"
+vhost_vdpa_dump_config(void *dev, unsigned ofs, const char *line) "dev: %p 0x%04x: %s"
 vhost_vdpa_set_config(void *dev, uint32_t offset, uint32_t size, uint32_t flags) "dev: %p offset: %"PRIu32" size: %"PRIu32" flags: 0x%"PRIx32
 vhost_vdpa_get_config(void *dev, void *config, uint32_t config_len) "dev: %p config: %p config_len: %"PRIu32
 vhost_vdpa_suspend(void *dev) "dev: %p"
-- 
2.41.0



  parent reply	other threads:[~2024-06-04  9:58 UTC|newest]

Thread overview: 34+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2024-06-04  9:55 [PULL 00/32] Misc HW / accel patches Philippe Mathieu-Daudé
2024-06-04  9:55 ` [PULL 01/32] target/riscv: Remove unused 'instmap.h' header in translate.c Philippe Mathieu-Daudé
2024-06-04  9:55 ` [PULL 02/32] target/riscv: Restrict 'rv128' machine to TCG accelerator Philippe Mathieu-Daudé
2024-06-04  9:55 ` [PULL 03/32] target/riscv: Restrict riscv_cpu_do_interrupt() to sysemu Philippe Mathieu-Daudé
2024-06-04  9:55 ` [PULL 04/32] target/mips: Remove unused 'hw/misc/mips_itu.h' header Philippe Mathieu-Daudé
2024-06-04  9:55 ` [PULL 05/32] target/arm: Replace sprintf() by snprintf() Philippe Mathieu-Daudé
2024-06-04  9:55 ` [PULL 06/32] target/i386/kvm: Improve KVM_EXIT_NOTIFY warnings Philippe Mathieu-Daudé
2024-06-04  9:55 ` [PULL 07/32] disas/m68k: Replace sprintf() by snprintf() Philippe Mathieu-Daudé
2024-06-04  9:55 ` [PULL 08/32] disas/microblaze: " Philippe Mathieu-Daudé
2024-06-04  9:55 ` Philippe Mathieu-Daudé [this message]
2024-06-04  9:55 ` [PULL 10/32] util/hexdump: Remove ascii parameter from qemu_hexdump_line Philippe Mathieu-Daudé
2024-06-04  9:55 ` [PULL 11/32] MAINTAINERS: drop usb maintainership Philippe Mathieu-Daudé
2024-06-04  9:55 ` [PULL 12/32] system/runstate: Remove unused 'qemu/plugin.h' header Philippe Mathieu-Daudé
2024-06-04  9:55 ` [PULL 13/32] accel/tcg: Move common declarations to 'internal-common.h' Philippe Mathieu-Daudé
2024-06-04  9:55 ` [PULL 14/32] accel/kvm: Fix two lines with hard-coded tabs Philippe Mathieu-Daudé
2024-06-04  9:55 ` [PULL 15/32] hw/core: expand on the alignment of CPUState Philippe Mathieu-Daudé
2024-06-04  9:55 ` [PULL 16/32] cpu: move Qemu[Thread|Cond] setup into common code Philippe Mathieu-Daudé
2024-06-04  9:55 ` [PULL 17/32] cpu-target: don't set cpu->thread_id to bogus value Philippe Mathieu-Daudé
2024-06-04  9:55 ` [PULL 18/32] plugins: remove special casing for cpu->realized Philippe Mathieu-Daudé
2024-06-04  9:55 ` [PULL 19/32] core/cpu-common: initialise plugin state before thread creation Philippe Mathieu-Daudé
2024-06-04  9:55 ` [PULL 20/32] xen: Add xen_mr_is_memory() Philippe Mathieu-Daudé
2024-06-04  9:55 ` [PULL 21/32] physmem: Always pass offset + addr to xen_map_cache Philippe Mathieu-Daudé
2024-06-04  9:55 ` [PULL 22/32] physmem: Replace check for RAMBlock offset 0 with xen_mr_is_memory Philippe Mathieu-Daudé
2024-06-04  9:55 ` [PULL 23/32] hw/xen: Constify XenLegacyDevice::XenDevOps Philippe Mathieu-Daudé
2024-06-04  9:56 ` [PULL 24/32] hw/xen: Constify xenstore_be::XenDevOps Philippe Mathieu-Daudé
2024-06-04  9:56 ` [PULL 25/32] hw/xen: Make XenDevOps structures const Philippe Mathieu-Daudé
2024-06-04  9:56 ` [PULL 26/32] hw/xen: Register framebuffer backend via xen_backend_init() Philippe Mathieu-Daudé
2024-06-04  9:56 ` [PULL 27/32] hw/misc/debugexit: use runstate API instead of plain exit() Philippe Mathieu-Daudé
2024-06-04  9:56 ` [PULL 28/32] hw/dma/xlnx_dpdma: Read descriptor into buffer, not into pointer-to-buffer Philippe Mathieu-Daudé
2024-06-04  9:56 ` [PULL 29/32] hw/acpi: Remove the deprecated QAPI MEM_UNPLUG_ERROR event Philippe Mathieu-Daudé
2024-06-04  9:56 ` [PULL 30/32] trace: Remove deprecated 'vcpu' field from QMP trace events Philippe Mathieu-Daudé
2024-06-04  9:56 ` [PULL 31/32] qga: Remove deprecated 'blacklist' argument / config key Philippe Mathieu-Daudé
2024-06-04  9:56 ` [PULL 32/32] usb: add config options for the hub and hid devices Philippe Mathieu-Daudé
2024-06-04 21:25 ` [PULL 00/32] Misc HW / accel patches 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=20240604095609.12285-10-philmd@linaro.org \
    --to=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).