qemu-devel.nongnu.org archive mirror
 help / color / mirror / Atom feed
* [PULL 0/8] tcg + linux-user patch queue
@ 2024-01-21  0:20 Richard Henderson
  2024-01-21  0:20 ` [PULL 1/8] tcg: Remove unreachable code Richard Henderson
                   ` (9 more replies)
  0 siblings, 10 replies; 14+ messages in thread
From: Richard Henderson @ 2024-01-21  0:20 UTC (permalink / raw)
  To: qemu-devel

The following changes since commit 3f2a357b95845ea0bf7463eff6661e43b97d1afc:

  Merge tag 'hw-cpus-20240119' of https://github.com/philmd/qemu into staging (2024-01-19 11:39:38 +0000)

are available in the Git repository at:

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

for you to fetch changes up to 1d5e32e3198d2d8fd2342c8f7f8e0875aeff49c5:

  linux-user/elfload: check PR_GET_DUMPABLE before creating coredump (2024-01-21 10:25:07 +1100)

----------------------------------------------------------------
tcg/s390x: Fix encoding of VRIc, VRSa, VRSc insns
tcg: Clean up error paths in alloc_code_gen_buffer_splitwx_memfd
linux-user/riscv: Adjust vdso signal frame cfa offsets
linux-user: Fixed cpu restore with pc 0 on SIGBUS

----------------------------------------------------------------
Richard Henderson (3):
      tcg/s390x: Fix encoding of VRIc, VRSa, VRSc insns
      tests/tcg/s390x: Import linux tools/testing/crypto/chacha20-s390
      linux-user/riscv: Adjust vdso signal frame cfa offsets

Robbin Ehn (1):
      linux-user: Fixed cpu restore with pc 0 on SIGBUS

Samuel Tardieu (2):
      tcg: Remove unreachable code
      tcg: Make the cleanup-on-error path unique

Thomas Weißschuh (2):
      linux-user/elfload: test return value of getrlimit
      linux-user/elfload: check PR_GET_DUMPABLE before creating coredump

 linux-user/elfload.c            |  10 +-
 linux-user/signal.c             |   5 +-
 tcg/region.c                    |  10 +-
 tests/tcg/s390x/chacha.c        | 341 +++++++++++++++
 tcg/s390x/tcg-target.c.inc      |   6 +-
 linux-user/riscv/vdso-32.so     | Bin 2900 -> 2980 bytes
 linux-user/riscv/vdso-64.so     | Bin 3856 -> 3944 bytes
 linux-user/riscv/vdso.S         |   8 +-
 tests/tcg/s390x/Makefile.target |   4 +
 tests/tcg/s390x/chacha-vx.S     | 914 ++++++++++++++++++++++++++++++++++++++++
 10 files changed, 1281 insertions(+), 17 deletions(-)
 create mode 100644 tests/tcg/s390x/chacha.c
 create mode 100644 tests/tcg/s390x/chacha-vx.S


^ permalink raw reply	[flat|nested] 14+ messages in thread
* [PULL 0/8] tcg + linux-user patch queue
@ 2024-03-12 18:41 Richard Henderson
  2024-03-13 12:36 ` Peter Maydell
  0 siblings, 1 reply; 14+ messages in thread
From: Richard Henderson @ 2024-03-12 18:41 UTC (permalink / raw)
  To: qemu-devel

The following changes since commit 8f3f329f5e0117bd1a23a79ab751f8a7d3471e4b:

  Merge tag 'migration-20240311-pull-request' of https://gitlab.com/peterx/qemu into staging (2024-03-12 11:35:41 +0000)

are available in the Git repository at:

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

for you to fetch changes up to 4fe19bbbea2cb9f1ec28cfd40cdc7f61e95a790e:

  tcg/aarch64: Fix tcg_out_brcond for test comparisons (2024-03-12 04:09:21 -1000)

----------------------------------------------------------------
linux-user: Add FIFREEZE and FITHAW ioctls
linux-user: Implement PR_*_{CHILD_SUBREAPER,SPECULATION_CTRL,TID_ADDRESS}
linux-user/elfload: Fixes for two Coverity CIDs
tcg/aarch64: Fixes for two TCG_COND_TST{EQ,NE} bugs

----------------------------------------------------------------
Michael Vogt (1):
      linux-user: Add FIFREEZE and FITHAW ioctls

Richard Henderson (7):
      linux-user: Implement PR_{GET,SET}_CHILD_SUBREAPER
      linux-user: Implement PR_{GET,SET}_SPECULATION_CTRL
      linux-user: Implement PR_GET_TID_ADDRESS
      linux-user/elfload: Don't close an unopened file descriptor
      linux-user/elfload: Fully initialize struct target_elf_prpsinfo
      tcg/aarch64: Fix tcg_out_cmp for test comparisons
      tcg/aarch64: Fix tcg_out_brcond for test comparisons

 linux-user/ioctls.h          |  6 ++++++
 linux-user/syscall_defs.h    |  3 +++
 linux-user/elfload.c         | 20 +++++++++++---------
 linux-user/syscall.c         | 22 +++++++++++++++++-----
 tcg/aarch64/tcg-target.c.inc |  4 ++--
 5 files changed, 39 insertions(+), 16 deletions(-)


^ permalink raw reply	[flat|nested] 14+ messages in thread

end of thread, other threads:[~2024-03-13 12:37 UTC | newest]

Thread overview: 14+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2024-01-21  0:20 [PULL 0/8] tcg + linux-user patch queue Richard Henderson
2024-01-21  0:20 ` [PULL 1/8] tcg: Remove unreachable code Richard Henderson
2024-01-21  0:20 ` [PULL 2/8] tcg: Make the cleanup-on-error path unique Richard Henderson
2024-01-21  0:20 ` [PULL 3/8] linux-user: Fixed cpu restore with pc 0 on SIGBUS Richard Henderson
2024-01-21  0:20 ` [PULL 4/8] tcg/s390x: Fix encoding of VRIc, VRSa, VRSc insns Richard Henderson
2024-01-21  0:20 ` [PULL 5/8] tests/tcg/s390x: Import linux tools/testing/crypto/chacha20-s390 Richard Henderson
2024-01-21  0:20 ` [PULL 6/8] linux-user/riscv: Adjust vdso signal frame cfa offsets Richard Henderson
2024-01-21  0:20 ` [PULL 7/8] linux-user/elfload: test return value of getrlimit Richard Henderson
2024-01-21  0:20 ` [PULL 8/8] linux-user/elfload: check PR_GET_DUMPABLE before creating coredump Richard Henderson
2024-01-21  7:33 ` [PULL 0/8] tcg + linux-user patch queue Michael Tokarev
2024-01-22 15:26 ` Peter Maydell
2024-01-22 22:02   ` Richard Henderson
  -- strict thread matches above, loose matches on Subject: below --
2024-03-12 18:41 Richard Henderson
2024-03-13 12:36 ` Peter Maydell

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).