Author: pfg
Date: Fri Jan 25 03:38:02 2013
New Revision: 245897
URL: http://svnweb.freebsd.org/changeset/base/245897
Log:
MFC r245612:
ext2fs: temporarily disable the reallocation code.
Testing with fsx has revealed problems and in order to
hunt the bugs properly we need reduce the complexity.
This seems to help but doesn't work around all the issues.
While here add missing merginfo for r245762 which somehow
got lost.
Modified:
stable/9/sys/fs/ext2fs/ext2_alloc.c
Directory Properties:
stable/9/sys/fs/ (props changed)
Modified: stable/9/sys/fs/ext2fs/ext2_alloc.c
==============================================================================
--- stable/9/sys/fs/ext2fs/ext2_alloc.c Fri Jan 25 00:46:02 2013
(r245896)
+++ stable/9/sys/fs/ext2fs/ext2_alloc.c Fri Jan 25 03:38:02 2013
(r245897)
@@ -151,11 +151,11 @@ nospace:
SYSCTL_NODE(_vfs, OID_AUTO, ext2fs, CTLFLAG_RW, 0, "EXT2FS filesystem");
-static int doasyncfree = 1;
+static int doasyncfree = 0;
SYSCTL_INT(_vfs_ext2fs, OID_AUTO, doasyncfree, CTLFLAG_RW, &doasyncfree, 0,
"Use asychronous writes to update block pointers when freeing blocks");
-static int doreallocblks = 1;
+static int doreallocblks = 0;
SYSCTL_INT(_vfs_ext2fs, OID_AUTO, doreallocblks, CTLFLAG_RW, &doreallocblks,
0, "");
int
_______________________________________________
[email protected] mailing list
http://lists.freebsd.org/mailman/listinfo/svn-src-stable-9
To unsubscribe, send any mail to "[email protected]"