From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([2001:4830:134:3::10]:53696) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1bwUL9-0006Du-7Y for qemu-devel@nongnu.org; Tue, 18 Oct 2016 09:22:00 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1bwUL6-0000bI-2b for qemu-devel@nongnu.org; Tue, 18 Oct 2016 09:21:59 -0400 Received: from mail-lf0-x22e.google.com ([2a00:1450:4010:c07::22e]:36857) by eggs.gnu.org with esmtps (TLS1.0:RSA_AES_128_CBC_SHA1:16) (Exim 4.71) (envelope-from ) id 1bwUL5-0000aR-Jx for qemu-devel@nongnu.org; Tue, 18 Oct 2016 09:21:56 -0400 Received: by mail-lf0-x22e.google.com with SMTP id b75so346715105lfg.3 for ; Tue, 18 Oct 2016 06:21:55 -0700 (PDT) From: riku.voipio@linaro.org Date: Tue, 18 Oct 2016 16:21:28 +0300 Message-Id: Subject: [Qemu-devel] [PULL v2 00/22] linux-user changes List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , To: qemu-devel@nongnu.org Cc: Peter Maydell , Riku Voipio From: Riku Voipio The following changes since commit 7bf59dfec4234e75e31b3f397374cb5bab1a5b2c: Merge remote-tracking branch 'remotes/dgibson/tags/ppc-for-2.8-20161017' into staging (2016-10-17 12:59:54 +0100) are available in the git repository at: git://git.linaro.org/people/riku.voipio/qemu.git tags/pull-linux-user-20161018 for you to fetch changes up to cee1d8afec98e0e686c894b06982e08b8bf242ba: linux-user: disable unicore32 linux-user build (2016-10-18 11:57:57 +0300) ---------------------------------------------------------------- Linux-user changes, mostly bugfixes and adding support for some new syscalls and some obscure syscalls as well. Includes some missed patches from earlier rounds, and dropping unicore32 target. v2: fix the syslog patch and test build with clang-3.8 ---------------------------------------------------------------- Aleksandar Markovic (13): linux-user: Add support for adjtimex() syscall linux-user: Add support for ustat() syscall linux-user: Fix mq_open() syscall support linux-user: Fix msgrcv() and msgsnd() syscalls support linux-user: Fix socketcall() syscall support linux-user: Fix syslog() syscall support linux-user: Remove a duplicate item from strace.list linux-user: Add support for clock_adjtime() syscall linux-user: Add support for syncfs() syscall linux-user: Update mips_syscall_args[] array in main.c linux-user: Update ioctls definitions for Mips32 linux-user: Redirect termbits.h for Mips64 to termbits.h for Mips32 linux-user: Fix fadvise64() syscall support for Mips32 Dejan Jovicevic (2): linux-user: added support for preadv() system call. linux-user: added support for pwritev() system call. Felix Janda (1): linux-user: use libc wrapper instead of direct mremap syscall Laurent Vivier (2): linux-user: add kcmp() syscall linux-user: add RTA_PRIORITY in netlink Peter Maydell (3): linux-user: sparc64: Use correct target SHMLBA in shmat() linux-user: Don't use alloca() for epoll_wait's epoll event array linux-user: Fix definition of target_sigevent for 32-bit guests Riku Voipio (1): linux-user: disable unicore32 linux-user build configure | 36 +++ default-configs/unicore32-linux-user.mak | 1 - linux-user/main.c | 24 +- linux-user/mips/syscall_nr.h | 2 +- linux-user/mips/termbits.h | 12 + linux-user/mips64/termbits.h | 245 +------------------- linux-user/mmap.c | 14 +- linux-user/sparc64/target_syscall.h | 7 + linux-user/strace.c | 233 +++++++++++++++++-- linux-user/strace.list | 13 +- linux-user/syscall.c | 379 ++++++++++++++++++++++++------- linux-user/syscall_defs.h | 117 +++++++--- 12 files changed, 698 insertions(+), 385 deletions(-) delete mode 100644 default-configs/unicore32-linux-user.mak -- 2.1.4