Skip site navigation (1)Skip section navigation (2)
Date:      Fri, 31 Jan 2014 04:05:25 +0000 (UTC)
From:      "Pedro F. Giffuni" <pfg@FreeBSD.org>
To:        src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-stable@freebsd.org, svn-src-stable-10@freebsd.org
Subject:   svn commit: r261313 - stable/10/sys/fs/ext2fs
Message-ID:  <201401310405.s0V45PUu098847@svn.freebsd.org>

next in thread | raw e-mail | index | archive | help
Author: pfg
Date: Fri Jan 31 04:05:25 2014
New Revision: 261313
URL: http://svnweb.freebsd.org/changeset/base/261313

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

Modified:
  stable/10/sys/fs/ext2fs/ext2_alloc.c

Modified: stable/10/sys/fs/ext2fs/ext2_alloc.c
==============================================================================
--- stable/10/sys/fs/ext2fs/ext2_alloc.c	Fri Jan 31 03:59:28 2014	(r261312)
+++ stable/10/sys/fs/ext2fs/ext2_alloc.c	Fri Jan 31 04:05:25 2014	(r261313)
@@ -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



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201401310405.s0V45PUu098847>