svn commit: r364511 - in stable/12/sys: amd64/linux amd64/linux32 arm64/linux i386/linux

Edward Tomasz Napierala trasz at FreeBSD.org
Sun Aug 23 19:41:22 UTC 2020


Author: trasz
Date: Sun Aug 23 19:41:16 2020
New Revision: 364511
URL: https://svnweb.freebsd.org/changeset/base/364511

Log:
  MFC r352208 by emaste:
  
  make linux_renameat2 args consistent with linux_renameat
  
  Use 'dfd' consistently for a directory fd.
  
  Sponsored by:	The FreeBSD Foundation

Modified:
  stable/12/sys/amd64/linux/syscalls.master
  stable/12/sys/amd64/linux32/syscalls.master
  stable/12/sys/arm64/linux/syscalls.master
  stable/12/sys/i386/linux/syscalls.master
Directory Properties:
  stable/12/   (props changed)

Modified: stable/12/sys/amd64/linux/syscalls.master
==============================================================================
--- stable/12/sys/amd64/linux/syscalls.master	Sun Aug 23 19:30:12 2020	(r364510)
+++ stable/12/sys/amd64/linux/syscalls.master	Sun Aug 23 19:41:16 2020	(r364511)
@@ -551,8 +551,8 @@
 315	AUE_NULL	STD	{ int linux_sched_getattr(l_pid_t pid,		\
 				    void *attr, l_uint size, l_uint flags); }
 ; Linux 3.15:
-316	AUE_NULL	STD	{ int linux_renameat2(l_int oldfd,		\
-				    const char *oldname, l_int newfd,		\
+316	AUE_NULL	STD	{ int linux_renameat2(l_int olddfd,		\
+				    const char *oldname, l_int newdfd,		\
 				    const char *newname, unsigned int flags); }
 ; Linux 3.17:
 317	AUE_NULL	STD	{ int linux_seccomp(l_uint op, l_uint flags,	\

Modified: stable/12/sys/amd64/linux32/syscalls.master
==============================================================================
--- stable/12/sys/amd64/linux32/syscalls.master	Sun Aug 23 19:30:12 2020	(r364510)
+++ stable/12/sys/amd64/linux32/syscalls.master	Sun Aug 23 19:41:16 2020	(r364511)
@@ -614,8 +614,8 @@
 352	AUE_NULL	STD	{ int linux_sched_getattr(l_pid_t pid,		\
 				    void *attr, l_uint size, l_uint flags); }
 ; Linux 3.15:
-353	AUE_NULL	STD	{ int linux_renameat2(l_int oldfd,		\
-				    const char *oldname, l_int newfd, 		\
+353	AUE_NULL	STD	{ int linux_renameat2(l_int olddfd,		\
+				    const char *oldname, l_int newdfd, 		\
 				    const char *newname, unsigned int flags); }
 ; Linux 3.17:
 354	AUE_NULL	STD	{ int linux_seccomp(l_uint op, l_uint flags,	\

Modified: stable/12/sys/arm64/linux/syscalls.master
==============================================================================
--- stable/12/sys/arm64/linux/syscalls.master	Sun Aug 23 19:30:12 2020	(r364510)
+++ stable/12/sys/arm64/linux/syscalls.master	Sun Aug 23 19:41:16 2020	(r364511)
@@ -1464,9 +1464,9 @@
 	}
 276	AUE_NULL	STD	{
 		int linux_renameat2(
-		    l_int oldfd,
+		    l_int olddfd,
 		    const char *oldname,
-		    l_int newfd,
+		    l_int newdfd,
 		    const char *newname,
 		    unsigned int flags
 		);

Modified: stable/12/sys/i386/linux/syscalls.master
==============================================================================
--- stable/12/sys/i386/linux/syscalls.master	Sun Aug 23 19:30:12 2020	(r364510)
+++ stable/12/sys/i386/linux/syscalls.master	Sun Aug 23 19:41:16 2020	(r364511)
@@ -620,8 +620,8 @@
 352	AUE_NULL	STD	{ int linux_sched_getattr(l_pid_t pid,		\
 				    void *attr, l_uint size, l_uint flags); }
 ; Linux 3.15:
-353	AUE_NULL	STD	{ int linux_renameat2(l_int oldfd,		\
-				    const char *oldname, l_int newfd,		\
+353	AUE_NULL	STD	{ int linux_renameat2(l_int olddfd,		\
+				    const char *oldname, l_int newdfd,		\
 				    const char *newname, unsigned int flags); }
 ; Linux 3.17:
 354	AUE_NULL	STD	{ int linux_seccomp(l_uint op, l_uint flags,	\


More information about the svn-src-stable-12 mailing list