From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([140.186.70.92]:47808) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1QbEvn-0001el-UM for qemu-devel@nongnu.org; Mon, 27 Jun 2011 12:45:08 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1QbEvl-0002ZJ-Cs for qemu-devel@nongnu.org; Mon, 27 Jun 2011 12:45:03 -0400 Received: from mnementh.archaic.org.uk ([81.2.115.146]:57735) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1QbEvk-0002Y8-IE for qemu-devel@nongnu.org; Mon, 27 Jun 2011 12:45:01 -0400 From: Peter Maydell Date: Mon, 27 Jun 2011 17:44:50 +0100 Message-Id: <1309193092-26640-1-git-send-email-peter.maydell@linaro.org> Subject: [Qemu-devel] [PATCH 0/2] linux-user: Implement prlimit64 List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , To: qemu-devel@nongnu.org Cc: Riku Voipio , patches@linaro.org The main purpose of this patch series is to implement the prlimit64 syscall, which is what patch 2 does. Since prlimit64 is a new syscall number, I had to add it to the syscall number definitions. Patch 1 is therefore a comprehensive update of the syscall number tables for all archs to match the mainline 2.6.39.2 defined syscalls. The exception is that I haven't touched the unicore32 syscall_nr.h, because as far as I can tell it doesn't match the kernel's syscall numbers for that architecture at all... Peter Maydell (2): linux-user: Add syscall numbers from kernel 2.6.39.2 linux-user: Implement prlimit64 syscall 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/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 | 43 ++++++++++++++++++++++++++++++++++++ linux-user/syscall_defs.h | 5 ++++ linux-user/x86_64/syscall_nr.h | 12 ++++++++++ 18 files changed, 301 insertions(+), 5 deletions(-) -- 1.7.4.1