Skip site navigation (1)Skip section navigation (2)
Date:      Tue, 22 Jan 2013 18:36:32 +0000 (UTC)
From:      "Pedro F. Giffuni" <pfg@FreeBSD.org>
To:        src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-head@freebsd.org
Subject:   svn commit: r245817 - head/sys/fs/ext2fs
Message-ID:  <201301221836.r0MIaWH4068564@svn.freebsd.org>

next in thread | raw e-mail | index | archive | help
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



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