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

Pedro F. Giffuni pfg at FreeBSD.org
Fri Jan 31 04:06:01 UTC 2014


Author: pfg
Date: Fri Jan 31 04:06:00 2014
New Revision: 261314
URL: http://svnweb.freebsd.org/changeset/base/261314

Log:
  MFC	r261136:
  
  ext2fs: Re-enable reallocblk.
  
  The major corruption issues affecting this code have been fixed.
  
  Tested by:	Mike Ma

Modified:
  stable/9/sys/fs/ext2fs/ext2_alloc.c
Directory Properties:
  stable/9/sys/   (props changed)
  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 31 04:05:25 2014	(r261313)
+++ stable/9/sys/fs/ext2fs/ext2_alloc.c	Fri Jan 31 04:06:00 2014	(r261314)
@@ -147,11 +147,11 @@ nospace:
 
 static SYSCTL_NODE(_vfs, OID_AUTO, ext2fs, CTLFLAG_RW, 0, "EXT2FS filesystem");
 
-static int doasyncfree = 0;
+static int doasyncfree = 1;
 SYSCTL_INT(_vfs_ext2fs, OID_AUTO, doasyncfree, CTLFLAG_RW, &doasyncfree, 0,
     "Use asychronous writes to update block pointers when freeing blocks");
 
-static int doreallocblks = 0;
+static int doreallocblks = 1;
 SYSCTL_INT(_vfs_ext2fs, OID_AUTO, doreallocblks, CTLFLAG_RW, &doreallocblks, 0, "");
 
 int


More information about the svn-src-all mailing list