From: Laurent Vivier <laurent@vivier.eu>
To: qemu-devel@nongnu.org
Cc: "Michael Tokarev" <mjt@tls.msk.ru>,
"Laurent Vivier" <laurent@vivier.eu>,
"Jason Wang" <jasowang@redhat.com>,
qemu-arm@nongnu.org, "Michael Walle" <michael@walle.cc>,
"Laurent Vivier" <lvivier@redhat.com>,
"Michael S. Tsirkin" <mst@redhat.com>,
"Cleber Rosa" <crosa@redhat.com>,
"Igor Mammedov" <imammedo@redhat.com>,
xen-devel@lists.xenproject.org,
"Aleksandar Markovic" <amarkovic@wavecomp.com>,
"Markus Armbruster" <armbru@redhat.com>,
"Max Reitz" <mreitz@redhat.com>, "Fam Zheng" <famz@redhat.com>,
"Paolo Bonzini" <pbonzini@redhat.com>,
"Alex Bennée" <alex.bennee@linaro.org>,
"Anthony Perard" <anthony.perard@citrix.com>,
"Aurelien Jarno" <aurelien@aurel32.net>,
"Kevin Wolf" <kwolf@redhat.com>,
qemu-block@nongnu.org,
"Stefano Stabellini" <sstabellini@kernel.org>,
"Gerd Hoffmann" <kraxel@redhat.com>,
"Marcel Apfelbaum" <marcel.apfelbaum@gmail.com>,
"Philippe Mathieu-Daudé" <f4bug@amsat.org>,
"Thomas Huth" <thuth@redhat.com>,
"Peter Maydell" <peter.maydell@linaro.org>,
qemu-trivial@nongnu.org, "Riku Voipio" <riku.voipio@iki.fi>,
"Eduardo Habkost" <ehabkost@redhat.com>
Subject: [Qemu-devel] [PULL 19/20] milkymist-minimac2: Use qemu_log_mask(GUEST_ERROR) instead of error_report
Date: Fri, 26 Oct 2018 17:31:24 +0200 [thread overview]
Message-ID: <20181026153125.24738-20-laurent@vivier.eu> (raw)
In-Reply-To: <20181026153125.24738-1-laurent@vivier.eu>
From: Philippe Mathieu-Daudé <f4bug@amsat.org>
qemu_log_mask(GUEST_ERROR) is more appropriate:
$ qemu -d help
Log items (comma separated):
guest_errors log when the guest OS does something invalid (eg accessing a non-existent register)
Signed-off-by: Philippe Mathieu-Daudé <f4bug@amsat.org>
Acked-by: Michael Walle <michael@walle.cc>
Message-Id: <20180702014022.12395-1-f4bug@amsat.org>
Signed-off-by: Laurent Vivier <laurent@vivier.eu>
---
hw/net/milkymist-minimac2.c | 14 +++++++++-----
1 file changed, 9 insertions(+), 5 deletions(-)
diff --git a/hw/net/milkymist-minimac2.c b/hw/net/milkymist-minimac2.c
index 3eaa19dfde..322fb77e46 100644
--- a/hw/net/milkymist-minimac2.c
+++ b/hw/net/milkymist-minimac2.c
@@ -30,6 +30,7 @@
#include "hw/sysbus.h"
#include "trace.h"
#include "net/net.h"
+#include "qemu/log.h"
#include "qemu/error-report.h"
#include <zlib.h>
@@ -214,7 +215,8 @@ static size_t assemble_frame(uint8_t *buf, size_t size,
uint32_t crc;
if (size < payload_size + 12) {
- error_report("milkymist_minimac2: received too big ethernet frame");
+ qemu_log_mask(LOG_GUEST_ERROR, "milkymist_minimac2: frame too big "
+ "(%zd bytes)\n", payload_size);
return 0;
}
@@ -347,8 +349,9 @@ minimac2_read(void *opaque, hwaddr addr, unsigned size)
break;
default:
- error_report("milkymist_minimac2: read access to unknown register 0x"
- TARGET_FMT_plx, addr << 2);
+ qemu_log_mask(LOG_GUEST_ERROR,
+ "milkymist_minimac2_rd%d: 0x%" HWADDR_PRIx "\n",
+ size, addr << 2);
break;
}
@@ -413,8 +416,9 @@ minimac2_write(void *opaque, hwaddr addr, uint64_t value,
break;
default:
- error_report("milkymist_minimac2: write access to unknown register 0x"
- TARGET_FMT_plx, addr << 2);
+ qemu_log_mask(LOG_GUEST_ERROR,
+ "milkymist_minimac2_wr%d: 0x%" HWADDR_PRIx " = 0x%lx\n",
+ size, addr << 2, value);
break;
}
}
--
2.17.2
next prev parent reply other threads:[~2018-10-26 15:46 UTC|newest]
Thread overview: 22+ messages / expand[flat|nested] mbox.gz Atom feed top
2018-10-26 15:31 [Qemu-devel] [PULL 00/20] Trivial patches patches Laurent Vivier
2018-10-26 15:31 ` [Qemu-devel] [PULL 01/20] configs/alpha: Remove unused CONFIG_PARALLEL_ISA switch Laurent Vivier
2018-10-26 15:31 ` [Qemu-devel] [PULL 02/20] vga_int: remove unused function protype Laurent Vivier
2018-10-26 15:31 ` [Qemu-devel] [PULL 03/20] memory.h: fix typos in comments Laurent Vivier
2018-10-26 15:31 ` [Qemu-devel] [PULL 04/20] tests/tcg/README: fix location for lm32 tests Laurent Vivier
2018-10-26 15:31 ` [Qemu-devel] [PULL 05/20] qemu-iotests: fix filename containing checks Laurent Vivier
2018-10-26 15:31 ` [Qemu-devel] [PULL 06/20] docs/devel/testing.rst: add missing newlines after code block Laurent Vivier
2018-10-26 15:31 ` [Qemu-devel] [PULL 07/20] scripts/decodetree.py: remove unused imports Laurent Vivier
2018-10-26 15:31 ` [Qemu-devel] [PULL 08/20] scripts/qemu.py: remove trailing quotes on docstring Laurent Vivier
2018-10-26 15:31 ` [Qemu-devel] [PULL 09/20] qemu-iotests: make 218 executable Laurent Vivier
2018-10-26 15:31 ` [Qemu-devel] [PULL 10/20] linux-user: fix comment s/atomic_write/atomic_set/ Laurent Vivier
2018-10-26 15:31 ` [Qemu-devel] [PULL 11/20] cpu.h: fix a typo in comment Laurent Vivier
2018-10-26 15:31 ` [Qemu-devel] [PULL 12/20] tests: Fix typos in comments and help message (found by codespell) Laurent Vivier
2018-10-26 15:31 ` [Qemu-devel] [PULL 13/20] configure: Support pkg-config for zlib Laurent Vivier
2018-10-26 15:31 ` [Qemu-devel] [PULL 14/20] qobject: Catch another straggler for use of qdict_put_str() Laurent Vivier
2018-10-26 15:31 ` [Qemu-devel] [PULL 15/20] xen: Use the PCI_DEVICE macro Laurent Vivier
2018-10-26 15:31 ` [Qemu-devel] [PULL 16/20] tests/bios-tables-test: Remove an useless cast Laurent Vivier
2018-10-26 15:31 ` [Qemu-devel] [PULL 17/20] hw/pci-host: Remove useless parenthesis around DIV_ROUND_UP macro Laurent Vivier
2018-10-26 15:31 ` [Qemu-devel] [PULL 18/20] hw/intc/gicv3: " Laurent Vivier
2018-10-26 15:31 ` Laurent Vivier [this message]
2018-10-26 15:31 ` [Qemu-devel] [PULL 20/20] ppc: move at24c to its own CONFIG_ symbol Laurent Vivier
2018-10-29 11:54 ` [Qemu-devel] [PULL 00/20] Trivial patches patches Peter Maydell
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=20181026153125.24738-20-laurent@vivier.eu \
--to=laurent@vivier.eu \
--cc=alex.bennee@linaro.org \
--cc=amarkovic@wavecomp.com \
--cc=anthony.perard@citrix.com \
--cc=armbru@redhat.com \
--cc=aurelien@aurel32.net \
--cc=crosa@redhat.com \
--cc=ehabkost@redhat.com \
--cc=f4bug@amsat.org \
--cc=famz@redhat.com \
--cc=imammedo@redhat.com \
--cc=jasowang@redhat.com \
--cc=kraxel@redhat.com \
--cc=kwolf@redhat.com \
--cc=lvivier@redhat.com \
--cc=marcel.apfelbaum@gmail.com \
--cc=michael@walle.cc \
--cc=mjt@tls.msk.ru \
--cc=mreitz@redhat.com \
--cc=mst@redhat.com \
--cc=pbonzini@redhat.com \
--cc=peter.maydell@linaro.org \
--cc=qemu-arm@nongnu.org \
--cc=qemu-block@nongnu.org \
--cc=qemu-devel@nongnu.org \
--cc=qemu-trivial@nongnu.org \
--cc=riku.voipio@iki.fi \
--cc=sstabellini@kernel.org \
--cc=thuth@redhat.com \
--cc=xen-devel@lists.xenproject.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).