From owner-svn-src-head@FreeBSD.ORG Thu Feb 9 10:39:02 2012 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 62839106566B; Thu, 9 Feb 2012 10:39:02 +0000 (UTC) (envelope-from mm@FreeBSD.org) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:4f8:fff6::2c]) by mx1.freebsd.org (Postfix) with ESMTP id 4D39D8FC17; Thu, 9 Feb 2012 10:39:02 +0000 (UTC) Received: from svn.freebsd.org (localhost [127.0.0.1]) by svn.freebsd.org (8.14.4/8.14.4) with ESMTP id q19Ad2VE097024; Thu, 9 Feb 2012 10:39:02 GMT (envelope-from mm@svn.freebsd.org) Received: (from mm@localhost) by svn.freebsd.org (8.14.4/8.14.4/Submit) id q19Ad2aM097022; Thu, 9 Feb 2012 10:39:02 GMT (envelope-from mm@svn.freebsd.org) Message-Id: <201202091039.q19Ad2aM097022@svn.freebsd.org> From: Martin Matuska Date: Thu, 9 Feb 2012 10:39:02 +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: r231269 - head/sys/fs/nullfs 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: Thu, 09 Feb 2012 10:39:02 -0000 Author: mm Date: Thu Feb 9 10:39:01 2012 New Revision: 231269 URL: http://svn.freebsd.org/changeset/base/231269 Log: Allow mounting nullfs(5) inside jails. This is now possible thanks to r230129. MFC after: 1 month Modified: head/sys/fs/nullfs/null_vfsops.c Modified: head/sys/fs/nullfs/null_vfsops.c ============================================================================== --- head/sys/fs/nullfs/null_vfsops.c Thu Feb 9 10:30:45 2012 (r231268) +++ head/sys/fs/nullfs/null_vfsops.c Thu Feb 9 10:39:01 2012 (r231269) @@ -357,4 +357,4 @@ static struct vfsops null_vfsops = { .vfs_vget = nullfs_vget, }; -VFS_SET(null_vfsops, nullfs, VFCF_LOOPBACK); +VFS_SET(null_vfsops, nullfs, VFCF_LOOPBACK | VFCF_JAIL);