qemu-devel.nongnu.org archive mirror
 help / color / mirror / Atom feed
* [PULL 00/46] linux-user patch queue
@ 2025-08-27 23:19 Richard Henderson
  2025-08-27 23:19 ` [PULL 01/46] semihosting: Retrieve stack top from image_info Richard Henderson
                   ` (46 more replies)
  0 siblings, 47 replies; 48+ messages in thread
From: Richard Henderson @ 2025-08-27 23:19 UTC (permalink / raw)
  To: qemu-devel

The following changes since commit 5fc03d4e28258fdf6a926a59c6b5e1edc23e6d5d:

  Merge tag 'pull-request-2025-08-27' of https://gitlab.com/thuth/qemu into staging (2025-08-27 19:11:08 +1000)

are available in the Git repository at:

  https://gitlab.com/rth7680/qemu.git tags/pull-lu-20250828

for you to fetch changes up to a5fbf1c617c5b51082d317601e0d4cf5eea5c140:

  linux-user: do not print IP socket options by default (2025-08-28 07:33:34 +1000)

----------------------------------------------------------------
linux-user: do not print IP socket options by default
linux-user: Add strace for rseq
linux-user: Move get_elf_cpu_model to target/elfload.c
linux-user: Move get_elf_hwcap to target/elfload.c
linux-user: Move get_elf_hwcap2 to target/elfload.c
linux-user: Move get_elf_platform to target/elfload.c
linux-user: Move get_elf_base_platform to target/elfload.c
linux-user: Create init_main_thread in target/cpu_loop.c
semihosting: Retrieve stack top from image_info
semihosting: Initialize heap once per process

----------------------------------------------------------------
Joel Stanley (1):
      linux-user: Add strace for rseq

Richard Henderson (44):
      semihosting: Retrieve stack top from image_info
      semihosting: Initialize heap once per process
      linux-user: Create target/elfload.c files
      linux-user: Move ppc uabi/asm/elf.h workaround to osdep.h
      linux-user: Move get_elf_cpu_model to target/elfload.c
      linux-user: Move get_elf_hwcap to {i386,x86_64}/elfload.c
      linux-user: Move hwcap functions to {arm,aarch64}/elfload.c
      linux-user: Move get_elf_hwcap to sparc/elfload.c
      linux-user: Move hwcap functions to ppc/elfload.c
      linux-user: Move get_elf_hwcap to loongarch64/elfload.c
      linux-user: Move get_elf_hwcap to mips/elfload.c
      linux-user: Move get_elf_hwcap to sh4/elfload.c
      linux-user: Move hwcap functions to s390x/elfload.c
      linux-user: Move get_elf_hwcap to riscv/elfload.c
      linux-user: Remove ELF_HWCAP
      linux-user: Remove ELF_HWCAP2
      linux-user: Move get_elf_platform to {i386,x86_64}/elfload.c
      linux-user/i386: Return const data from get_elf_platform
      linux-user: Move get_elf_platform to arm/elfload.c
      linux-user/loongarch64: Create get_elf_platform
      linux-user/hppa: Create get_elf_platform
      linux-user: Remove ELF_PLATFORM
      linux-user: Move get_elf_base_platform to mips/elfload.c
      linux-user: Move target_cpu_copy_regs decl to qemu.h
      linux-user: Create do_init_main_thread
      linux-user/i386: Create init_main_thread
      linux-user/arm: Create init_main_thread
      linux-user/arm: Remove a.out startup remenents
      linux-user/aarch64: Create init_main_thread
      linux-user/sparc: Create init_main_thread
      linux-user/ppc: Create init_main_thread
      linux-user/loongarch64: Create init_main_thread
      linux-user/mips: Create init_main_thread
      linux-user/microblaze: Create init_main_thread
      linux-user/openrisc: Create init_main_thread
      linux-user/sh4: Create init_main_thread
      linux-user/m68k: Create init_main_thread
      linux-user/alpha: Create init_main_thread
      linux-user/s390x: Create init_main_thread
      linux-user/riscv: Create init_main_thread
      linux-user/hppa: Create init_main_thread
      linux-user/xtensa: Create init_main_thread
      linux-user/hexagon: Create init_main_thread
      linux-user: Remove do_init_main_thread

Łukasz Stelmach (1):
      linux-user: do not print IP socket options by default

 include/qemu/osdep.h                |    8 +
 include/user/cpu_loop.h             |    4 -
 linux-user/aarch64/target_elf.h     |    9 +-
 linux-user/alpha/target_elf.h       |    5 +-
 linux-user/arm/target_elf.h         |    9 +-
 linux-user/arm/target_proc.h        |    4 +-
 linux-user/hexagon/target_elf.h     |   29 -
 linux-user/hppa/target_elf.h        |    7 +-
 linux-user/i386/target_elf.h        |    8 +-
 linux-user/loader.h                 |   17 +-
 linux-user/loongarch64/target_elf.h |    8 +-
 linux-user/m68k/target_elf.h        |    9 -
 linux-user/microblaze/target_elf.h  |    5 +-
 linux-user/mips/target_elf.h        |   14 +-
 linux-user/mips64/target_elf.h      |   30 +-
 linux-user/openrisc/target_elf.h    |    5 +-
 linux-user/ppc/target_elf.h         |   12 +-
 linux-user/qemu.h                   |    8 +-
 linux-user/riscv/target_elf.h       |    7 +-
 linux-user/s390x/target_elf.h       |    7 +-
 linux-user/s390x/target_proc.h      |    2 +-
 linux-user/sh4/target_elf.h         |    7 +-
 linux-user/sparc/target_elf.h       |   11 +-
 linux-user/x86_64/target_elf.h      |    8 +-
 linux-user/xtensa/target_elf.h      |    5 -
 hw/core/loader.c                    |    4 -
 linux-user/aarch64/cpu_loop.c       |   22 +-
 linux-user/aarch64/elfload.c        |  349 ++++++++++
 linux-user/alpha/cpu_loop.c         |   11 +-
 linux-user/alpha/elfload.c          |   11 +
 linux-user/arm/cpu_loop.c           |   75 ++-
 linux-user/arm/elfload.c            |  201 ++++++
 linux-user/elfload.c                | 1229 +----------------------------------
 linux-user/hexagon/cpu_loop.c       |    8 +-
 linux-user/hexagon/elfload.c        |   35 +
 linux-user/hppa/cpu_loop.c          |   18 +-
 linux-user/hppa/elfload.c           |   16 +
 linux-user/i386/cpu_loop.c          |   48 +-
 linux-user/i386/elfload.c           |   25 +
 linux-user/linuxload.c              |    6 +-
 linux-user/loongarch64/cpu_loop.c   |   11 +-
 linux-user/loongarch64/elfload.c    |   63 ++
 linux-user/m68k/cpu_loop.c          |   32 +-
 linux-user/m68k/elfload.c           |   18 +
 linux-user/main.c                   |   13 +-
 linux-user/microblaze/cpu_loop.c    |   39 +-
 linux-user/microblaze/elfload.c     |   11 +
 linux-user/mips/cpu_loop.c          |   16 +-
 linux-user/mips/elfload.c           |  124 ++++
 linux-user/mips64/elfload.c         |    1 +
 linux-user/openrisc/cpu_loop.c      |   11 +-
 linux-user/openrisc/elfload.c       |   11 +
 linux-user/ppc/cpu_loop.c           |   26 +-
 linux-user/ppc/elfload.c            |  131 ++++
 linux-user/riscv/cpu_loop.c         |   15 +-
 linux-user/riscv/elfload.c          |   23 +
 linux-user/s390x/cpu_loop.c         |   15 +-
 linux-user/s390x/elfload.c          |   68 ++
 linux-user/sh4/cpu_loop.c           |   10 +-
 linux-user/sh4/elfload.c            |   38 ++
 linux-user/sparc/cpu_loop.c         |   16 +-
 linux-user/sparc/elfload.c          |   42 ++
 linux-user/strace.c                 |   36 +-
 linux-user/x86_64/elfload.c         |   21 +
 linux-user/xtensa/cpu_loop.c        |   22 +-
 linux-user/xtensa/elfload.c         |   11 +
 semihosting/arm-compat-semi.c       |   28 +-
 linux-user/strace.list              |    3 +
 meson.build                         |    6 +-
 69 files changed, 1528 insertions(+), 1629 deletions(-)
 create mode 100644 linux-user/aarch64/elfload.c
 create mode 100644 linux-user/alpha/elfload.c
 create mode 100644 linux-user/arm/elfload.c
 create mode 100644 linux-user/hexagon/elfload.c
 create mode 100644 linux-user/hppa/elfload.c
 create mode 100644 linux-user/i386/elfload.c
 create mode 100644 linux-user/loongarch64/elfload.c
 create mode 100644 linux-user/m68k/elfload.c
 create mode 100644 linux-user/microblaze/elfload.c
 create mode 100644 linux-user/mips/elfload.c
 create mode 100644 linux-user/mips64/elfload.c
 create mode 100644 linux-user/openrisc/elfload.c
 create mode 100644 linux-user/ppc/elfload.c
 create mode 100644 linux-user/riscv/elfload.c
 create mode 100644 linux-user/s390x/elfload.c
 create mode 100644 linux-user/sh4/elfload.c
 create mode 100644 linux-user/sparc/elfload.c
 create mode 100644 linux-user/x86_64/elfload.c
 create mode 100644 linux-user/xtensa/elfload.c


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

end of thread, other threads:[~2025-08-28  2:49 UTC | newest]

Thread overview: 48+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2025-08-27 23:19 [PULL 00/46] linux-user patch queue Richard Henderson
2025-08-27 23:19 ` [PULL 01/46] semihosting: Retrieve stack top from image_info Richard Henderson
2025-08-27 23:19 ` [PULL 02/46] semihosting: Initialize heap once per process Richard Henderson
2025-08-27 23:19 ` [PULL 03/46] linux-user: Create target/elfload.c files Richard Henderson
2025-08-27 23:19 ` [PULL 04/46] linux-user: Move ppc uabi/asm/elf.h workaround to osdep.h Richard Henderson
2025-08-27 23:19 ` [PULL 05/46] linux-user: Move get_elf_cpu_model to target/elfload.c Richard Henderson
2025-08-27 23:19 ` [PULL 06/46] linux-user: Move get_elf_hwcap to {i386, x86_64}/elfload.c Richard Henderson
2025-08-27 23:19 ` [PULL 07/46] linux-user: Move hwcap functions to {arm, aarch64}/elfload.c Richard Henderson
2025-08-27 23:19 ` [PULL 08/46] linux-user: Move get_elf_hwcap to sparc/elfload.c Richard Henderson
2025-08-27 23:19 ` [PULL 09/46] linux-user: Move hwcap functions to ppc/elfload.c Richard Henderson
2025-08-27 23:19 ` [PULL 10/46] linux-user: Move get_elf_hwcap to loongarch64/elfload.c Richard Henderson
2025-08-27 23:19 ` [PULL 11/46] linux-user: Move get_elf_hwcap to mips/elfload.c Richard Henderson
2025-08-27 23:19 ` [PULL 12/46] linux-user: Move get_elf_hwcap to sh4/elfload.c Richard Henderson
2025-08-27 23:19 ` [PULL 13/46] linux-user: Move hwcap functions to s390x/elfload.c Richard Henderson
2025-08-27 23:19 ` [PULL 14/46] linux-user: Move get_elf_hwcap to riscv/elfload.c Richard Henderson
2025-08-27 23:19 ` [PULL 15/46] linux-user: Remove ELF_HWCAP Richard Henderson
2025-08-27 23:19 ` [PULL 16/46] linux-user: Remove ELF_HWCAP2 Richard Henderson
2025-08-27 23:19 ` [PULL 17/46] linux-user: Move get_elf_platform to {i386, x86_64}/elfload.c Richard Henderson
2025-08-27 23:19 ` [PULL 18/46] linux-user/i386: Return const data from get_elf_platform Richard Henderson
2025-08-27 23:19 ` [PULL 19/46] linux-user: Move get_elf_platform to arm/elfload.c Richard Henderson
2025-08-27 23:19 ` [PULL 20/46] linux-user/loongarch64: Create get_elf_platform Richard Henderson
2025-08-27 23:19 ` [PULL 21/46] linux-user/hppa: " Richard Henderson
2025-08-27 23:19 ` [PULL 22/46] linux-user: Remove ELF_PLATFORM Richard Henderson
2025-08-27 23:20 ` [PULL 23/46] linux-user: Move get_elf_base_platform to mips/elfload.c Richard Henderson
2025-08-27 23:20 ` [PULL 24/46] linux-user: Move target_cpu_copy_regs decl to qemu.h Richard Henderson
2025-08-27 23:20 ` [PULL 25/46] linux-user: Create do_init_main_thread Richard Henderson
2025-08-27 23:20 ` [PULL 26/46] linux-user/i386: Create init_main_thread Richard Henderson
2025-08-27 23:20 ` [PULL 27/46] linux-user/arm: " Richard Henderson
2025-08-27 23:20 ` [PULL 28/46] linux-user/arm: Remove a.out startup remenents Richard Henderson
2025-08-27 23:20 ` [PULL 29/46] linux-user/aarch64: Create init_main_thread Richard Henderson
2025-08-27 23:20 ` [PULL 30/46] linux-user/sparc: " Richard Henderson
2025-08-27 23:20 ` [PULL 31/46] linux-user/ppc: " Richard Henderson
2025-08-27 23:20 ` [PULL 32/46] linux-user/loongarch64: " Richard Henderson
2025-08-27 23:20 ` [PULL 33/46] linux-user/mips: " Richard Henderson
2025-08-27 23:20 ` [PULL 34/46] linux-user/microblaze: " Richard Henderson
2025-08-27 23:20 ` [PULL 35/46] linux-user/openrisc: " Richard Henderson
2025-08-27 23:20 ` [PULL 36/46] linux-user/sh4: " Richard Henderson
2025-08-27 23:20 ` [PULL 37/46] linux-user/m68k: " Richard Henderson
2025-08-27 23:20 ` [PULL 38/46] linux-user/alpha: " Richard Henderson
2025-08-27 23:20 ` [PULL 39/46] linux-user/s390x: " Richard Henderson
2025-08-27 23:20 ` [PULL 40/46] linux-user/riscv: " Richard Henderson
2025-08-27 23:20 ` [PULL 41/46] linux-user/hppa: " Richard Henderson
2025-08-27 23:20 ` [PULL 42/46] linux-user/xtensa: " Richard Henderson
2025-08-27 23:20 ` [PULL 43/46] linux-user/hexagon: " Richard Henderson
2025-08-27 23:20 ` [PULL 44/46] linux-user: Remove do_init_main_thread Richard Henderson
2025-08-27 23:20 ` [PULL 45/46] linux-user: Add strace for rseq Richard Henderson
2025-08-27 23:20 ` [PULL 46/46] linux-user: do not print IP socket options by default Richard Henderson
2025-08-28  2:47 ` [PULL 00/46] linux-user patch queue Richard Henderson

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).