[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[PULL 27/28] gdbstub: do not split gdb_monitor_write payload
From: |
Alex Bennée |
Subject: |
[PULL 27/28] gdbstub: do not split gdb_monitor_write payload |
Date: |
Tue, 17 Mar 2020 17:50:52 +0000 |
From: Damien Hedde <address@hidden>
Since we can now send packets of arbitrary length:
simplify gdb_monitor_write() and send the whole payload
in one packet.
Suggested-by: Luc Michel <address@hidden>
Signed-off-by: Damien Hedde <address@hidden>
Signed-off-by: Alex Bennée <address@hidden>
Reviewed-by: Richard Henderson <address@hidden>
Message-Id: <address@hidden>
Message-Id: <address@hidden>
diff --git a/gdbstub.c b/gdbstub.c
index a60ef5125eb..9ae148cd1ff 100644
--- a/gdbstub.c
+++ b/gdbstub.c
@@ -3200,28 +3200,11 @@ static void gdb_chr_event(void *opaque, QEMUChrEvent
event)
}
}
-static void gdb_monitor_output(const char *msg, int len)
-{
- g_autoptr(GString) buf = g_string_new("O");
- memtohex(buf, (uint8_t *)msg, len);
- put_packet(buf->str);
-}
-
static int gdb_monitor_write(Chardev *chr, const uint8_t *buf, int len)
{
- const char *p = (const char *)buf;
- int max_sz;
-
- max_sz = (MAX_PACKET_LENGTH / 2) + 1;
- for (;;) {
- if (len <= max_sz) {
- gdb_monitor_output(p, len);
- break;
- }
- gdb_monitor_output(p, max_sz);
- p += max_sz;
- len -= max_sz;
- }
+ g_autoptr(GString) hex_buf = g_string_new("O");
+ memtohex(hex_buf, buf, len);
+ put_packet(hex_buf->str);
return len;
}
--
2.20.1
- [PULL 11/28] target/arm: use gdb_get_reg helpers, (continued)
- [PULL 11/28] target/arm: use gdb_get_reg helpers, Alex Bennée, 2020/03/17
- [PULL 12/28] target/m68k: use gdb_get_reg helpers, Alex Bennée, 2020/03/17
- [PULL 15/28] target/arm: prepare for multiple dynamic XMLs, Alex Bennée, 2020/03/17
- [PULL 25/28] tests/tcg/aarch64: add test-sve-ioctl guest-debug test, Alex Bennée, 2020/03/17
- [PULL 16/28] target/arm: explicitly encode regnum in our XML, Alex Bennée, 2020/03/17
- [PULL 13/28] target/i386: use gdb_get_reg helpers, Alex Bennée, 2020/03/17
- [PULL 07/28] gdbstub: stop passing GDBState * around and use global, Alex Bennée, 2020/03/17
- [PULL 14/28] gdbstub: extend GByteArray to read register helpers, Alex Bennée, 2020/03/17
- [PULL 23/28] tests/tcg/aarch64: add a gdbstub testcase for SVE registers, Alex Bennée, 2020/03/17
- [PULL 19/28] target/arm: don't bother with id_aa64pfr0_read for USER_ONLY, Alex Bennée, 2020/03/17
- [PULL 27/28] gdbstub: do not split gdb_monitor_write payload,
Alex Bennée <=
- [PULL 20/28] tests/tcg/aarch64: userspace system register test, Alex Bennée, 2020/03/17
- [PULL 26/28] gdbstub: change GDBState.last_packet to GByteArray, Alex Bennée, 2020/03/17
- [PULL 18/28] target/arm: generate xml description of our SVE registers, Alex Bennée, 2020/03/17
- [PULL 24/28] tests/tcg/aarch64: add SVE iotcl test, Alex Bennée, 2020/03/17
- [PULL 22/28] tests/guest-debug: add a simple test runner, Alex Bennée, 2020/03/17
- [PULL 21/28] configure: allow user to specify what gdb to use, Alex Bennée, 2020/03/17
- [PULL 17/28] target/arm: default SVE length to 64 bytes for linux-user, Alex Bennée, 2020/03/17
- [PULL 28/28] gdbstub: Fix single-step issue by confirming 'vContSupported+' feature to gdb, Alex Bennée, 2020/03/17
- Re: [PULL 00/28 for 5.0] testing and gdbstub updates, Peter Maydell, 2020/03/18