svn commit: r288468 - stable/10/release/tools

Glen Barber gjb at FreeBSD.org
Fri Oct 2 02:06:37 UTC 2015


Author: gjb
Date: Fri Oct  2 02:06:36 2015
New Revision: 288468
URL: https://svnweb.freebsd.org/changeset/base/288468

Log:
  MFC r288370:
    In vm_copy_base(), turn off SU+J on the resultant filesystem,
    leaving only SU enabled.
  
  Sponsored by:	The FreeBSD Foundation

Modified:
  stable/10/release/tools/vmimage.subr
Directory Properties:
  stable/10/   (props changed)

Modified: stable/10/release/tools/vmimage.subr
==============================================================================
--- stable/10/release/tools/vmimage.subr	Thu Oct  1 22:19:41 2015	(r288467)
+++ stable/10/release/tools/vmimage.subr	Fri Oct  2 02:06:36 2015	(r288468)
@@ -102,7 +102,7 @@ vm_copy_base() {
 
 	umount_loop /dev/${mdnew}
 	rmdir ${DESTDIR}/new
-	tunefs -j enable /dev/${mdnew}
+	tunefs -n enable /dev/${mdnew}
 	mdconfig -d -u ${mdnew}
 	mv ${VMBASE}.tmp ${VMBASE}
 }


More information about the svn-src-all mailing list