svn commit: r245817 - head/sys/fs/ext2fs

Pedro F. Giffuni pfg at FreeBSD.org
Tue Jan 22 18:36:32 UTC 2013


Author: pfg
Date: Tue Jan 22 18:36:31 2013
New Revision: 245817
URL: http://svnweb.freebsd.org/changeset/base/245817

Log:
  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 is not a complete solution.
  
  MFC after:	3 days

Modified:
  head/sys/fs/ext2fs/ext2_alloc.c

Modified: head/sys/fs/ext2fs/ext2_alloc.c
==============================================================================
--- head/sys/fs/ext2fs/ext2_alloc.c	Tue Jan 22 18:35:42 2013	(r245816)
+++ head/sys/fs/ext2fs/ext2_alloc.c	Tue Jan 22 18:36:31 2013	(r245817)
@@ -151,11 +151,11 @@ nospace:
 
 static 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 svn-src-all mailing list