Add more options to ffs_opts, so that vfs_filteropts() will not

complain when we pass these options to a UFS filesystem as strings
via nmount():  noexec, nosuid, nosymfollow, sync, suiddir
This commit is contained in:
rodrigc 2005-11-19 23:28:19 +00:00
parent 2649691fbc
commit 70aecc46b0

View File

@ -117,8 +117,9 @@ static struct buf_ops ffs_ops = {
};
static const char *ffs_opts[] = { "acls", "async", "errmsg", "export",
"force", "from", "multilabel", "noasync", "noatime",
"noclusterr", "noclusterw", "snapshot", "update", NULL };
"force", "from", "multilabel", "noasync", "noatime", "noclusterr",
"noclusterw", "noexec", "nosuid", "nosymfollow", "snapshot", "sync",
"suiddir", "update", "union", NULL };
static int
ffs_mount(struct mount *mp, struct thread *td)