From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from mailman by lists.gnu.org with tmda-scanned (Exim 4.43) id 1MHFrs-0008Hz-O1 for qemu-devel@nongnu.org; Thu, 18 Jun 2009 07:33:20 -0400 Received: from exim by lists.gnu.org with spam-scanned (Exim 4.43) id 1MHFrr-0008Gq-Ab for qemu-devel@nongnu.org; Thu, 18 Jun 2009 07:33:20 -0400 Received: from [199.232.76.173] (port=39714 helo=monty-python.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1MHFrr-0008Gi-11 for qemu-devel@nongnu.org; Thu, 18 Jun 2009 07:33:19 -0400 Received: from lechat.rtp-net.org ([88.191.19.38]:58792) by monty-python.gnu.org with esmtp (Exim 4.60) (envelope-from ) id 1MHFrq-0003O1-KZ for qemu-devel@nongnu.org; Thu, 18 Jun 2009 07:33:18 -0400 Received: from lechat.rtp-net.org (localhost [127.0.0.1]) by lechat.rtp-net.org (Postfix) with ESMTP id B53F110086 for ; Thu, 18 Jun 2009 13:38:03 +0200 (CEST) From: Arnaud Patard (Rtp) Date: Thu, 18 Jun 2009 13:38:03 +0200 Message-ID: <87skhxsrfo.fsf@lechat.rtp-net.org> MIME-Version: 1.0 Content-Type: multipart/mixed; boundary="=-=-=" Subject: [Qemu-devel] [PATCH] linux-user/syscall.c: add missing linux-specific fnctl commands List-Id: qemu-devel.nongnu.org List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , To: qemu-devel@nongnu.org --=-=-= This patch is adding missing linux-specific fcntl command. I've tested with ltp test SETLEASE and GETLEASE but there was no tests for F_NOTIFY and F_DUPFD_CLOEXEC. Signed-off-by: Arnaud Patard --=-=-= Content-Type: text/x-diff Content-Disposition: inline; filename=fcntl_linuxspecific.patch Index: qemu/linux-user/syscall.c =================================================================== --- qemu.orig/linux-user/syscall.c +++ qemu/linux-user/syscall.c @@ -3654,6 +3654,11 @@ static int target_to_host_fcntl_cmd(int case TARGET_F_SETLKW64: return F_SETLKW64; #endif + case TARGET_F_SETLEASE: + case TARGET_F_GETLEASE: + case TARGET_F_NOTIFY: + case TARGET_F_DUPFD_CLOEXEC: + return cmd; default: return -TARGET_EINVAL; } Index: qemu/linux-user/syscall_defs.h =================================================================== --- qemu.orig/linux-user/syscall_defs.h +++ qemu/linux-user/syscall_defs.h @@ -1732,6 +1732,11 @@ struct target_statfs64 { }; #endif +#define TARGET_F_LINUX_SPECIFIC_BASE 1024 +#define TARGET_F_SETLEASE (TARGET_F_LINUX_SPECIFIC_BASE + 0) +#define TARGET_F_GETLEASE (TARGET_F_LINUX_SPECIFIC_BASE + 1) +#define TARGET_F_NOTIFY (TARGET_F_LINUX_SPECIFIC_BASE + 2) +#define TARGET_F_DUPFD_CLOEXEC (TARGET_F_LINUX_SPECIFIC_BASE + 6) #define TARGET_F_DUPFD 0 /* dup */ #define TARGET_F_GETFD 1 /* get close_on_exec */ --=-=-=--