]> xenbits.xensource.com Git - freebsd.git/commitdiff
make linux_renameat2 args consistent with linux_renameat
authoremaste <emaste@FreeBSD.org>
Wed, 11 Sep 2019 12:58:06 +0000 (12:58 +0000)
committeremaste <emaste@FreeBSD.org>
Wed, 11 Sep 2019 12:58:06 +0000 (12:58 +0000)
Use 'dfd' consistently for a directory fd.

sys/amd64/linux/syscalls.master
sys/amd64/linux32/syscalls.master
sys/arm64/linux/syscalls.master
sys/i386/linux/syscalls.master

index f35d3f0461e62faae4ced7fa4090f1bc9b611e5b..4cadc0e75a147740910dd1be2c26f7299622c3a8 100644 (file)
 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,    \
index 23e5fddd0929d7e6d6436c5970095d82805c2429..323b643d6405ec59be195ea28f8314ee3dcb7ae4 100644 (file)
 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,    \
index 80229b1246dafd7359047c4a0be7a97af74557aa..35ccfd7651428afc434883b2e5275b0a2194103b 100644 (file)
        }
 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
                );
index 531bbe3f4e02e30d5bb26019b9a5fb8f7f265443..d4f974ebb66fb7dcd9063ab9b20050d7c4140d16 100644 (file)
 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,    \