From: Warner Losh <imp@bsdimp.com>
To: qemu-devel@nongnu.org
Cc: kevans@freebsd.org, Laurent Vivier <laurent@vivier.eu>,
Warner Losh <imp@bsdimp.com>
Subject: [PULL 00/23] Pull bsd user 20211018 patches
Date: Mon, 18 Oct 2021 10:04:35 -0600 [thread overview]
Message-ID: <20211018160458.1976-1-imp@bsdimp.com> (raw)
The following changes since commit c148a0572130ff485cd2249fbdd1a3260d5e10a4:
Merge remote-tracking branch 'remotes/rth/tags/pull-tcg-20211016' into staging (2021-10-16 11:16:28 -0700)
are available in the Git repository at:
git@gitlab.com:bsdimp/qemu.git tags/pull-bsd-user-20211018-pull-request
for you to fetch changes up to c2c72da45c2ab0c76af8d4bf27bf90824bc521af:
bsd-user/signal: Create a dummy signal queueing function (2021-10-18 07:55:33 -0600)
----------------------------------------------------------------
bsd-user pull request: merge dependencies for next architectures
Merge the dependencies for arm, aarch64, and riscv64 architectures. This joins
together two patch series:
[PATCH v2 00/15] bsd-user: misc cleanup for aarch64 import
Prepare for aarch64 support (the next architecture to be upstreamed). As the
aarch64 emulation is more complete, it relies on a number of different items.
In some cases, I've pulled in the full support from bsd-user fork. In other
cases I've created a simple stub (as is the case for signals, which have
independent changes pending, so I wanted to be as minimal as possible. Since
all pre-12.2 support was purged from the bsd-user fork, go ahead and remove it
here. FreeBSD 11.x goes ouft of support at the end of the month. Remove what
little multi-version support that's in upstream.
and
[PATCH v3 0/9] bsd-user mmap fixes
This series synchronizes mmap.c with the bsd-user fork. This is a mix of old bug
fixes pulled in from linux-user, as well as some newer fixes to adress bugs
found in check-tcg and recent FreeBSD developments. There are also a couple of
style commits. Updated to migrate debugging to qemu_log.
as well as a couple of minor rebase tweaks. In addition, the next two
architectures I plan on upstreaming (arm and riscv64) also have their prereqs
satisfied with this request.
----------------------------------------------------------------
Guy Yur (1):
bsd-user/mmap.c: Don't mmap fd == -1 independently from MAP_ANON flag
Kyle Evans (1):
bsd-user/mmap.c: Implement MAP_EXCL, required by jemalloc in head
Mikaël Urankar (2):
bsd-user/mmap.c: Always zero MAP_ANONYMOUS memory in mmap_frag()
bsd-user/mmap.c: check pread's return value to fix warnings with
_FORTIFY_SOURCE
Stacey Son (1):
bsd-user/errno_defs.h: Add internal error numbers
Warner Losh (18):
bsd-user/mmap.c: MAP_ symbols are defined, so no need for ifdefs
bsd-user/mmap.c: mmap return ENOMEM on overflow
bsd-user/mmap.c: mmap prefer MAP_ANON for BSD
bsd-user/mmap.c: Convert to qemu_log logging for mmap debugging
bsd-user/mmap.c: assert that target_mprotect cannot fail
meson: *-user: only descend into *-user when configured
bsd-user/target_os-user.h: Remove support for FreeBSD older than 12.0
bsd-user/strace.list: Remove support for FreeBSD versions older than
12.0
bsd-user: TARGET_RESET define is unused, remove it
bsd-user: export get_errno and is_error from syscall.c
bsd-user: move TARGET_MC_GET_CLEAR_RET to target_os_signal.h
bsd-user/target_os_elf.h: Remove fallback ELF_HWCAP and reorder
bsd-user/target_os_elf: If ELF_HWCAP2 is defined, publish it
bsd-user: Remove used from TaskState
bsd-user: Add stop_all_tasks
bsd-user/sysarch: Move to using do_freebsd_arch_sysarch interface
bsd-user: Rename sigqueue to qemu_sigqueue
bsd-user/signal: Create a dummy signal queueing function
bsd-user/errno_defs.h | 13 ++-
bsd-user/freebsd/meson.build | 3 +
bsd-user/freebsd/os-sys.c | 27 +++++
bsd-user/freebsd/strace.list | 11 --
bsd-user/freebsd/target_os_elf.h | 12 +--
bsd-user/freebsd/target_os_signal.h | 3 +
bsd-user/freebsd/target_os_user.h | 100 +------------------
bsd-user/i386/target_arch_cpu.h | 2 -
bsd-user/i386/target_arch_signal.h | 2 -
bsd-user/main.c | 10 +-
bsd-user/meson.build | 7 ++
bsd-user/mmap.c | 144 +++++++++++++++------------
bsd-user/qemu.h | 25 +++--
bsd-user/signal.c | 11 +-
bsd-user/syscall.c | 60 +----------
bsd-user/x86_64/target_arch_cpu.h | 2 -
bsd-user/x86_64/target_arch_signal.h | 2 -
linux-user/meson.build | 4 +
meson.build | 12 ++-
roms/seabios-hppa | 2 +-
20 files changed, 188 insertions(+), 264 deletions(-)
create mode 100644 bsd-user/freebsd/meson.build
create mode 100644 bsd-user/freebsd/os-sys.c
--
2.32.0
next reply other threads:[~2021-10-18 16:13 UTC|newest]
Thread overview: 27+ messages / expand[flat|nested] mbox.gz Atom feed top
2021-10-18 16:04 Warner Losh [this message]
2021-10-18 16:04 ` [PULL 01/23] bsd-user/mmap.c: Always zero MAP_ANONYMOUS memory in mmap_frag() Warner Losh
2021-10-18 16:04 ` [PULL 02/23] bsd-user/mmap.c: check pread's return value to fix warnings with _FORTIFY_SOURCE Warner Losh
2021-10-18 16:04 ` [PULL 03/23] bsd-user/mmap.c: MAP_ symbols are defined, so no need for ifdefs Warner Losh
2021-10-18 16:04 ` [PULL 04/23] bsd-user/mmap.c: mmap return ENOMEM on overflow Warner Losh
2021-10-18 16:04 ` [PULL 05/23] bsd-user/mmap.c: mmap prefer MAP_ANON for BSD Warner Losh
2021-10-18 16:04 ` [PULL 06/23] bsd-user/mmap.c: Convert to qemu_log logging for mmap debugging Warner Losh
2021-10-18 16:04 ` [PULL 07/23] bsd-user/mmap.c: Don't mmap fd == -1 independently from MAP_ANON flag Warner Losh
2021-10-18 18:45 ` Richard Henderson
2021-10-18 18:47 ` Warner Losh
2021-10-18 18:48 ` Richard Henderson
2021-10-18 16:04 ` [PULL 08/23] bsd-user/mmap.c: Implement MAP_EXCL, required by jemalloc in head Warner Losh
2021-10-18 16:04 ` [PULL 09/23] bsd-user/mmap.c: assert that target_mprotect cannot fail Warner Losh
2021-10-18 16:04 ` [PULL 10/23] meson: *-user: only descend into *-user when configured Warner Losh
2021-10-18 16:04 ` [PULL 11/23] bsd-user/target_os-user.h: Remove support for FreeBSD older than 12.0 Warner Losh
2021-10-18 16:04 ` [PULL 12/23] bsd-user/strace.list: Remove support for FreeBSD versions " Warner Losh
2021-10-18 16:04 ` [PULL 13/23] bsd-user: TARGET_RESET define is unused, remove it Warner Losh
2021-10-18 16:04 ` [PULL 14/23] bsd-user: export get_errno and is_error from syscall.c Warner Losh
2021-10-18 16:04 ` [PULL 15/23] bsd-user/errno_defs.h: Add internal error numbers Warner Losh
2021-10-18 16:04 ` [PULL 16/23] bsd-user: move TARGET_MC_GET_CLEAR_RET to target_os_signal.h Warner Losh
2021-10-18 16:04 ` [PULL 17/23] bsd-user/target_os_elf.h: Remove fallback ELF_HWCAP and reorder Warner Losh
2021-10-18 16:04 ` [PULL 18/23] bsd-user/target_os_elf: If ELF_HWCAP2 is defined, publish it Warner Losh
2021-10-18 16:04 ` [PULL 19/23] bsd-user: Remove used from TaskState Warner Losh
2021-10-18 16:04 ` [PULL 20/23] bsd-user: Add stop_all_tasks Warner Losh
2021-10-18 16:04 ` [PULL 21/23] bsd-user/sysarch: Move to using do_freebsd_arch_sysarch interface Warner Losh
2021-10-18 16:04 ` [PULL 22/23] bsd-user: Rename sigqueue to qemu_sigqueue Warner Losh
2021-10-18 16:04 ` [PULL 23/23] bsd-user/signal: Create a dummy signal queueing function Warner Losh
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=20211018160458.1976-1-imp@bsdimp.com \
--to=imp@bsdimp.com \
--cc=kevans@freebsd.org \
--cc=laurent@vivier.eu \
--cc=qemu-devel@nongnu.org \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
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.