From owner-cvs-src-old@FreeBSD.ORG Sun Jul 24 17:43:38 2011 Return-Path: Delivered-To: cvs-src-old@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 8C6C2106566B for ; Sun, 24 Jul 2011 17:43:38 +0000 (UTC) (envelope-from mckusick@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id 788138FC0C for ; Sun, 24 Jul 2011 17:43:38 +0000 (UTC) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.4/8.14.4) with ESMTP id p6OHhcd0064176 for ; Sun, 24 Jul 2011 17:43:38 GMT (envelope-from mckusick@repoman.freebsd.org) Received: (from svn2cvs@localhost) by repoman.freebsd.org (8.14.4/8.14.4/Submit) id p6OHhcMW064175 for cvs-src-old@freebsd.org; Sun, 24 Jul 2011 17:43:38 GMT (envelope-from mckusick@repoman.freebsd.org) Message-Id: <201107241743.p6OHhcMW064175@repoman.freebsd.org> X-Authentication-Warning: repoman.freebsd.org: svn2cvs set sender to mckusick@repoman.freebsd.org using -f From: Kirk McKusick Date: Sun, 24 Jul 2011 17:43:09 +0000 (UTC) To: cvs-src-old@freebsd.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/sys/fs/cd9660 iso.h src/sys/fs/msdosfs msdosfsmount.h src/sys/fs/ntfs ntfs.h src/sys/fs/smbfs smbfs.h src/sys/kern kern_jail.c vfs_mount.c src/sys/sys mount.h X-BeenThere: cvs-src-old@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: **OBSOLETE** CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 24 Jul 2011 17:43:38 -0000 mckusick 2011-07-24 17:43:09 UTC FreeBSD src repository Modified files: sys/fs/cd9660 iso.h sys/fs/msdosfs msdosfsmount.h sys/fs/ntfs ntfs.h sys/fs/smbfs smbfs.h sys/kern kern_jail.c vfs_mount.c sys/sys mount.h Log: SVN rev 224290 on 2011-07-24 17:43:09Z by mckusick This update changes the mnt_flag field in the mount structure from 32 bits to 64 bits and eliminates the unused mnt_xflag field. The existing mnt_flag field is completely out of bits, so this update gives us room to expand. Note that the f_flags field in the statfs structure is already 64 bits, so the expanded mnt_flag field can be exported without having to make any changes in the statfs structure. Approved by: re (bz) Revision Changes Path 1.34 +1 -1 src/sys/fs/cd9660/iso.h 1.43 +1 -1 src/sys/fs/msdosfs/msdosfsmount.h 1.23 +1 -1 src/sys/fs/ntfs/ntfs.h 1.15 +1 -1 src/sys/fs/smbfs/smbfs.h 1.147 +2 -2 src/sys/kern/kern_jail.c 1.335 +2 -1 src/sys/kern/vfs_mount.c 1.258 +36 -36 src/sys/sys/mount.h