qemu-devel.nongnu.org archive mirror
 help / color / mirror / Atom feed
* [Qemu-devel] [PULL 00/17] linux-user queque
@ 2016-01-11 14:16 riku.voipio
  2016-01-11 14:16 ` [Qemu-devel] [PULL 01/17] linux-user: add signalfd/signalfd4 syscalls riku.voipio
                   ` (17 more replies)
  0 siblings, 18 replies; 20+ messages in thread
From: riku.voipio @ 2016-01-11 14:16 UTC (permalink / raw)
  To: qemu-devel; +Cc: Riku Voipio

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

^ permalink raw reply	[flat|nested] 20+ messages in thread

end of thread, other threads:[~2016-01-11 15:12 UTC | newest]

Thread overview: 20+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2016-01-11 14:16 [Qemu-devel] [PULL 00/17] linux-user queque riku.voipio
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

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).