[Midnightbsd-cvs] src [8666] trunk/sys/fs/ext2fs/ext2_alloc.c: disable the reallocation code.
laffer1 at midnightbsd.org
laffer1 at midnightbsd.org
Sun Sep 25 16:32:40 EDT 2016
Revision: 8666
http://svnweb.midnightbsd.org/src/?rev=8666
Author: laffer1
Date: 2016-09-25 16:32:40 -0400 (Sun, 25 Sep 2016)
Log Message:
-----------
disable the reallocation code. testing with fsx has revealed problems and in order to hunt the bugs reduce complexity.
Modified Paths:
--------------
trunk/sys/fs/ext2fs/ext2_alloc.c
Modified: trunk/sys/fs/ext2fs/ext2_alloc.c
===================================================================
--- trunk/sys/fs/ext2fs/ext2_alloc.c 2016-09-25 20:31:58 UTC (rev 8665)
+++ trunk/sys/fs/ext2fs/ext2_alloc.c 2016-09-25 20:32:40 UTC (rev 8666)
@@ -151,11 +151,11 @@
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
More information about the Midnightbsd-cvs
mailing list