[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[PATCH v2 for 5.0-rc3 00/17] more randome fixes (user, pie, docker and
From: |
Alex Bennée |
Subject: |
[PATCH v2 for 5.0-rc3 00/17] more randome fixes (user, pie, docker and gdbstub) |
Date: |
Tue, 14 Apr 2020 21:06:14 +0100 |
Hi,
This is version 2 of my random fixes for rc3 series. In no particular
order we have:
- A trivial fix to /proc/self/stat output
- An attempt to fix broken PIE builds for Windows (please test!)
- Some fixes to get "make docker-all-tests" running again
- A tweak to .gitignore
- A couple of bugs found in the gdbstub GByteArray conversion
- A new test case for linux-user gdbstub support
- Which found a few more gdbstub bugs :-/
The m68k FPU patch is definitely a hack but it seemed easier than
disabling completely. The chatter on #gdb seems to be there is some
combination of qemu and gdb tress that does work but I suspect this
needs some maintainer action.
I've dropped the MacOSX travis patch as Travis has hopefully sorted
itself out.
I've also included the guest base re-factoring patches as it makes it
easier for me to soak test the tree with the sanitiser although those
actual fixes won't go into 5.0 at this late stage.
The following patches need review:
- tests/tcg: add a multiarch linux-user gdb test
- tests/tcg: drop inferior.was_attached() test
- target/m68k: hack around the FPU register support (HACK!)
- linux-user: completely re-write init_guest_space
Alex Bennée (9):
linux-user: completely re-write init_guest_space
.gitignore: include common build sub-directories
tests/docker: add docs FEATURE flag and use for test-misc
configure: redirect sphinx-build check to config.log
configure: disable PIE for Windows builds
linux-user: fix /proc/self/stat handling
target/m68k: hack around the FPU register support (HACK!)
tests/tcg: drop inferior.was_attached() test
tests/tcg: add a multiarch linux-user gdb test
Peter Xu (1):
gdbstub: i386: Fix gdb_get_reg16() parameter to unbreak gdb
Philippe Mathieu-Daudé (4):
target/m68k/helper: Fix m68k_fpu_gdb_get_reg() use of GByteArray
gdbstub: Do not use memset() on GByteArray
gdbstub: Introduce gdb_get_float32() to get 32-bit float registers
gdbstub: Introduce gdb_get_float64() to get 64-bit float registers
Richard Henderson (3):
exec/cpu-all: Use bool for have_guest_base
accel/tcg: Relax va restrictions on 64-bit guests
linux-user/ppc: Fix padding in mcontext_t for ppc64
configure | 5 +-
include/exec/cpu-all.h | 25 +-
include/exec/gdbstub.h | 29 ++
linux-user/qemu.h | 31 +-
target/alpha/cpu-param.h | 15 +-
accel/tcg/translate-all.c | 15 +-
bsd-user/main.c | 4 +-
linux-user/elfload.c | 503 ++++++++++----------
linux-user/flatload.c | 6 +
linux-user/main.c | 27 +-
linux-user/ppc/signal.c | 69 ++-
linux-user/syscall.c | 43 +-
target/arm/gdbstub.c | 3 +-
target/i386/gdbstub.c | 2 +-
target/m68k/helper.c | 14 +-
target/ppc/gdbstub.c | 4 +-
target/ppc/translate_init.inc.c | 2 +-
target/sh4/gdbstub.c | 6 +-
target/xtensa/gdbstub.c | 6 +-
.gitignore | 1 +
gdb-xml/m68k-fp.xml | 16 +-
tests/docker/dockerfiles/debian10.docker | 2 +
tests/docker/dockerfiles/debian9.docker | 2 -
tests/docker/dockerfiles/fedora.docker | 2 +-
tests/docker/dockerfiles/travis.docker | 2 +-
tests/docker/dockerfiles/ubuntu.docker | 2 +-
tests/docker/dockerfiles/ubuntu1804.docker | 2 +-
tests/docker/test-misc | 2 +
tests/tcg/aarch64/gdbstub/test-sve-ioctl.py | 3 -
tests/tcg/aarch64/gdbstub/test-sve.py | 3 -
tests/tcg/multiarch/Makefile.target | 15 +
tests/tcg/multiarch/gdbstub/sha1.py | 81 ++++
32 files changed, 522 insertions(+), 420 deletions(-)
create mode 100644 tests/tcg/multiarch/gdbstub/sha1.py
--
2.20.1
- [PATCH v2 for 5.0-rc3 00/17] more randome fixes (user, pie, docker and gdbstub),
Alex Bennée <=
- [PATCH v2 02/17] exec/cpu-all: Use bool for have_guest_base, Alex Bennée, 2020/04/14
- [PATCH v2 03/17] accel/tcg: Relax va restrictions on 64-bit guests, Alex Bennée, 2020/04/14
- [PATCH v2 04/17] .gitignore: include common build sub-directories, Alex Bennée, 2020/04/14
- [PATCH v2 01/17] linux-user: completely re-write init_guest_space, Alex Bennée, 2020/04/14
- [PATCH v2 06/17] tests/docker: add docs FEATURE flag and use for test-misc, Alex Bennée, 2020/04/14
- [PATCH v2 07/17] configure: redirect sphinx-build check to config.log, Alex Bennée, 2020/04/14
- [PATCH v2 05/17] linux-user/ppc: Fix padding in mcontext_t for ppc64, Alex Bennée, 2020/04/14
- [PATCH v2 08/17] configure: disable PIE for Windows builds, Alex Bennée, 2020/04/14
- [PATCH v2 12/17] gdbstub: Do not use memset() on GByteArray, Alex Bennée, 2020/04/14
- [PATCH v2 11/17] gdbstub: i386: Fix gdb_get_reg16() parameter to unbreak gdb, Alex Bennée, 2020/04/14