svn commit: r245897 - stable/9/sys/fs/ext2fs

Pedro F. Giffuni pfg at FreeBSD.org
Fri Jan 25 03:38:03 UTC 2013


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


More information about the svn-src-all mailing list