[PULL 00/30] Linux user for 7.0 patches

Laurent Vivier posted 30 patches 2 years, 3 months ago
Test checkpatch passed
Patches applied successfully (tree, apply log)
git fetch https://github.com/patchew-project/qemu tags/patchew/20220111195247.1737641-1-laurent@vivier.eu
Maintainers: "Philippe Mathieu-Daudé" <f4bug@amsat.org>, Thomas Huth <thuth@redhat.com>, Laurent Vivier <laurent@vivier.eu>, Jiaxun Yang <jiaxun.yang@flygoat.com>, Cornelia Huck <cohuck@redhat.com>
There is a newer version of this series
linux-user/aarch64/target_structs.h       |  59 +-------
linux-user/alpha/cpu_loop.c               |  61 +++-----
linux-user/arm/target_structs.h           |  60 +-------
linux-user/cris/cpu_loop.c                |  12 +-
linux-user/cris/target_structs.h          |  59 +-------
linux-user/generic/target_structs.h       |  58 ++++++++
linux-user/hexagon/target_structs.h       |  55 +------
linux-user/hppa/cpu_loop.c                |  26 ++--
linux-user/i386/cpu_loop.c                |  78 +++++-----
linux-user/i386/target_structs.h          |  59 +-------
linux-user/m68k/cpu_loop.c                |  24 +---
linux-user/m68k/target_structs.h          |  59 +-------
linux-user/microblaze/cpu_loop.c          |  71 +++++----
linux-user/microblaze/target_structs.h    |  59 +-------
linux-user/mips/cpu_loop.c                | 166 +++++-----------------
linux-user/nios2/target_structs.h         |  59 +-------
linux-user/openrisc/cpu_loop.c            |  18 +--
linux-user/openrisc/target_structs.h      |  59 +-------
linux-user/ppc/cpu_loop.c                 | 136 ++++--------------
linux-user/riscv/cpu_loop.c               |  31 +---
linux-user/riscv/target_structs.h         |  47 +-----
linux-user/s390x/cpu_loop.c               |   7 +-
linux-user/sh4/cpu_loop.c                 |   6 +-
linux-user/sh4/target_structs.h           |  59 +-------
linux-user/sparc/cpu_loop.c               |  14 +-
linux-user/syscall.c                      |  19 ++-
linux-user/syscall_defs.h                 |   3 +-
linux-user/x86_64/target_structs.h        |  36 +----
linux-user/xtensa/cpu_loop.c              |  26 ++--
target/mips/tcg/micromips_translate.c.inc |  10 +-
target/mips/tcg/mips16e_translate.c.inc   |   2 +-
target/mips/tcg/nanomips_translate.c.inc  |   4 +-
target/mips/tcg/translate.c               |  36 ++++-
target/mips/tcg/translate.h               |   1 +
34 files changed, 318 insertions(+), 1161 deletions(-)
create mode 100644 linux-user/generic/target_structs.h
[PULL 00/30] Linux user for 7.0 patches
Posted by Laurent Vivier 2 years, 3 months ago
The following changes since commit 64c01c7da449bcafc614b27ecf1325bb08031c84:

  Merge remote-tracking branch 'remotes/philmd/tags/sdmmc-20220108' into staging (2022-01-11 11:39:31 +0000)

are available in the Git repository at:

  https://gitlab.com/laurent_vivier/qemu.git tags/linux-user-for-7.0-pull-request

for you to fetch changes up to 4f4e5567f856d9b841494b3b5216a37d2952ee54:

  linux-user: Implement capability prctls (2022-01-11 18:40:44 +0100)

----------------------------------------------------------------
linux-user pull request 20220111
siginfo_t cleanup
more prtctl() update
target_struct.h cleanup

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

Richard Henderson (30):
  linux-user/alpha: Set TRAP_UNK for bugchk and unknown gentrap
  linux-user/alpha: Set FPE_FLTUNK for gentrap ROPRAND
  linux-user/alpha: Use force_sig_fault
  linux-user/cris: Use force_sig_fault
  linux-user/hppa: Use force_sig_fault
  linux-user/hppa: Use the proper si_code for PRIV_OPR, PRIV_REG,
    OVERFLOW
  linux-user: Remove TARGET_NSIGFPE
  linux-user/hppa: Set FPE_CONDTRAP for COND
  linux-user/i386: Split out maybe_handle_vm86_trap
  linux-user/i386: Use force_sig, force_sig_fault
  linux-user/m68k: Use force_sig_fault
  linux-user/microblaze: Use force_sig_fault
  linux-user/microblaze: Fix SIGFPE si_codes
  linux-user/mips: Improve do_break
  linux-user/mips: Use force_sig_fault
  target/mips: Extract break code into env->error_code
  target/mips: Extract trap code into env->error_code
  linux-user/openrisc: Use force_sig_fault
  linux-user/ppc: Use force_sig_fault
  linux-user/riscv: Use force_sig_fault
  linux-user/s390x: Use force_sig_fault
  linux-user/sh4: Use force_sig_fault
  linux-user/sparc: Use force_sig_fault
  linux-user/xtensa: Use force_sig_fault
  linux-user/arm: Move target_oabi_flock64 out of target_structs.h
  linux-user: Move target_struct.h generic definitions to generic/
  linux-user: Do not special-case NULL for PR_GET_PDEATHSIG
  linux-user: Map signal number in PR_GET_PDEATHSIG
  linux-user: Implement PR_SET_PDEATHSIG
  linux-user: Implement capability prctls

 linux-user/aarch64/target_structs.h       |  59 +-------
 linux-user/alpha/cpu_loop.c               |  61 +++-----
 linux-user/arm/target_structs.h           |  60 +-------
 linux-user/cris/cpu_loop.c                |  12 +-
 linux-user/cris/target_structs.h          |  59 +-------
 linux-user/generic/target_structs.h       |  58 ++++++++
 linux-user/hexagon/target_structs.h       |  55 +------
 linux-user/hppa/cpu_loop.c                |  26 ++--
 linux-user/i386/cpu_loop.c                |  78 +++++-----
 linux-user/i386/target_structs.h          |  59 +-------
 linux-user/m68k/cpu_loop.c                |  24 +---
 linux-user/m68k/target_structs.h          |  59 +-------
 linux-user/microblaze/cpu_loop.c          |  71 +++++----
 linux-user/microblaze/target_structs.h    |  59 +-------
 linux-user/mips/cpu_loop.c                | 166 +++++-----------------
 linux-user/nios2/target_structs.h         |  59 +-------
 linux-user/openrisc/cpu_loop.c            |  18 +--
 linux-user/openrisc/target_structs.h      |  59 +-------
 linux-user/ppc/cpu_loop.c                 | 136 ++++--------------
 linux-user/riscv/cpu_loop.c               |  31 +---
 linux-user/riscv/target_structs.h         |  47 +-----
 linux-user/s390x/cpu_loop.c               |   7 +-
 linux-user/sh4/cpu_loop.c                 |   6 +-
 linux-user/sh4/target_structs.h           |  59 +-------
 linux-user/sparc/cpu_loop.c               |  14 +-
 linux-user/syscall.c                      |  19 ++-
 linux-user/syscall_defs.h                 |   3 +-
 linux-user/x86_64/target_structs.h        |  36 +----
 linux-user/xtensa/cpu_loop.c              |  26 ++--
 target/mips/tcg/micromips_translate.c.inc |  10 +-
 target/mips/tcg/mips16e_translate.c.inc   |   2 +-
 target/mips/tcg/nanomips_translate.c.inc  |   4 +-
 target/mips/tcg/translate.c               |  36 ++++-
 target/mips/tcg/translate.h               |   1 +
 34 files changed, 318 insertions(+), 1161 deletions(-)
 create mode 100644 linux-user/generic/target_structs.h

-- 
2.33.1


Re: [PULL 00/30] Linux user for 7.0 patches
Posted by Peter Maydell 2 years, 3 months ago
On Tue, 11 Jan 2022 at 19:55, Laurent Vivier <laurent@vivier.eu> wrote:
>
> The following changes since commit 64c01c7da449bcafc614b27ecf1325bb08031c84:
>
>   Merge remote-tracking branch 'remotes/philmd/tags/sdmmc-20220108' into staging (2022-01-11 11:39:31 +0000)
>
> are available in the Git repository at:
>
>   https://gitlab.com/laurent_vivier/qemu.git tags/linux-user-for-7.0-pull-request
>
> for you to fetch changes up to 4f4e5567f856d9b841494b3b5216a37d2952ee54:
>
>   linux-user: Implement capability prctls (2022-01-11 18:40:44 +0100)
>
> ----------------------------------------------------------------
> linux-user pull request 20220111
> siginfo_t cleanup
> more prtctl() update
> target_struct.h cleanup
>

Applied, thanks.

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

-- PMM