Source-Changes-HG archive

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

[src/trunk]: src/sys/compat/osf1 PR/25335: Erik E. Fair: statvfs lossage in s...



details:   https://anonhg.NetBSD.org/src/rev/3c88acc56a05
branches:  trunk
changeset: 566058:3c88acc56a05
user:      christos <christos%NetBSD.org@localhost>
date:      Mon Apr 26 20:33:50 2004 +0000

description:
PR/25335: Erik E. Fair: statvfs lossage in sys/lkm/compat/osf1

diffstat:

 sys/compat/osf1/osf1_mount.c |  6 +++---
 1 files changed, 3 insertions(+), 3 deletions(-)

diffs (27 lines):

diff -r 7653ac006732 -r 3c88acc56a05 sys/compat/osf1/osf1_mount.c
--- a/sys/compat/osf1/osf1_mount.c      Mon Apr 26 19:44:54 2004 +0000
+++ b/sys/compat/osf1/osf1_mount.c      Mon Apr 26 20:33:50 2004 +0000
@@ -1,4 +1,4 @@
-/*     $NetBSD: osf1_mount.c,v 1.25 2004/04/23 12:02:39 christos Exp $ */
+/*     $NetBSD: osf1_mount.c,v 1.26 2004/04/26 20:33:50 christos Exp $ */
 
 /*
  * Copyright (c) 1999 Christopher G. Demetriou.  All rights reserved.
@@ -58,7 +58,7 @@
  */
 
 #include <sys/cdefs.h>
-__KERNEL_RCSID(0, "$NetBSD: osf1_mount.c,v 1.25 2004/04/23 12:02:39 christos Exp $");
+__KERNEL_RCSID(0, "$NetBSD: osf1_mount.c,v 1.26 2004/04/26 20:33:50 christos Exp $");
 
 #if defined(_KERNEL_OPT)
 #include "fs_nfs.h"
@@ -172,7 +172,7 @@
                         */
                        if (((SCARG(uap, flags) & OSF1_MNT_NOWAIT) == 0 ||
                            (SCARG(uap, flags) & OSF1_MNT_WAIT)) &&
-                           (error = VFS_STATFS(mp, sp, p)))
+                           (error = VFS_STAVTFS(mp, sp, p)))
                                continue;
                        sp->f_flag = mp->mnt_flag & MNT_VISFLAGMASK;
                        osf1_cvt_statfs_from_native(sp, &osfs);



Home | Main Index | Thread Index | Old Index