From owner-svn-src-all@FreeBSD.ORG Thu Feb 14 13:03:15 2013 Return-Path: Delivered-To: svn-src-all@freebsd.org Received: from mx1.freebsd.org (mx1.FreeBSD.org [8.8.178.115]) by hub.freebsd.org (Postfix) with ESMTP id E999939B; Thu, 14 Feb 2013 13:03:15 +0000 (UTC) (envelope-from bapt@FreeBSD.org) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) by mx1.freebsd.org (Postfix) with ESMTP id DBFE5CE; Thu, 14 Feb 2013 13:03:15 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.5/8.14.5) with ESMTP id r1ED3FTV013953; Thu, 14 Feb 2013 13:03:15 GMT (envelope-from bapt@svn.freebsd.org) Received: (from bapt@localhost) by svn.freebsd.org (8.14.5/8.14.5/Submit) id r1ED3FdA013952; Thu, 14 Feb 2013 13:03:15 GMT (envelope-from bapt@svn.freebsd.org) Message-Id: <201302141303.r1ED3FdA013952@svn.freebsd.org> From: Baptiste Daroussin Date: Thu, 14 Feb 2013 13:03:15 +0000 (UTC) To: src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-head@freebsd.org Subject: svn commit: r246791 - head/sys/fs/fdescfs X-SVN-Group: head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-src-all@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: "SVN commit messages for the entire src tree \(except for " user" and " projects" \)" List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 14 Feb 2013 13:03:16 -0000 Author: bapt Date: Thu Feb 14 13:03:15 2013 New Revision: 246791 URL: http://svnweb.freebsd.org/changeset/base/246791 Log: Allow fdescfs to be mounted from inside a jail MFC after: 1 week Modified: head/sys/fs/fdescfs/fdesc_vfsops.c Modified: head/sys/fs/fdescfs/fdesc_vfsops.c ============================================================================== --- head/sys/fs/fdescfs/fdesc_vfsops.c Thu Feb 14 12:42:09 2013 (r246790) +++ head/sys/fs/fdescfs/fdesc_vfsops.c Thu Feb 14 13:03:15 2013 (r246791) @@ -237,4 +237,4 @@ static struct vfsops fdesc_vfsops = { .vfs_unmount = fdesc_unmount, }; -VFS_SET(fdesc_vfsops, fdescfs, VFCF_SYNTHETIC); +VFS_SET(fdesc_vfsops, fdescfs, VFCF_SYNTHETIC|VFCF_JAIL);