Lines Matching defs:mops
2030 * to protect mops.
2033 vfs_createopttbl_extend(mntopts_t *mops, const char *opts,
2052 vfs_copyopttbl_extend(mtmpl, mops, count);
2062 * to protect mops.
2065 vfs_createopttbl(mntopts_t *mops, const char *opts)
2067 vfs_createopttbl_extend(mops, opts, NULL);
2333 * The update_mnttab arg indicates whether mops is part of a vfs that is on
2337 vfs_clearmntopt_nolock(mntopts_t *mops, const char *opt, int update_mnttab)
2344 count = mops->mo_count;
2346 mop = &mops->mo_list[i];
2386 * The update_mnttab arg indicates whether mops is part of a vfs that is on
2390 vfs_setmntopt_nolock(mntopts_t *mops, const char *opt,
2400 if (vfs_hasopt(mops, opt) != NULL) {
2404 count = mops->mo_count;
2406 mop = &mops->mo_list[i];
2441 vfs_clearmntopt_nolock(mops, *cp, 0);
2468 * to protect mops.
2471 vfs_addtag(mntopts_t *mops, const char *tag)
2476 count = mops->mo_count + 1;
2478 if (mops->mo_count) {
2481 bcopy(mops->mo_list, motbl, len);
2482 kmem_free(mops->mo_list, len);
2484 mops->mo_count = count;
2485 mops->mo_list = motbl;
2502 mntopts_t *mops;
2531 mops = &vfsp->vfs_mntopts;
2535 if ((mop = vfs_hasopt(mops, tag)) == NULL) {
2538 (void) vfs_buildoptionstr(mops, buf, MAX_MNTOPT_STR);
2544 mop = vfs_addtag(mops, tag);
2550 vfs_setmntopt_nolock(mops, tag, NULL, 0, 1);
2617 * to protect mops..
2620 vfs_parsemntopts(mntopts_t *mops, char *osp, int create)
2650 vfs_setmntopt_nolock(mops, s, valp, setflg, 0);
2666 * to protect mops.
2669 vfs_hasopt(const mntopts_t *mops, const char *opt)
2674 count = mops->mo_count;
2676 mop = &mops->mo_list[i];
2692 vfs_optionisset_nolock(const mntopts_t *mops, const char *opt, char **argp)
2697 count = mops->mo_count;
2699 mop = &mops->mo_list[i];