[PULL 0/7] tcg + linux-user patch queue

Richard Henderson posted 7 patches 1 month ago
Patches applied successfully (tree, apply log)
git fetch https://github.com/patchew-project/qemu tags/patchew/20240329222037.1735350-1-richard.henderson@linaro.org
Maintainers: Richard Henderson <richard.henderson@linaro.org>, Paolo Bonzini <pbonzini@redhat.com>, Laurent Vivier <laurent@vivier.eu>, Peter Maydell <peter.maydell@linaro.org>, "Alex Bennée" <alex.bennee@linaro.org>
There is a newer version of this series
accel/tcg/translate-all.c                    |  2 +-
disas/disas-mon.c                            |  1 +
disas/disas.c                                |  1 +
linux-user/mmap.c                            |  2 +-
linux-user/strace.c                          | 10 +++-----
tcg/optimize.c                               |  2 +-
tests/tcg/aarch64/test-2248.c                | 28 ++++++++++++++++++++
tests/tcg/multiarch/linux/linux-shmat-null.c | 38 ++++++++++++++++++++++++++++
tests/tcg/aarch64/Makefile.target            |  1 +
9 files changed, 75 insertions(+), 10 deletions(-)
create mode 100644 tests/tcg/aarch64/test-2248.c
create mode 100644 tests/tcg/multiarch/linux/linux-shmat-null.c
[PULL 0/7] tcg + linux-user patch queue
Posted by Richard Henderson 1 month ago
The following changes since commit 5012e522aca161be5c141596c66e5cc6082538a9:

  Update version for v9.0.0-rc1 release (2024-03-26 19:46:55 +0000)

are available in the Git repository at:

  https://gitlab.com/rth7680/qemu.git tags/pull-tcg-20240329

for you to fetch changes up to dafa0ecc97850c325fe85cd87dc0b536858d171a:

  accel/tcg: Use CPUState.get_pc in cpu_io_recompile (2024-03-29 12:16:00 -1000)

----------------------------------------------------------------
linux-user: Fix shmat(NULL) for host != guest page size
tcg/optimize: Fix sign_mask for logical right-shift
accel/tcg: Use CPUState.get_pc in cpu_io_recompile
disas: Show opcodes for target_disas and monitor_disas

----------------------------------------------------------------
Ilya Leoshkevich (4):
      linux-user: Fix semctl() strace
      linux-user: Fix shmat() strace
      linux-user: Fix shmat(NULL) for h != g
      tests/tcg: Test shmat(NULL)

Richard Henderson (3):
      tcg/optimize: Fix sign_mask for logical right-shift
      disas: Show opcodes for target_disas and monitor_disas
      accel/tcg: Use CPUState.get_pc in cpu_io_recompile

 accel/tcg/translate-all.c                    |  2 +-
 disas/disas-mon.c                            |  1 +
 disas/disas.c                                |  1 +
 linux-user/mmap.c                            |  2 +-
 linux-user/strace.c                          | 10 +++-----
 tcg/optimize.c                               |  2 +-
 tests/tcg/aarch64/test-2248.c                | 28 ++++++++++++++++++++
 tests/tcg/multiarch/linux/linux-shmat-null.c | 38 ++++++++++++++++++++++++++++
 tests/tcg/aarch64/Makefile.target            |  1 +
 9 files changed, 75 insertions(+), 10 deletions(-)
 create mode 100644 tests/tcg/aarch64/test-2248.c
 create mode 100644 tests/tcg/multiarch/linux/linux-shmat-null.c
Re: [PULL 0/7] tcg + linux-user patch queue
Posted by Peter Maydell 1 month ago
On Fri, 29 Mar 2024 at 22:21, Richard Henderson
<richard.henderson@linaro.org> wrote:
>
> The following changes since commit 5012e522aca161be5c141596c66e5cc6082538a9:
>
>   Update version for v9.0.0-rc1 release (2024-03-26 19:46:55 +0000)
>
> are available in the Git repository at:
>
>   https://gitlab.com/rth7680/qemu.git tags/pull-tcg-20240329
>
> for you to fetch changes up to dafa0ecc97850c325fe85cd87dc0b536858d171a:
>
>   accel/tcg: Use CPUState.get_pc in cpu_io_recompile (2024-03-29 12:16:00 -1000)
>
> ----------------------------------------------------------------
> linux-user: Fix shmat(NULL) for host != guest page size
> tcg/optimize: Fix sign_mask for logical right-shift
> accel/tcg: Use CPUState.get_pc in cpu_io_recompile
> disas: Show opcodes for target_disas and monitor_disas
>


Applied, thanks.

Please update the changelog at https://wiki.qemu.org/ChangeLog/9.0
for any user-visible changes.

-- PMM