From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([140.186.70.92]:52337) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1QgHCV-0005bu-MQ for qemu-devel@nongnu.org; Mon, 11 Jul 2011 10:11:08 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1QgHCU-0000pq-8G for qemu-devel@nongnu.org; Mon, 11 Jul 2011 10:11:07 -0400 Received: from afflict.kos.to ([92.243.29.197]:37483) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1QgHCT-0000pd-TN for qemu-devel@nongnu.org; Mon, 11 Jul 2011 10:11:06 -0400 From: riku.voipio@iki.fi Date: Mon, 11 Jul 2011 17:10:55 +0300 Message-Id: MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: quoted-printable Subject: [Qemu-devel] [PATCH 0/7] pending linux-user patches List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , To: qemu-devel@nongnu.org Cc: Riku Voipio From: Riku Voipio Following linux-user patches have been submitted since the last round. Last chance to comment before I ask for pull. Patches also available in the git repository at: git://git.linaro.org/people/rikuvoipio/qemu.git linux-user-for-upstream C=C3=A9dric VINCENT (4): arm-semi: Provide access to CLI arguments passed through the "-append" option linux-user: Add support for KD...LED ioctls linux-user: Add support for more VT ioctls linux-user: Add support for even more FB ioctls Peter Maydell (3): linux-user: Add syscall numbers from kernel 2.6.39.2 linux-user: Implement prlimit64 syscall linux-user/syscall.c: Enforce pselect6 sigset size restrictions arm-semi.c | 113 +++++++++++++++++++++---------= ------ linux-user/alpha/syscall_nr.h | 23 +++++++- linux-user/arm/syscall_nr.h | 13 ++++ linux-user/cris/syscall_nr.h | 2 + linux-user/i386/syscall_nr.h | 12 ++++ linux-user/ioctls.h | 13 ++++ linux-user/m68k/syscall_nr.h | 16 +++++ linux-user/main.c | 27 +++++++++ linux-user/microblaze/syscall_nr.h | 14 ++++- linux-user/mips/syscall_nr.h | 13 ++++ linux-user/mips64/syscall_nr.h | 13 ++++ linux-user/mipsn32/syscall_nr.h | 14 +++++ linux-user/ppc/syscall_nr.h | 30 ++++++++++ linux-user/s390x/syscall_nr.h | 13 ++++- linux-user/sh4/syscall_nr.h | 32 ++++++++++ linux-user/sparc/syscall_nr.h | 12 ++++ linux-user/sparc64/syscall_nr.h | 12 ++++ linux-user/syscall.c | 48 +++++++++++++++ linux-user/syscall_defs.h | 17 ++++++ linux-user/syscall_types.h | 20 ++++++ linux-user/x86_64/syscall_nr.h | 12 ++++ 21 files changed, 418 insertions(+), 51 deletions(-) --=20 1.7.4.1