From owner-svn-src-all@FreeBSD.ORG Mon Apr 16 22:58:29 2012 Return-Path: Delivered-To: svn-src-all@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 80095106564A; Mon, 16 Apr 2012 22:58:29 +0000 (UTC) (envelope-from jkim@FreeBSD.org) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:4f8:fff6::2c]) by mx1.freebsd.org (Postfix) with ESMTP id 517B98FC0C; Mon, 16 Apr 2012 22:58:29 +0000 (UTC) Received: from svn.freebsd.org (localhost [127.0.0.1]) by svn.freebsd.org (8.14.4/8.14.4) with ESMTP id q3GMwTcg054905; Mon, 16 Apr 2012 22:58:29 GMT (envelope-from jkim@svn.freebsd.org) Received: (from jkim@localhost) by svn.freebsd.org (8.14.4/8.14.4/Submit) id q3GMwT8a054902; Mon, 16 Apr 2012 22:58:29 GMT (envelope-from jkim@svn.freebsd.org) Message-Id: <201204162258.q3GMwT8a054902@svn.freebsd.org> From: Jung-uk Kim Date: Mon, 16 Apr 2012 22:58:29 +0000 (UTC) To: src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-head@freebsd.org X-SVN-Group: head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Cc: Subject: svn commit: r234357 - in head/sys: amd64/linux32 i386/linux X-BeenThere: svn-src-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: "SVN commit messages for the entire src tree \(except for " user" and " projects" \)" List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 16 Apr 2012 22:58:29 -0000 Author: jkim Date: Mon Apr 16 22:58:28 2012 New Revision: 234357 URL: http://svn.freebsd.org/changeset/base/234357 Log: Correct arguments of stat64, fstat64 and lstat64 syscalls for Linuxulator. Modified: head/sys/amd64/linux32/syscalls.master head/sys/i386/linux/syscalls.master Modified: head/sys/amd64/linux32/syscalls.master ============================================================================== --- head/sys/amd64/linux32/syscalls.master Mon Apr 16 21:36:55 2012 (r234356) +++ head/sys/amd64/linux32/syscalls.master Mon Apr 16 22:58:28 2012 (r234357) @@ -351,12 +351,12 @@ l_loff_t length); } 194 AUE_FTRUNCATE STD { int linux_ftruncate64(l_uint fd, \ l_loff_t length); } -195 AUE_STAT STD { int linux_stat64(char *filename, \ - struct l_stat64 *statbuf, l_long flags); } -196 AUE_LSTAT STD { int linux_lstat64(char *filename, \ - struct l_stat64 *statbuf, l_long flags); } -197 AUE_FSTAT STD { int linux_fstat64(l_ulong fd, \ - struct l_stat64 *statbuf, l_long flags); } +195 AUE_STAT STD { int linux_stat64(const char *filename, \ + struct l_stat64 *statbuf); } +196 AUE_LSTAT STD { int linux_lstat64(const char *filename, \ + struct l_stat64 *statbuf); } +197 AUE_FSTAT STD { int linux_fstat64(l_int fd, \ + struct l_stat64 *statbuf); } 198 AUE_LCHOWN STD { int linux_lchown(char *path, l_uid_t uid, \ l_gid_t gid); } 199 AUE_GETUID STD { int linux_getuid(void); } Modified: head/sys/i386/linux/syscalls.master ============================================================================== --- head/sys/i386/linux/syscalls.master Mon Apr 16 21:36:55 2012 (r234356) +++ head/sys/i386/linux/syscalls.master Mon Apr 16 22:58:28 2012 (r234357) @@ -353,12 +353,12 @@ l_loff_t length); } 194 AUE_FTRUNCATE STD { int linux_ftruncate64(l_uint fd, \ l_loff_t length); } -195 AUE_STAT STD { int linux_stat64(char *filename, \ - struct l_stat64 *statbuf, l_long flags); } -196 AUE_LSTAT STD { int linux_lstat64(char *filename, \ - struct l_stat64 *statbuf, l_long flags); } -197 AUE_FSTAT STD { int linux_fstat64(l_ulong fd, \ - struct l_stat64 *statbuf, l_long flags); } +195 AUE_STAT STD { int linux_stat64(const char *filename, \ + struct l_stat64 *statbuf); } +196 AUE_LSTAT STD { int linux_lstat64(const char *filename, \ + struct l_stat64 *statbuf); } +197 AUE_FSTAT STD { int linux_fstat64(l_int fd, \ + struct l_stat64 *statbuf); } 198 AUE_LCHOWN STD { int linux_lchown(char *path, l_uid_t uid, \ l_gid_t gid); } 199 AUE_GETUID STD { int linux_getuid(void); }