From: Sean Bruno <sbruno@freebsd.org>
To: qemu-devel@nongnu.org
Subject: [Qemu-devel] [PATCH 0/4] bsd-user: Update Queue
Date: Thu, 19 Jun 2014 17:19:44 -0700 [thread overview]
Message-ID: <1403223588-58739-1-git-send-email-sbruno@freebsd.org> (raw)
This patchset brings us a couple of steps closer to the FreeBSD Development
tree, Stacey Son's bsd-user branch and qemu-devel port maintained out of tree.
These patches are designed to begin to break apart the architectures
in bsd-user for the upcoming new arch support patches.
Patch 1/4 of this set is a reset of Patch 5/10 from the last bsd-user
update push. It addresses Peter Maydell's commentary about missing and
redundant code for print_sysarch and the build breakage for netbsd and
openbsd bsd-user programs.
Patch 4/4 of this set includes Patch 10/10 from the last bsd-user update
push. It includes the code that uses the #define vaules as to avoid the
possibility of commiting dead code.
Sean Bruno (2):
bsd-user: Implement new syscall print_sysarch and add strace support
bsd-user: Rename struct linux_binprm to struct bsd_binprm
Stacey Son (2):
bsd-user: move arch/OS dependent code out of main.c
bsd-user: move arch/OS dependent code out of syscall.c
bsd-user/Makefile.objs | 2 +-
bsd-user/bsdload.c | 170 ++++--
bsd-user/elfload.c | 11 +-
bsd-user/freebsd/host_os.h | 46 ++
bsd-user/freebsd/os-strace.h | 29 +
bsd-user/freebsd/os-sys.c | 285 ++++++++++
bsd-user/freebsd/strace.list | 2 +-
bsd-user/freebsd/target_os_stack.h | 157 ++++++
bsd-user/freebsd/target_os_vmparam.h | 23 +
bsd-user/i386/syscall.h | 23 +
bsd-user/i386/target_arch.h | 13 +
bsd-user/i386/target_arch_cpu.c | 79 +++
bsd-user/i386/target_arch_cpu.h | 300 +++++++++++
bsd-user/i386/target_arch_sigtramp.h | 11 +
bsd-user/i386/target_arch_sysarch.h | 78 +++
bsd-user/i386/target_arch_vmparam.h | 28 +
bsd-user/i386/target_signal.h | 6 -
bsd-user/main.c | 927 +++++++-------------------------
bsd-user/mmap.c | 2 +-
bsd-user/netbsd/host_os.h | 31 ++
bsd-user/netbsd/os-strace.h | 29 +
bsd-user/netbsd/os-sys.c | 46 ++
bsd-user/netbsd/target_os_stack.h | 33 ++
bsd-user/netbsd/target_os_vmparam.h | 23 +
bsd-user/openbsd/host_os.h | 31 ++
bsd-user/openbsd/os-strace.h | 29 +
bsd-user/openbsd/os-sys.c | 46 ++
bsd-user/openbsd/target_os_stack.h | 33 ++
bsd-user/openbsd/target_os_vmparam.h | 23 +
bsd-user/qemu.h | 50 +-
bsd-user/sparc/syscall.h | 29 +-
bsd-user/sparc/target_arch.h | 11 +
bsd-user/sparc/target_arch_cpu.c | 113 ++++
bsd-user/sparc/target_arch_cpu.h | 158 ++++++
bsd-user/sparc/target_arch_sigtramp.h | 11 +
bsd-user/sparc/target_arch_sysarch.h | 52 ++
bsd-user/sparc/target_arch_vmparam.h | 37 ++
bsd-user/sparc/target_signal.h | 5 -
bsd-user/sparc64/syscall.h | 28 +-
bsd-user/sparc64/target_arch.h | 11 +
bsd-user/sparc64/target_arch_cpu.c | 118 ++++
bsd-user/sparc64/target_arch_cpu.h | 191 +++++++
bsd-user/sparc64/target_arch_sigtramp.h | 11 +
bsd-user/sparc64/target_arch_sysarch.h | 52 ++
bsd-user/sparc64/target_arch_vmparam.h | 37 ++
bsd-user/sparc64/target_signal.h | 5 -
bsd-user/strace.c | 10 +
bsd-user/syscall.c | 210 +-------
bsd-user/x86_64/syscall.h | 26 +-
bsd-user/x86_64/target_arch.h | 13 +
bsd-user/x86_64/target_arch_cpu.c | 79 +++
bsd-user/x86_64/target_arch_cpu.h | 322 +++++++++++
bsd-user/x86_64/target_arch_sigtramp.h | 11 +
bsd-user/x86_64/target_arch_sysarch.h | 76 +++
bsd-user/x86_64/target_arch_vmparam.h | 28 +
bsd-user/x86_64/target_signal.h | 5 -
56 files changed, 3207 insertions(+), 1008 deletions(-)
create mode 100644 bsd-user/freebsd/host_os.h
create mode 100644 bsd-user/freebsd/os-strace.h
create mode 100644 bsd-user/freebsd/os-sys.c
create mode 100644 bsd-user/freebsd/target_os_stack.h
create mode 100644 bsd-user/freebsd/target_os_vmparam.h
create mode 100644 bsd-user/i386/target_arch.h
create mode 100644 bsd-user/i386/target_arch_cpu.c
create mode 100644 bsd-user/i386/target_arch_cpu.h
create mode 100644 bsd-user/i386/target_arch_sigtramp.h
create mode 100644 bsd-user/i386/target_arch_sysarch.h
create mode 100644 bsd-user/i386/target_arch_vmparam.h
create mode 100644 bsd-user/netbsd/host_os.h
create mode 100644 bsd-user/netbsd/os-strace.h
create mode 100644 bsd-user/netbsd/os-sys.c
create mode 100644 bsd-user/netbsd/target_os_stack.h
create mode 100644 bsd-user/netbsd/target_os_vmparam.h
create mode 100644 bsd-user/openbsd/host_os.h
create mode 100644 bsd-user/openbsd/os-strace.h
create mode 100644 bsd-user/openbsd/os-sys.c
create mode 100644 bsd-user/openbsd/target_os_stack.h
create mode 100644 bsd-user/openbsd/target_os_vmparam.h
create mode 100644 bsd-user/sparc/target_arch.h
create mode 100644 bsd-user/sparc/target_arch_cpu.c
create mode 100644 bsd-user/sparc/target_arch_cpu.h
create mode 100644 bsd-user/sparc/target_arch_sigtramp.h
create mode 100644 bsd-user/sparc/target_arch_sysarch.h
create mode 100644 bsd-user/sparc/target_arch_vmparam.h
create mode 100644 bsd-user/sparc64/target_arch.h
create mode 100644 bsd-user/sparc64/target_arch_cpu.c
create mode 100644 bsd-user/sparc64/target_arch_cpu.h
create mode 100644 bsd-user/sparc64/target_arch_sigtramp.h
create mode 100644 bsd-user/sparc64/target_arch_sysarch.h
create mode 100644 bsd-user/sparc64/target_arch_vmparam.h
create mode 100644 bsd-user/x86_64/target_arch.h
create mode 100644 bsd-user/x86_64/target_arch_cpu.c
create mode 100644 bsd-user/x86_64/target_arch_cpu.h
create mode 100644 bsd-user/x86_64/target_arch_sigtramp.h
create mode 100644 bsd-user/x86_64/target_arch_sysarch.h
create mode 100644 bsd-user/x86_64/target_arch_vmparam.h
--
2.0.0
next reply other threads:[~2014-06-20 0:20 UTC|newest]
Thread overview: 11+ messages / expand[flat|nested] mbox.gz Atom feed top
2014-06-20 0:19 Sean Bruno [this message]
2014-06-20 0:19 ` [Qemu-devel] [PATCH 1/4] bsd-user: Implement new syscall print_sysarch and add strace support Sean Bruno
2014-07-03 13:19 ` Peter Maydell
2014-06-20 0:19 ` [Qemu-devel] [PATCH 2/4] bsd-user: move arch/OS dependent code out of main.c Sean Bruno
2014-07-03 13:45 ` Peter Maydell
2014-06-20 0:19 ` [Qemu-devel] [PATCH 3/4] bsd-user: Rename linux_binprm to bsd_binprm Sean Bruno
2014-07-03 13:23 ` Peter Maydell
2014-06-20 0:19 ` [Qemu-devel] [PATCH 4/4] bsd-user: move arch/OS dependent code out of syscall.c Sean Bruno
2014-07-03 13:55 ` Peter Maydell
2014-06-21 16:39 ` [Qemu-devel] [PATCH 0/4] bsd-user: Update Queue Sean Bruno
2014-06-23 14:20 ` Sean Bruno
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=1403223588-58739-1-git-send-email-sbruno@freebsd.org \
--to=sbruno@freebsd.org \
--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 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).