Skip site navigation (1)Skip section navigation (2)
Date:      Fri, 25 Jan 2013 03:38:03 +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-9@freebsd.org
Subject:   svn commit: r245897 - stable/9/sys/fs/ext2fs
Message-ID:  <201301250338.r0P3c37p002627@svn.freebsd.org>

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



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