svn commit: r246791 - head/sys/fs/fdescfs

Baptiste Daroussin bapt at FreeBSD.org
Thu Feb 14 13:03:16 UTC 2013


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);


More information about the svn-src-head mailing list