qemu-devel.nongnu.org archive mirror
 help / color / mirror / Atom feed
From: Peter Maydell <peter.maydell@linaro.org>
To: qemu-devel@nongnu.org
Cc: Blue Swirl <blauwirbel@gmail.com>
Subject: [Qemu-devel] [PULL 00/15] bsd-user queue
Date: Wed, 11 Jun 2014 15:29:38 +0100	[thread overview]
Message-ID: <1402496993-27206-1-git-send-email-peter.maydell@linaro.org> (raw)

Here, as promised, is a pull request for some bsd-user patches I've
been curating with the aid of Sean Bruno. Nothing particularly
exciting here but I didn't want to build up a huge pile of patches.

thanks
-- PMM


The following changes since commit b780bf8eff43fc49b071795292dea5d05990fff3:

  Merge remote-tracking branch 'remotes/mjt/tags/trivial-patches-2014-06-10' into staging (2014-06-10 17:16:03 +0100)

are available in the git repository at:


  git://git.linaro.org/people/pmaydell/qemu-arm.git tags/pull-bsd-user-20140611

for you to fetch changes up to c4af6d4b13cc263b20133096f4de7b48e0aa7b46:

  bsd-user: Fix syscall format, add strace support for more syscalls (2014-06-11 00:25:06 +0100)

----------------------------------------------------------------
bsd-user queue:
 * build fixes
 * improvements to strace

----------------------------------------------------------------
Natanael Copa (4):
      util/qemu-openpty: fix build with musl libc by include termios.h as fallback
      xen: replace ffsl with ctzl
      vhost: replace ffsl with ctzl
      exec: replace ffsl with ctzl

Peter Maydell (2):
      util/hbitmap.c: Use ctpopl rather than reimplementing a local equivalent
      bsd-user/mmap.c: Don't try to override g_malloc/g_free

Sean Bruno (7):
      bsd-user: GPL v2 attribution update and style
      bsd-user: Implement strace support for print_sysctl syscall
      bsd-user: Implement strace support for print_ioctl syscall
      bsd-user: Implement strace support for __acl_* syscalls
      bsd-user: Implement strace support for extattr_* syscalls
      bsd-user: Implement strace support for thr_* syscalls
      bsd-user: Fix syscall format, add strace support for more syscalls

Stacey Son (2):
      bsd-user: refresh freebsd system call numbers
      bsd-user: add HOST_VARIANT_DIR for various *BSD dependent code

 Makefile.target               |   3 +-
 bsd-user/freebsd/strace.list  |  76 +++-
 bsd-user/freebsd/syscall_nr.h | 813 +++++++++++++++++++++++-------------------
 bsd-user/mmap.c               |  60 ----
 bsd-user/qemu.h               |  26 ++
 bsd-user/strace.c             | 167 ++++++---
 configure                     |  11 +
 hw/virtio/vhost.c             |   6 +-
 include/exec/ram_addr.h       |   2 +-
 util/hbitmap.c                |   9 +-
 util/qemu-openpty.c           |   2 +
 xen-hvm.c                     |   2 +-
 12 files changed, 669 insertions(+), 508 deletions(-)

             reply	other threads:[~2014-06-11 14:30 UTC|newest]

Thread overview: 17+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2014-06-11 14:29 Peter Maydell [this message]
2014-06-11 14:29 ` [Qemu-devel] [PULL 01/15] bsd-user: refresh freebsd system call numbers Peter Maydell
2014-06-11 14:29 ` [Qemu-devel] [PULL 02/15] util/hbitmap.c: Use ctpopl rather than reimplementing a local equivalent Peter Maydell
2014-06-11 14:29 ` [Qemu-devel] [PULL 03/15] bsd-user/mmap.c: Don't try to override g_malloc/g_free Peter Maydell
2014-06-11 14:29 ` [Qemu-devel] [PULL 04/15] util/qemu-openpty: fix build with musl libc by include termios.h as fallback Peter Maydell
2014-06-11 14:29 ` [Qemu-devel] [PULL 05/15] xen: replace ffsl with ctzl Peter Maydell
2014-06-11 14:29 ` [Qemu-devel] [PULL 06/15] vhost: " Peter Maydell
2014-06-11 14:29 ` [Qemu-devel] [PULL 07/15] exec: " Peter Maydell
2014-06-11 14:29 ` [Qemu-devel] [PULL 08/15] bsd-user: add HOST_VARIANT_DIR for various *BSD dependent code Peter Maydell
2014-06-11 14:29 ` [Qemu-devel] [PULL 09/15] bsd-user: GPL v2 attribution update and style Peter Maydell
2014-06-11 14:29 ` [Qemu-devel] [PULL 10/15] bsd-user: Implement strace support for print_sysctl syscall Peter Maydell
2014-06-11 14:29 ` [Qemu-devel] [PULL 11/15] bsd-user: Implement strace support for print_ioctl syscall Peter Maydell
2014-06-11 14:29 ` [Qemu-devel] [PULL 12/15] bsd-user: Implement strace support for __acl_* syscalls Peter Maydell
2014-06-11 14:29 ` [Qemu-devel] [PULL 13/15] bsd-user: Implement strace support for extattr_* syscalls Peter Maydell
2014-06-11 14:29 ` [Qemu-devel] [PULL 14/15] bsd-user: Implement strace support for thr_* syscalls Peter Maydell
2014-06-11 14:29 ` [Qemu-devel] [PULL 15/15] bsd-user: Fix syscall format, add strace support for more syscalls Peter Maydell
2014-06-11 20:33 ` [Qemu-devel] [PULL 00/15] bsd-user queue Peter Maydell

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=1402496993-27206-1-git-send-email-peter.maydell@linaro.org \
    --to=peter.maydell@linaro.org \
    --cc=blauwirbel@gmail.com \
    --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).