diff options
author | nwhitehorn <nwhitehorn@FreeBSD.org> | 2013-07-23 14:48:37 +0000 |
---|---|---|
committer | nwhitehorn <nwhitehorn@FreeBSD.org> | 2013-07-23 14:48:37 +0000 |
commit | 697ec4c8f3b97be3b8fb6d16411df658e1ee688b (patch) | |
tree | 2eea1fdefaa6036564eb54c2635c027cc1e8e839 /sys/fs | |
parent | 072ee3bb23cbb4d6cbef05dfe99f19932ef23449 (diff) | |
download | FreeBSD-src-697ec4c8f3b97be3b8fb6d16411df658e1ee688b.zip FreeBSD-src-697ec4c8f3b97be3b8fb6d16411df658e1ee688b.tar.gz |
tmpfs works perfectly fine with -o union -- there is no reason to exclude it
from the list of options.
Diffstat (limited to 'sys/fs')
-rw-r--r-- | sys/fs/tmpfs/tmpfs_vfsops.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sys/fs/tmpfs/tmpfs_vfsops.c b/sys/fs/tmpfs/tmpfs_vfsops.c index 8cf8693..4d55f51 100644 --- a/sys/fs/tmpfs/tmpfs_vfsops.c +++ b/sys/fs/tmpfs/tmpfs_vfsops.c @@ -79,7 +79,7 @@ static int tmpfs_statfs(struct mount *, struct statfs *); static const char *tmpfs_opts[] = { "from", "size", "maxfilesize", "inodes", "uid", "gid", "mode", "export", - NULL + "union", NULL }; static const char *tmpfs_updateopts[] = { |