Source-Changes-HG archive

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]

[src/trunk]: src/sys/compat/netbsd32 s/netbds32_copyout_statvfs/netbsd32_copy...



details:   https://anonhg.NetBSD.org/src/rev/43a6fd28d625
branches:  trunk
changeset: 349225:43a6fd28d625
user:      mrg <mrg%NetBSD.org@localhost>
date:      Thu Dec 01 05:07:27 2016 +0000

description:
s/netbds32_copyout_statvfs/netbsd32_copyout_statvfs/

diffstat:

 sys/compat/netbsd32/netbsd32_fs.c |  14 +++++++-------
 1 files changed, 7 insertions(+), 7 deletions(-)

diffs (63 lines):

diff -r b2269f0da71c -r 43a6fd28d625 sys/compat/netbsd32/netbsd32_fs.c
--- a/sys/compat/netbsd32/netbsd32_fs.c Thu Dec 01 02:36:50 2016 +0000
+++ b/sys/compat/netbsd32/netbsd32_fs.c Thu Dec 01 05:07:27 2016 +0000
@@ -1,4 +1,4 @@
-/*     $NetBSD: netbsd32_fs.c,v 1.78 2016/10/21 07:45:16 mrg Exp $     */
+/*     $NetBSD: netbsd32_fs.c,v 1.79 2016/12/01 05:07:27 mrg Exp $     */
 
 /*
  * Copyright (c) 1998, 2001 Matthew R. Green
@@ -27,7 +27,7 @@
  */
 
 #include <sys/cdefs.h>
-__KERNEL_RCSID(0, "$NetBSD: netbsd32_fs.c,v 1.78 2016/10/21 07:45:16 mrg Exp $");
+__KERNEL_RCSID(0, "$NetBSD: netbsd32_fs.c,v 1.79 2016/12/01 05:07:27 mrg Exp $");
 
 #include <sys/param.h>
 #include <sys/systm.h>
@@ -385,7 +385,7 @@
 }
 
 static int
-netbds32_copyout_statvfs(const void *kp, void *up, size_t len)
+netbsd32_copyout_statvfs(const void *kp, void *up, size_t len)
 {
        struct netbsd32_statvfs *sbuf_32;
        int error;
@@ -412,7 +412,7 @@
        sb = STATVFSBUF_GET();
        error = do_sys_pstatvfs(l, SCARG_P32(uap, path), SCARG(uap, flags), sb);
        if (error == 0)
-               error = netbds32_copyout_statvfs(sb, SCARG_P32(uap, buf), 0);
+               error = netbsd32_copyout_statvfs(sb, SCARG_P32(uap, buf), 0);
        STATVFSBUF_PUT(sb);
        return error;
 }
@@ -431,7 +431,7 @@
        sb = STATVFSBUF_GET();
        error = do_sys_fstatvfs(l, SCARG(uap, fd), SCARG(uap, flags), sb);
        if (error == 0)
-               error = netbds32_copyout_statvfs(sb, SCARG_P32(uap, buf), 0);
+               error = netbsd32_copyout_statvfs(sb, SCARG_P32(uap, buf), 0);
        STATVFSBUF_PUT(sb);
        return error;
 }
@@ -446,7 +446,7 @@
        } */
 
        return do_sys_getvfsstat(l, SCARG_P32(uap, buf), SCARG(uap, bufsize),
-           SCARG(uap, flags), netbds32_copyout_statvfs,
+           SCARG(uap, flags), netbsd32_copyout_statvfs,
            sizeof (struct netbsd32_statvfs), retval);
 }
 
@@ -467,7 +467,7 @@
            SCARG(uap, flags));
 
        if (error == 0)
-               error = netbds32_copyout_statvfs(sb, SCARG_P32(uap, buf), 0);
+               error = netbsd32_copyout_statvfs(sb, SCARG_P32(uap, buf), 0);
        STATVFSBUF_PUT(sb);
 
        return error;



Home | Main Index | Thread Index | Old Index