svn commit: r324962 - head/sys/fs/ext2fs

Fedor Uporov fsu at FreeBSD.org
Tue Oct 24 19:16:26 UTC 2017


Author: fsu
Date: Tue Oct 24 19:16:25 2017
New Revision: 324962
URL: https://svnweb.freebsd.org/changeset/base/324962

Log:
  Set doreallocblks sysctl value to zero by default because of
  possibility of filesystem corruption.
  
  Approved by:    pfg (mentor)
  MFC after:      2 weeks

Modified:
  head/sys/fs/ext2fs/ext2_alloc.c

Modified: head/sys/fs/ext2fs/ext2_alloc.c
==============================================================================
--- head/sys/fs/ext2fs/ext2_alloc.c	Tue Oct 24 19:14:33 2017	(r324961)
+++ head/sys/fs/ext2fs/ext2_alloc.c	Tue Oct 24 19:16:25 2017	(r324962)
@@ -173,7 +173,7 @@ 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 = 1;
+static int doreallocblks = 0;
 
 SYSCTL_INT(_vfs_ext2fs, OID_AUTO, doreallocblks, CTLFLAG_RW, &doreallocblks, 0, "");
 


More information about the svn-src-head mailing list