Lines Matching refs:mops

1961  *       to protect mops.
1964 vfs_createopttbl_extend(mntopts_t *mops, const char *opts,
1983 vfs_copyopttbl_extend(mtmpl, mops, count);
1993 * to protect mops.
1996 vfs_createopttbl(mntopts_t *mops, const char *opts)
1998 vfs_createopttbl_extend(mops, opts, NULL);
2264 * The update_mnttab arg indicates whether mops is part of a vfs that is on
2268 vfs_clearmntopt_nolock(mntopts_t *mops, const char *opt, int update_mnttab)
2275 count = mops->mo_count;
2277 mop = &mops->mo_list[i];
2317 * The update_mnttab arg indicates whether mops is part of a vfs that is on
2321 vfs_setmntopt_nolock(mntopts_t *mops, const char *opt,
2331 if (vfs_hasopt(mops, opt) != NULL) {
2335 count = mops->mo_count;
2337 mop = &mops->mo_list[i];
2372 vfs_clearmntopt_nolock(mops, *cp, 0);
2399 * to protect mops.
2402 vfs_addtag(mntopts_t *mops, const char *tag)
2407 count = mops->mo_count + 1;
2409 if (mops->mo_count) {
2412 bcopy(mops->mo_list, motbl, len);
2413 kmem_free(mops->mo_list, len);
2415 mops->mo_count = count;
2416 mops->mo_list = motbl;
2433 mntopts_t *mops;
2462 mops = &vfsp->vfs_mntopts;
2466 if ((mop = vfs_hasopt(mops, tag)) == NULL) {
2469 (void) vfs_buildoptionstr(mops, buf, MAX_MNTOPT_STR);
2475 mop = vfs_addtag(mops, tag);
2481 vfs_setmntopt_nolock(mops, tag, NULL, 0, 1);
2548 * to protect mops..
2551 vfs_parsemntopts(mntopts_t *mops, char *osp, int create)
2581 vfs_setmntopt_nolock(mops, s, valp, setflg, 0);
2597 * to protect mops.
2600 vfs_hasopt(const mntopts_t *mops, const char *opt)
2605 count = mops->mo_count;
2607 mop = &mops->mo_list[i];
2623 vfs_optionisset_nolock(const mntopts_t *mops, const char *opt, char **argp)
2628 count = mops->mo_count;
2630 mop = &mops->mo_list[i];