svn commit: r253573 - head/sys/fs/tmpfs

Nathan Whitehorn nwhitehorn at FreeBSD.org
Tue Jul 23 14:48:38 UTC 2013


Author: nwhitehorn
Date: Tue Jul 23 14:48:37 2013
New Revision: 253573
URL: http://svnweb.freebsd.org/changeset/base/253573

Log:
  tmpfs works perfectly fine with -o union -- there is no reason to exclude it
  from the list of options.

Modified:
  head/sys/fs/tmpfs/tmpfs_vfsops.c

Modified: head/sys/fs/tmpfs/tmpfs_vfsops.c
==============================================================================
--- head/sys/fs/tmpfs/tmpfs_vfsops.c	Tue Jul 23 14:24:22 2013	(r253572)
+++ head/sys/fs/tmpfs/tmpfs_vfsops.c	Tue Jul 23 14:48:37 2013	(r253573)
@@ -79,7 +79,7 @@ static int	tmpfs_statfs(struct mount *, 
 
 static const char *tmpfs_opts[] = {
 	"from", "size", "maxfilesize", "inodes", "uid", "gid", "mode", "export",
-	NULL
+	"union", NULL
 };
 
 static const char *tmpfs_updateopts[] = {


More information about the svn-src-all mailing list