aboutsummaryrefslogtreecommitdiff
path: root/sys/fs/nullfs
diff options
context:
space:
mode:
authorMartin Matuska <mm@FreeBSD.org>2012-02-09 10:39:01 +0000
committerMartin Matuska <mm@FreeBSD.org>2012-02-09 10:39:01 +0000
commit61f0e25abf97a4985c79c5906cc00c9ee428600a (patch)
treea0ea44902f01524bcfdde70999bcea2b2f207046 /sys/fs/nullfs
parent0cc207a6f57ca1a42f27e6dbf4d70d331c2f9bb9 (diff)
downloadsrc-61f0e25abf97a4985c79c5906cc00c9ee428600a.tar.gz
src-61f0e25abf97a4985c79c5906cc00c9ee428600a.zip
Allow mounting nullfs(5) inside jails.
This is now possible thanks to r230129. MFC after: 1 month
Notes
Notes: svn path=/head/; revision=231269
Diffstat (limited to 'sys/fs/nullfs')
-rw-r--r--sys/fs/nullfs/null_vfsops.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/sys/fs/nullfs/null_vfsops.c b/sys/fs/nullfs/null_vfsops.c
index cf3176fe1a5a..97874b3e0dea 100644
--- a/sys/fs/nullfs/null_vfsops.c
+++ b/sys/fs/nullfs/null_vfsops.c
@@ -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);