svn commit: r352208 - in head/sys: amd64/linux amd64/linux32 arm64/linux i386/linux

Ed Maste emaste at FreeBSD.org
Wed Sep 11 12:58:08 UTC 2019


Author: emaste
Date: Wed Sep 11 12:58:06 2019
New Revision: 352208
URL: https://svnweb.freebsd.org/changeset/base/352208

Log:
  make linux_renameat2 args consistent with linux_renameat
  
  Use 'dfd' consistently for a directory fd.

Modified:
  head/sys/amd64/linux/syscalls.master
  head/sys/amd64/linux32/syscalls.master
  head/sys/arm64/linux/syscalls.master
  head/sys/i386/linux/syscalls.master

Modified: head/sys/amd64/linux/syscalls.master
==============================================================================
--- head/sys/amd64/linux/syscalls.master	Wed Sep 11 08:24:47 2019	(r352207)
+++ head/sys/amd64/linux/syscalls.master	Wed Sep 11 12:58:06 2019	(r352208)
@@ -550,8 +550,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: head/sys/amd64/linux32/syscalls.master
==============================================================================
--- head/sys/amd64/linux32/syscalls.master	Wed Sep 11 08:24:47 2019	(r352207)
+++ head/sys/amd64/linux32/syscalls.master	Wed Sep 11 12:58:06 2019	(r352208)
@@ -610,8 +610,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: head/sys/arm64/linux/syscalls.master
==============================================================================
--- head/sys/arm64/linux/syscalls.master	Wed Sep 11 08:24:47 2019	(r352207)
+++ head/sys/arm64/linux/syscalls.master	Wed Sep 11 12:58:06 2019	(r352208)
@@ -1459,9 +1459,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: head/sys/i386/linux/syscalls.master
==============================================================================
--- head/sys/i386/linux/syscalls.master	Wed Sep 11 08:24:47 2019	(r352207)
+++ head/sys/i386/linux/syscalls.master	Wed Sep 11 12:58:06 2019	(r352208)
@@ -619,8 +619,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-all mailing list