socsvn commit: r237469 - soc2012/gpf/pefs_head/head/sys/sys

gpf at FreeBSD.org gpf at FreeBSD.org
Mon Jun 11 15:28:33 UTC 2012


Author: gpf
Date: Mon Jun 11 15:28:30 2012
New Revision: 237469
URL: http://svnweb.FreeBSD.org/socsvn/?view=rev&rev=237469

Log:
  - new mount optflag for checksum so we can do something like
  'pefs mount -o checksum p.enc p'
  

Modified:
  soc2012/gpf/pefs_head/head/sys/sys/mount.h

Modified: soc2012/gpf/pefs_head/head/sys/sys/mount.h
==============================================================================
--- soc2012/gpf/pefs_head/head/sys/sys/mount.h	Mon Jun 11 15:04:34 2012	(r237468)
+++ soc2012/gpf/pefs_head/head/sys/sys/mount.h	Mon Jun 11 15:28:30 2012	(r237469)
@@ -281,6 +281,7 @@
 #define	MNT_MULTILABEL	0x0000000004000000ULL /* MAC support for objects */
 #define	MNT_ACLS	0x0000000008000000ULL /* ACL support enabled */
 #define	MNT_NOATIME	0x0000000010000000ULL /* dont update file access time */
+#define	MNT_CHECKSUM	0x0000000020000000ULL /* enable integrity checks for pefs */
 #define	MNT_NOCLUSTERR	0x0000000040000000ULL /* disable cluster read */
 #define	MNT_NOCLUSTERW	0x0000000080000000ULL /* disable cluster write */
 #define	MNT_SUJ		0x0000000100000000ULL /* using journaled soft updates */


More information about the svn-soc-all mailing list