[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[PATCH v2 01/37] semihosting: add guest_error logging for failed opens
From: |
Alex Bennée |
Subject: |
[PATCH v2 01/37] semihosting: add guest_error logging for failed opens |
Date: |
Tue, 14 Jan 2025 11:37:45 +0000 |
This usually indicates the semihosting call was expecting to find
something but didn't.
Message-Id: <20250109170619.2271193-2-alex.bennee@linaro.org>
Reviewed-by: Pierrick Bouvier <pierrick.bouvier@linaro.org>
Signed-off-by: Alex Bennée <alex.bennee@linaro.org>
---
semihosting/syscalls.c | 2 ++
1 file changed, 2 insertions(+)
diff --git a/semihosting/syscalls.c b/semihosting/syscalls.c
index c40348f996..f6451d9bb0 100644
--- a/semihosting/syscalls.c
+++ b/semihosting/syscalls.c
@@ -7,6 +7,7 @@
*/
#include "qemu/osdep.h"
+#include "qemu/log.h"
#include "cpu.h"
#include "gdbstub/syscalls.h"
#include "semihosting/guestfd.h"
@@ -287,6 +288,7 @@ static void host_open(CPUState *cs, gdb_syscall_complete_cb
complete,
ret = open(p, host_flags, mode);
if (ret < 0) {
+ qemu_log_mask(LOG_GUEST_ERROR, "%s: failed to open %s\n", __func__, p);
complete(cs, -1, errno);
} else {
int guestfd = alloc_guestfd();
--
2.39.5
- [PATCH v2 00/37] maintainer updates for jan '25 (semihosting, gdb, plugins, docs) pre-PR, Alex Bennée, 2025/01/14
- [PATCH v2 04/37] semihosting/uaccess: Include missing 'exec/cpu-all.h' header, Alex Bennée, 2025/01/14
- [PATCH v2 03/37] semihosting/syscalls: Include missing 'exec/cpu-defs.h' header, Alex Bennée, 2025/01/14
- [PATCH v2 02/37] semihosting/uaccess: Briefly document returned values, Alex Bennée, 2025/01/14
- [PATCH v2 01/37] semihosting: add guest_error logging for failed opens,
Alex Bennée <=
- [PATCH v2 07/37] semihosting/meson: Build config.o and console.o once, Alex Bennée, 2025/01/14
- [PATCH v2 08/37] system/vl: more error exit into config enumeration code, Alex Bennée, 2025/01/14
- [PATCH v2 05/37] semihosting/arm-compat: Include missing 'cpu.h' header, Alex Bennée, 2025/01/14
- [PATCH v2 12/37] contrib/plugins/howvec: ensure we don't regress if this plugin is extended, Alex Bennée, 2025/01/14
- [PATCH v2 17/37] contrib/plugins/hotblocks: fix 32-bit build, Alex Bennée, 2025/01/14
- [PATCH v2 15/37] contrib/plugins/stoptrigger: fix 32-bit build, Alex Bennée, 2025/01/14
- [PATCH v2 09/37] system: squash usb_parse into a single function, Alex Bennée, 2025/01/14
- [PATCH v2 34/37] docs/devel: add information on how to setup build environments, Alex Bennée, 2025/01/14
- [PATCH v2 06/37] semihosting/console: Avoid including 'cpu.h', Alex Bennée, 2025/01/14
- [PATCH v2 25/37] plugins: enable linking with clang/lld, Alex Bennée, 2025/01/14