From 1ab8d1736721ce1980509db089a20e07650f9b29 Mon Sep 17 00:00:00 2001 From: rodrigc Date: Sat, 3 Jun 2006 21:47:11 +0000 Subject: [PATCH] MFC: 1.207: Add "errmsg" to list of global mount options. 1.225: Add "update" mount option to global_opts array, for use with vfs_filteropt(). --- sys/kern/vfs_mount.c | 2 ++ 1 file changed, 2 insertions(+) diff --git a/sys/kern/vfs_mount.c b/sys/kern/vfs_mount.c index 88a16d2d9326..607bdbee661a 100644 --- a/sys/kern/vfs_mount.c +++ b/sys/kern/vfs_mount.c @@ -127,6 +127,7 @@ struct vnode *rootvnode; * Global opts, taken by all filesystems */ static const char *global_opts[] = { + "errmsg", "fstype", "fspath", "rdonly", @@ -134,6 +135,7 @@ static const char *global_opts[] = { "rw", "suid", "exec", + "update", NULL };