From owner-svn-soc-all@FreeBSD.ORG Mon Jun 11 15:28:33 2012 Return-Path: Delivered-To: svn-soc-all@FreeBSD.org Received: from socsvn.FreeBSD.org (unknown [IPv6:2001:4f8:fff6::2f]) by hub.freebsd.org (Postfix) with SMTP id 4033B106564A for ; Mon, 11 Jun 2012 15:28:31 +0000 (UTC) (envelope-from gpf@FreeBSD.org) Received: by socsvn.FreeBSD.org (sSMTP sendmail emulation); Mon, 11 Jun 2012 15:28:31 +0000 Date: Mon, 11 Jun 2012 15:28:31 +0000 From: gpf@FreeBSD.org To: svn-soc-all@FreeBSD.org MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Message-Id: <20120611152831.4033B106564A@hub.freebsd.org> Cc: Subject: socsvn commit: r237469 - soc2012/gpf/pefs_head/head/sys/sys X-BeenThere: svn-soc-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: SVN commit messages for the entire Summer of Code repository List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 11 Jun 2012 15:28:33 -0000 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 */