summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorThomas Bushnell <thomas@gnu.org>1999-06-27 23:55:35 +0000
committerThomas Bushnell <thomas@gnu.org>1999-06-27 23:55:35 +0000
commit9e55fdd762a7d606e6b1090ff1317ad7f0baa911 (patch)
tree66c19069b729fb878406de184a5d1267e96028ad
parent0f0628f7b23463cc2a02b9a1e48d05b101a38ec9 (diff)
1999-06-27 Thomas Bushnell, BSG <tb@mit.edu>
* sync-default.c (diskfs_default_sync_interval): Reduce to five seconds. Hardware is much different than when Unix originally picked thirty, plus we manage VM differently than the Unix buffer cache did, and tend to delay many more writes than Unix did.
-rw-r--r--libdiskfs/ChangeLog7
-rw-r--r--libdiskfs/sync-default.c4
2 files changed, 9 insertions, 2 deletions
diff --git a/libdiskfs/ChangeLog b/libdiskfs/ChangeLog
index fe981482..3efc9f5f 100644
--- a/libdiskfs/ChangeLog
+++ b/libdiskfs/ChangeLog
@@ -1,3 +1,10 @@
+1999-06-27 Thomas Bushnell, BSG <tb@mit.edu>
+
+ * sync-default.c (diskfs_default_sync_interval): Reduce to five
+ seconds. Hardware is much different than when Unix originally
+ picked thirty, plus we manage VM differently than the Unix buffer
+ cache did, and tend to delay many more writes than Unix did.
+
1999-06-13 Roland McGrath <roland@baalperazim.frob.com>
* file-get-trans.c (diskfs_S_file_get_translator): Fix type cast in
diff --git a/libdiskfs/sync-default.c b/libdiskfs/sync-default.c
index cdcfde98..4b8bdd7c 100644
--- a/libdiskfs/sync-default.c
+++ b/libdiskfs/sync-default.c
@@ -1,6 +1,6 @@
/* A variable holding the initial sync interval
- Copyright (C) 1995 Free Software Foundation, Inc.
+ Copyright (C) 1995, 1999 Free Software Foundation, Inc.
Written by Miles Bader <miles@gnu.ai.mit.edu>
@@ -18,4 +18,4 @@
along with this program; if not, write to the Free Software
Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. */
-int diskfs_default_sync_interval = 30;
+int diskfs_default_sync_interval = 5;