[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[PATCH v3 18/27] gdbstub: Remove watchpoint dead code in gdbserver_fork(
From: |
Philippe Mathieu-Daudé |
Subject: |
[PATCH v3 18/27] gdbstub: Remove watchpoint dead code in gdbserver_fork() |
Date: |
Tue, 2 Mar 2021 15:58:09 +0100 |
gdbserver_fork() is only used in user emulation where we can not
use watchpoints because we need the softmmu slow path to detect
accesses to watchpointed memory. This code doesn't do anything as
declared as stubs in "hw/core/cpu.h". Drop it.
Signed-off-by: Philippe Mathieu-Daudé <f4bug@amsat.org>
---
gdbstub.c | 1 -
1 file changed, 1 deletion(-)
diff --git a/gdbstub.c b/gdbstub.c
index 759bb00bcf0..eee4301b5e6 100644
--- a/gdbstub.c
+++ b/gdbstub.c
@@ -3349,7 +3349,6 @@ void gdbserver_fork(CPUState *cpu)
close(gdbserver_state.fd);
gdbserver_state.fd = -1;
cpu_breakpoint_remove_all(cpu, BP_GDB);
- cpu_watchpoint_remove_all(cpu, BP_GDB);
}
#else
static int gdb_chr_can_receive(void *opaque)
--
2.26.2
- [PATCH v3 09/27] cpu: Move CPUClass::virtio_is_big_endian to SysemuCPUOps, (continued)
- [PATCH v3 09/27] cpu: Move CPUClass::virtio_is_big_endian to SysemuCPUOps, Philippe Mathieu-Daudé, 2021/03/02
- [PATCH v3 10/27] cpu: Move CPUClass::get_crash_info to SysemuCPUOps, Philippe Mathieu-Daudé, 2021/03/02
- [PATCH v3 11/27] cpu: Move CPUClass::write_elf* to SysemuCPUOps, Philippe Mathieu-Daudé, 2021/03/02
- [PATCH v3 12/27] cpu: Move CPUClass::asidx_from_attrs to SysemuCPUOps, Philippe Mathieu-Daudé, 2021/03/02
- [PATCH v3 13/27] cpu: Move CPUClass::get_phys_page_debug to SysemuCPUOps, Philippe Mathieu-Daudé, 2021/03/02
- [PATCH v3 14/27] cpu: Move CPUClass::get_memory_mapping to SysemuCPUOps, Philippe Mathieu-Daudé, 2021/03/02
- [PATCH v3 15/27] cpu: Move CPUClass::get_paging_enabled to SysemuCPUOps, Philippe Mathieu-Daudé, 2021/03/02
- [PATCH v3 16/27] cpu: Restrict "hw/core/sysemu-cpu-ops.h" to target/cpu.c, Philippe Mathieu-Daudé, 2021/03/02
- [PATCH v3 17/27] linux-user: Remove dead code, Philippe Mathieu-Daudé, 2021/03/02
- [PATCH v3 18/27] gdbstub: Remove watchpoint dead code in gdbserver_fork(),
Philippe Mathieu-Daudé <=