diff options
author | Martin Matuska <mm@FreeBSD.org> | 2012-02-09 10:39:01 +0000 |
---|---|---|
committer | Martin Matuska <mm@FreeBSD.org> | 2012-02-09 10:39:01 +0000 |
commit | 61f0e25abf97a4985c79c5906cc00c9ee428600a (patch) | |
tree | a0ea44902f01524bcfdde70999bcea2b2f207046 /sys/fs/nullfs | |
parent | 0cc207a6f57ca1a42f27e6dbf4d70d331c2f9bb9 (diff) | |
download | src-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.c | 2 |
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); |