svn commit: r327890 - head/usr.sbin/bsdinstall/partedit

Ed Maste emaste at FreeBSD.org
Fri Jan 12 20:25:58 UTC 2018


Author: emaste
Date: Fri Jan 12 20:25:57 2018
New Revision: 327890
URL: https://svnweb.freebsd.org/changeset/base/327890

Log:
  bsdinstall: disable SUJ by default
  
  SUJ + cg checksums produce spurious warnings after an unclean shutdown
  (e.g. a crash).  For now disable SUJ for UFS installs so installing from
  a FreeBSD 12 snapshot results in a usable filesystem, until this can be
  fixed.
  
  PR:		225110
  Submitted by:	Arshan Khanifar <arshankhanifar gmail.com>
  Sponsored by:	The FreeBSD Foundation
  Differential Revision: https://reviews.freebsd.org/D13890

Modified:
  head/usr.sbin/bsdinstall/partedit/gpart_ops.c

Modified: head/usr.sbin/bsdinstall/partedit/gpart_ops.c
==============================================================================
--- head/usr.sbin/bsdinstall/partedit/gpart_ops.c	Fri Jan 12 20:03:24 2018	(r327889)
+++ head/usr.sbin/bsdinstall/partedit/gpart_ops.c	Fri Jan 12 20:25:57 2018	(r327890)
@@ -91,8 +91,7 @@ newfs_command(const char *fstype, char *command, int u
 			{"SU", "Softupdates",
 			    "Enable softupdates (default)", 1 },
 			{"SUJ", "Softupdates journaling",
-			    "Enable file system journaling (default - "
-			    "turn off for SSDs)", 1 },
+			    "Enable file system journaling", 0 },
 			{"TRIM", "Enable SSD TRIM support",
 			    "Enable TRIM support, useful on solid-state drives",
 			    0 },


More information about the svn-src-head mailing list