Source-Changes-HG archive

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

[src/netbsd-1-5]: src/sys/ufs/ffs Pull up revision 1.37 (requested by fvdl):



details:   https://anonhg.NetBSD.org/src/rev/59e409a1c504
branches:  netbsd-1-5
changeset: 490331:59e409a1c504
user:      he <he%NetBSD.org@localhost>
date:      Thu Dec 14 23:36:36 2000 +0000

description:
Pull up revision 1.37 (requested by fvdl):
  Improve NFS performance, possibly with as much as 100% in
  throughput.  Please note: this implies a kernel interface change,
  VOP_FSYNC gains two arguments.

diffstat:

 sys/ufs/ffs/ffs_inode.c |  4 ++--
 1 files changed, 2 insertions(+), 2 deletions(-)

diffs (18 lines):

diff -r 203f335d008f -r 59e409a1c504 sys/ufs/ffs/ffs_inode.c
--- a/sys/ufs/ffs/ffs_inode.c   Thu Dec 14 23:36:34 2000 +0000
+++ b/sys/ufs/ffs/ffs_inode.c   Thu Dec 14 23:36:36 2000 +0000
@@ -1,4 +1,4 @@
-/*     $NetBSD: ffs_inode.c,v 1.35 2000/05/30 17:23:52 mycroft Exp $   */
+/*     $NetBSD: ffs_inode.c,v 1.35.2.1 2000/12/14 23:36:36 he Exp $    */
 
 /*
  * Copyright (c) 1982, 1986, 1989, 1993
@@ -235,7 +235,7 @@
                         * so that it will have no data structures left.
                         */
                        if ((error = VOP_FSYNC(ovp, ap->a_cred, FSYNC_WAIT,
-                           ap->a_p)) != 0)
+                           0, 0, ap->a_p)) != 0)
                                return (error);
                } else {
 #ifdef QUOTA



Home | Main Index | Thread Index | Old Index