Source-Changes-HG archive

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

[src/trunk]: src/sys/ufs/ffs change vfs.ffs.doreallocblks to 1 by default - t...



details:   https://anonhg.NetBSD.org/src/rev/ceb6427a38a2
branches:  trunk
changeset: 499841:ceb6427a38a2
user:      jdolecek <jdolecek%NetBSD.org@localhost>
date:      Thu Nov 30 19:46:02 2000 +0000

description:
change vfs.ffs.doreallocblks to 1 by default - this does not have
aby bad symptoms any more, fix for bug causing problems with this
option was in BSD4.4-Lite2 and pulled in together with softdep changes

See also Keith Smith & Margo Seltzer's paper on the topic at
http://www.eecs.harvard.edu/~keith/papers/realloc.ps.gz

diffstat:

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

diffs (18 lines):

diff -r fad86f757c14 -r ceb6427a38a2 sys/ufs/ffs/ffs_alloc.c
--- a/sys/ufs/ffs/ffs_alloc.c   Thu Nov 30 19:19:43 2000 +0000
+++ b/sys/ufs/ffs/ffs_alloc.c   Thu Nov 30 19:46:02 2000 +0000
@@ -1,4 +1,4 @@
-/*     $NetBSD: ffs_alloc.c,v 1.37 2000/11/27 08:39:54 chs Exp $       */
+/*     $NetBSD: ffs_alloc.c,v 1.38 2000/11/30 19:46:02 jdolecek Exp $  */
 
 /*
  * Copyright (c) 1982, 1986, 1989, 1993
@@ -394,7 +394,7 @@
 #endif
 
 int doasyncfree = 1;
-int doreallocblks;
+int doreallocblks = 1;
 
 int
 ffs_reallocblks(v)



Home | Main Index | Thread Index | Old Index