All of lore.kernel.org
 help / color / mirror / Atom feed
* [PULL 0/3] Linux user patches
@ 2026-08-07 13:26 Helge Deller
  2026-08-07 13:26 ` [PULL 1/3] linux-user/sh4: Deliver SIGILL on invalid instruction Helge Deller
                   ` (3 more replies)
  0 siblings, 4 replies; 9+ messages in thread
From: Helge Deller @ 2026-08-07 13:26 UTC (permalink / raw)
  To: qemu-devel, Stefan Hajnoczi
  Cc: Pierrick Bouvier, deller, Laurent Vivier, Mikulas Patocka

From: Helge Deller <deller@gmx.de>

The following changes since commit 3e3ccab106f879b1512f8e0d51a827dd4de30e22:

  Update version for v11.1.0-rc3 release (2026-08-04 15:36:08 -0400)

are available in the Git repository at:

  https://github.com/hdeller/qemu-hppa.git tags/linux-user-pull-request

for you to fetch changes up to f7ad7b1f8c8148f39bc1f2c984bfc7b7c9c59041:

  linux-user/sh4: Fix crashes on signal delivery in conditional delay slot (2026-08-07 15:13:36 +0200)

----------------------------------------------------------------
linux-user sh4 signal patches

Three important small signal handling fixes for the sh4 architecture from
Mikulas Patocka.

----------------------------------------------------------------

Mikulas Patocka (3):
  linux-user/sh4: Deliver SIGILL on invalid instruction
  linux-user/sh4: Initialize the FPSCR register on signal
  linux-user/sh4: Fix crashes on signal delivery in conditional delay
    slot

 linux-user/sh4/cpu_loop.c | 7 +++++++
 linux-user/sh4/signal.c   | 6 +++++-
 2 files changed, 12 insertions(+), 1 deletion(-)

-- 
2.54.0



^ permalink raw reply	[flat|nested] 9+ messages in thread
* [PULL 0/3] Linux user patches
@ 2026-07-29 20:58 Helge Deller
  2026-07-30 19:13 ` Stefan Hajnoczi
  0 siblings, 1 reply; 9+ messages in thread
From: Helge Deller @ 2026-07-29 20:58 UTC (permalink / raw)
  To: qemu-devel, Stefan Hajnoczi
  Cc: Helge Deller, Pierrick Bouvier, Laurent Vivier

From: Helge Deller <deller@gmx.de>

The following changes since commit de5eb7c4dd3ef5688b14007134eb11ff4973580c:

  Merge tag 'hw-misc-20260728' of https://github.com/philmd/qemu into staging (2026-07-28 10:04:08 -0400)

are available in the Git repository at:

  https://github.com/hdeller/qemu-hppa.git tags/linux-user-pull-request

for you to fetch changes up to 8d0ac5933aa3476283c14680f165727268103fcd:

  linux-user/aarch64: Fix SHADOW_STACK_SET_TOKEN (2026-07-29 22:56:12 +0200)

----------------------------------------------------------------
linux-user patches

Three linux-user patches, one aarch64 shadow stack fix
and two fixes for members of the target_msqid_ds struct.

----------------------------------------------------------------

Helge Deller (1):
  linux-user: Fix msqid_ds struct wrt 32-bit big endian architectures

Richard Henderson (1):
  linux-user/aarch64: Fix SHADOW_STACK_SET_TOKEN

no92 (1):
  linux-user: fix incorrect msg_l[sr]pid members of target_msqid_ds

 linux-user/syscall.c | 45 ++++++++++++++++++++------------------------
 1 file changed, 20 insertions(+), 25 deletions(-)

-- 
2.54.0



^ permalink raw reply	[flat|nested] 9+ messages in thread
* [PULL 0/3] Linux user patches
@ 2026-07-28  9:16 Helge Deller
  2026-07-28 15:31 ` Stefan Hajnoczi
  0 siblings, 1 reply; 9+ messages in thread
From: Helge Deller @ 2026-07-28  9:16 UTC (permalink / raw)
  To: qemu-devel, Stefan Hajnoczi
  Cc: Yoshinori Sato, Cédric Le Goater, Helge Deller,
	Laurent Vivier, Matt Turner, Pierrick Bouvier

From: Helge Deller <deller@gmx.de>

The following changes since commit 300438ffbb8d9430cac2fcc15cba6f482b2c0587:

  Merge tag 'pull-trivial-patches' of https://gitlab.com/mjt0k/qemu into staging (2026-07-24 09:13:49 -0400)

are available in the Git repository at:

  https://github.com/hdeller/qemu-hppa.git tags/linux-user-pull-request

for you to fetch changes up to db3abd36e4c7c2a72e00e5806cf4c47f5aa5c491:

  linux-user/sh4: allow full 32-bit address space (2026-07-28 11:12:37 +0200)

----------------------------------------------------------------
linux-user patches

Enable fsmount() syscalls, fix build with Linux 7.2 kernel headers and
allow full 32-bit address space on sh4.

----------------------------------------------------------------

Cédric Le Goater (1):
  linux-user: Guard local FUTEX_CMD_MASK definition

Laurent Vivier (1):
  linux-user/sh4: allow full 32-bit address space

Matt Turner (1):
  linux-user: fix guards for the fsmount(2) syscall series

 linux-user/sh4/target_mman.h | 2 +-
 linux-user/strace.c          | 2 +-
 linux-user/strace.list       | 2 +-
 linux-user/syscall.c         | 4 ++--
 linux-user/syscall_defs.h    | 2 ++
 target/sh4/cpu-param.h       | 8 +++-----
 6 files changed, 10 insertions(+), 10 deletions(-)

-- 
2.54.0



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

end of thread, other threads:[~2026-08-11 21:38 UTC | newest]

Thread overview: 9+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2026-08-07 13:26 [PULL 0/3] Linux user patches Helge Deller
2026-08-07 13:26 ` [PULL 1/3] linux-user/sh4: Deliver SIGILL on invalid instruction Helge Deller
2026-08-07 13:26 ` [PULL 2/3] linux-user/sh4: Initialize the FPSCR register on signal Helge Deller
2026-08-07 13:26 ` [PULL 3/3] linux-user/sh4: Fix crashes on signal delivery in conditional delay slot Helge Deller
2026-08-11 21:37 ` [PULL 0/3] Linux user patches Stefan Hajnoczi
  -- strict thread matches above, loose matches on Subject: below --
2026-07-29 20:58 Helge Deller
2026-07-30 19:13 ` Stefan Hajnoczi
2026-07-28  9:16 Helge Deller
2026-07-28 15:31 ` Stefan Hajnoczi

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.