From owner-svn-src-head@FreeBSD.ORG Fri May 29 15:00:04 2009 Return-Path: Delivered-To: svn-src-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id B2E461065690; Fri, 29 May 2009 15:00:04 +0000 (UTC) (envelope-from trasz@FreeBSD.org) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:4f8:fff6::2c]) by mx1.freebsd.org (Postfix) with ESMTP id 994D78FC1D; Fri, 29 May 2009 15:00:04 +0000 (UTC) (envelope-from trasz@FreeBSD.org) Received: from svn.freebsd.org (localhost [127.0.0.1]) by svn.freebsd.org (8.14.3/8.14.3) with ESMTP id n4TF04Ig078213; Fri, 29 May 2009 15:00:04 GMT (envelope-from trasz@svn.freebsd.org) Received: (from trasz@localhost) by svn.freebsd.org (8.14.3/8.14.3/Submit) id n4TF04HM078212; Fri, 29 May 2009 15:00:04 GMT (envelope-from trasz@svn.freebsd.org) Message-Id: <200905291500.n4TF04HM078212@svn.freebsd.org> From: Edward Tomasz Napierala Date: Fri, 29 May 2009 15:00:04 +0000 (UTC) To: src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-head@freebsd.org X-SVN-Group: head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Cc: Subject: svn commit: r193041 - head/sys/sys X-BeenThere: svn-src-head@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: SVN commit messages for the src tree for head/-current List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 29 May 2009 15:00:05 -0000 Author: trasz Date: Fri May 29 15:00:04 2009 New Revision: 193041 URL: http://svn.freebsd.org/changeset/base/193041 Log: There is only one spare MNT_ flag left, and I want to use it for NFSv4 ACLs. Make room for additional filesystem flags now, to avoid breaking ABI later. Reviewed by: kib@ Modified: head/sys/sys/mount.h Modified: head/sys/sys/mount.h ============================================================================== --- head/sys/sys/mount.h Fri May 29 14:42:02 2009 (r193040) +++ head/sys/sys/mount.h Fri May 29 15:00:04 2009 (r193041) @@ -167,6 +167,7 @@ struct mount { int mnt_writeopcount; /* (i) write syscalls pending */ int mnt_kern_flag; /* (i) kernel only flags */ u_int mnt_flag; /* (i) flags shared with user */ + u_int mnt_xflag; /* (i) more flags shared with user */ u_int mnt_noasync; /* (i) # noasync overrides */ struct vfsoptlist *mnt_opt; /* current mount options */ struct vfsoptlist *mnt_optnew; /* new options passed to fs */ @@ -221,7 +222,7 @@ void __mnt_vnode_markerfree(str #endif /* _KERNEL */ /* - * User specifiable flags. + * User specifiable flags, stored in mnt_flag. */ #define MNT_RDONLY 0x00000001 /* read only filesystem */ #define MNT_SYNCHRONOUS 0x00000002 /* filesystem written synchronously */