qemu-devel.nongnu.org archive mirror
 help / color / mirror / Atom feed
From: riku.voipio@linaro.org
To: qemu-devel@nongnu.org
Cc: Riku Voipio <riku.voipio@linaro.org>
Subject: [Qemu-devel] [PULL 00/17] linux-user queque
Date: Mon, 11 Jan 2016 16:16:02 +0200	[thread overview]
Message-ID: <cover.1452521686.git.riku.voipio@linaro.org> (raw)

From: Riku Voipio <riku.voipio@linaro.org>

The following changes since commit 38a762fec63fd5c035aae29ba9a77d357e21e4a7:

  Merge remote-tracking branch 'remotes/berrange/tags/pull-crypto-fixes-2015-12-23-1' into staging (2015-12-23 13:53:32 +0000)

are available in the git repository at:

  git://git.linaro.org/people/riku.voipio/qemu.git tags/pull-linux-user-20160111

for you to fetch changes up to 530c003252e07f1ea9df7f8a9adb1082d3a2eb08:

  linux-user/mmap.c: Use end instead of real_end in target_mmap (2016-01-11 15:01:47 +0200)

----------------------------------------------------------------
January 2016 Linux-user queque

----------------------------------------------------------------
Chen Gang (3):
      linux-user/mmap.c: Always zero MAP_ANONYMOUS memory in mmap_frag()
      linux-user/syscall.c: Use SOL_SOCKET instead of level for setsockopt()
      linux-user/mmap.c: Use end instead of real_end in target_mmap

Harmandeep Kaur (1):
      linux-user/syscall.c: malloc()/calloc() to g_malloc()/g_try_malloc()/g_new0()

John Paul Adrian Glaubitz (2):
      linux-user: Update m68k syscall definitions to match Linux 4.4.
      linux-user: Add SOCKOP_sendmmsg and SOCKOP_recvmmsg socket call, wire them up.

Laurent Vivier (9):
      linux-user: add signalfd/signalfd4 syscalls
      linux-user: correctly align target_epoll_event
      linux-user: in poll(), if nfds is 0, pfd can be NULL
      linux-user: SOCK_PACKET uses network endian to encode protocol in socket()
      linux-user: rename TargetFdFunc to TargetFdDataFunc, and structure fields accordingly
      linux-user: add a function hook to translate sockaddr
      linux-user: manage bind with a socket of SOCK_PACKET type.
      linux-user: check fd is >= 0 in fd_trans_host_to_target_data/fd_trans_host_to_target_addr
      linux-user,sh4: fix signal retcode address

Michael Tokarev (2):
      unicore32: convert get_sp_from_cpustate from macro to inline
      linux-user: enable sigaltstack for all architectures

 linux-user/m68k/syscall_nr.h         |  27 +++++++
 linux-user/mmap.c                    |   6 +-
 linux-user/signal.c                  |  16 ++--
 linux-user/syscall.c                 | 297 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++---------
 linux-user/syscall_defs.h            |  21 +++--
 linux-user/unicore32/target_signal.h |   6 +-
 6 files changed, 315 insertions(+), 58 deletions(-)

-- 
2.6.4

             reply	other threads:[~2016-01-11 14:16 UTC|newest]

Thread overview: 20+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2016-01-11 14:16 riku.voipio [this message]
2016-01-11 14:16 ` [Qemu-devel] [PULL 01/17] linux-user: add signalfd/signalfd4 syscalls riku.voipio
2016-01-11 14:16 ` [Qemu-devel] [PULL 02/17] linux-user: correctly align target_epoll_event riku.voipio
2016-01-11 14:16 ` [Qemu-devel] [PULL 03/17] linux-user: in poll(), if nfds is 0, pfd can be NULL riku.voipio
2016-01-11 14:16 ` [Qemu-devel] [PULL 04/17] linux-user/syscall.c: malloc()/calloc() to g_malloc()/g_try_malloc()/g_new0() riku.voipio
2016-01-11 14:16 ` [Qemu-devel] [PULL 05/17] linux-user: SOCK_PACKET uses network endian to encode protocol in socket() riku.voipio
2016-01-11 14:16 ` [Qemu-devel] [PULL 06/17] linux-user: rename TargetFdFunc to TargetFdDataFunc, and structure fields accordingly riku.voipio
2016-01-11 14:16 ` [Qemu-devel] [PULL 07/17] linux-user: add a function hook to translate sockaddr riku.voipio
2016-01-11 14:16 ` [Qemu-devel] [PULL 08/17] linux-user: manage bind with a socket of SOCK_PACKET type riku.voipio
2016-01-11 14:16 ` [Qemu-devel] [PULL 09/17] linux-user: check fd is >= 0 in fd_trans_host_to_target_data/fd_trans_host_to_target_addr riku.voipio
2016-01-11 14:16 ` [Qemu-devel] [PULL 10/17] linux-user, sh4: fix signal retcode address riku.voipio
2016-01-11 14:16 ` [Qemu-devel] [PULL 11/17] linux-user/mmap.c: Always zero MAP_ANONYMOUS memory in mmap_frag() riku.voipio
2016-01-11 14:16 ` [Qemu-devel] [PULL 12/17] unicore32: convert get_sp_from_cpustate from macro to inline riku.voipio
2016-01-11 14:16 ` [Qemu-devel] [PULL 13/17] linux-user: enable sigaltstack for all architectures riku.voipio
2016-01-11 14:16 ` [Qemu-devel] [PULL 14/17] linux-user/syscall.c: Use SOL_SOCKET instead of level for setsockopt() riku.voipio
2016-01-11 14:16 ` [Qemu-devel] [PULL 15/17] linux-user: Update m68k syscall definitions to match Linux 4.4 riku.voipio
2016-01-11 14:16 ` [Qemu-devel] [PULL 16/17] linux-user: Add SOCKOP_sendmmsg and SOCKOP_recvmmsg socket call, wire them up riku.voipio
2016-01-11 14:51   ` John Paul Adrian Glaubitz
2016-01-11 14:16 ` [Qemu-devel] [PULL 17/17] linux-user/mmap.c: Use end instead of real_end in target_mmap riku.voipio
2016-01-11 15:12 ` [Qemu-devel] [PULL 00/17] linux-user queque 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=cover.1452521686.git.riku.voipio@linaro.org \
    --to=riku.voipio@linaro.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).