svn commit: r288370 - head/release/tools

Glen Barber gjb at FreeBSD.org
Tue Sep 29 15:30:28 UTC 2015


Author: gjb
Date: Tue Sep 29 15:30:27 2015
New Revision: 288370
URL: https://svnweb.freebsd.org/changeset/base/288370

Log:
  In vm_copy_base(), turn off SU+J on the resultant filesystem,
  leaving only SU enabled.
  
  Discussed with:	kib (a few weeks ago)
  MFC after:	3 days
  Sponsored by:	The FreeBSD Foundation

Modified:
  head/release/tools/vmimage.subr

Modified: head/release/tools/vmimage.subr
==============================================================================
--- head/release/tools/vmimage.subr	Tue Sep 29 15:12:40 2015	(r288369)
+++ head/release/tools/vmimage.subr	Tue Sep 29 15:30:27 2015	(r288370)
@@ -108,7 +108,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