diff options
Diffstat (limited to 'libdiskfs')
-rw-r--r-- | libdiskfs/ChangeLog | 7 | ||||
-rw-r--r-- | libdiskfs/sync-default.c | 4 |
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; |