Lines Matching refs:mops

1986  *       to protect mops.
1989 vfs_createopttbl_extend(mntopts_t *mops, const char *opts,
2008 vfs_copyopttbl_extend(mtmpl, mops, count);
2018 * to protect mops.
2021 vfs_createopttbl(mntopts_t *mops, const char *opts)
2023 vfs_createopttbl_extend(mops, opts, NULL);
2289 * The update_mnttab arg indicates whether mops is part of a vfs that is on
2293 vfs_clearmntopt_nolock(mntopts_t *mops, const char *opt, int update_mnttab)
2300 count = mops->mo_count;
2302 mop = &mops->mo_list[i];
2342 * The update_mnttab arg indicates whether mops is part of a vfs that is on
2346 vfs_setmntopt_nolock(mntopts_t *mops, const char *opt,
2356 if (vfs_hasopt(mops, opt) != NULL) {
2360 count = mops->mo_count;
2362 mop = &mops->mo_list[i];
2397 vfs_clearmntopt_nolock(mops, *cp, 0);
2424 * to protect mops.
2427 vfs_addtag(mntopts_t *mops, const char *tag)
2432 count = mops->mo_count + 1;
2434 if (mops->mo_count) {
2437 bcopy(mops->mo_list, motbl, len);
2438 kmem_free(mops->mo_list, len);
2440 mops->mo_count = count;
2441 mops->mo_list = motbl;
2458 mntopts_t *mops;
2487 mops = &vfsp->vfs_mntopts;
2491 if ((mop = vfs_hasopt(mops, tag)) == NULL) {
2494 (void) vfs_buildoptionstr(mops, buf, MAX_MNTOPT_STR);
2500 mop = vfs_addtag(mops, tag);
2506 vfs_setmntopt_nolock(mops, tag, NULL, 0, 1);
2573 * to protect mops..
2576 vfs_parsemntopts(mntopts_t *mops, char *osp, int create)
2606 vfs_setmntopt_nolock(mops, s, valp, setflg, 0);
2622 * to protect mops.
2625 vfs_hasopt(const mntopts_t *mops, const char *opt)
2630 count = mops->mo_count;
2632 mop = &mops->mo_list[i];
2648 vfs_optionisset_nolock(const mntopts_t *mops, const char *opt, char **argp)
2653 count = mops->mo_count;
2655 mop = &mops->mo_list[i];