Symbol: mntopts
usr/src/cmd/fs.d/autofs/autod_main.c
390
ul->mntopts,
usr/src/cmd/fs.d/autofs/autod_main.c
627
if (args->mntopts)
usr/src/cmd/fs.d/autofs/autod_main.c
628
free(args->mntopts);
usr/src/cmd/fs.d/autofs/autod_mount.c
486
m.mnt_mntopts = ur->mntopts;
usr/src/cmd/fs.d/autofs/autod_nfs.c
2379
mntopts = malloc(strlen(mopts) + 1);
usr/src/cmd/fs.d/autofs/autod_nfs.c
2380
strcpy(mntopts, mopts);
usr/src/cmd/fs.d/autofs/autod_nfs.c
2381
mntopts[strlen(mopts)] = '\0';
usr/src/cmd/fs.d/autofs/autod_nfs.c
2382
alp->action.action_list_entry_u.mounta.optptr = mntopts;
usr/src/cmd/fs.d/autofs/autod_nfs.c
2384
strlen(mntopts) + 1;
usr/src/cmd/fs.d/autofs/autod_nfs.c
3456
loopbackmount(char *fsname, char *dir, char *mntopts, int overlay)
usr/src/cmd/fs.d/autofs/autod_nfs.c
3476
mnt.mnt_mntopts = mntopts;
usr/src/cmd/fs.d/autofs/autod_nfs.c
3480
(void) strlcpy(optbuf, mntopts, sizeof (optbuf));
usr/src/cmd/fs.d/autofs/autod_nfs.c
640
char *mntopts = NULL;
usr/src/cmd/fs.d/autofs/autod_xdr.c
214
if (!xdr_string(xdrs, &objp->mntopts, AUTOFS_MAXOPTSLEN))
usr/src/cmd/fs.d/autofs/automount.c
306
(void) sprintf(mntopts, "ignore,%s",
usr/src/cmd/fs.d/autofs/automount.c
309
(void) strcat(mntopts, ",");
usr/src/cmd/fs.d/autofs/automount.c
310
(void) strcat(mntopts, dir->dir_opts);
usr/src/cmd/fs.d/autofs/automount.c
314
MNTTYPE_AUTOFS, &ai, sizeof (ai), mntopts,
usr/src/cmd/fs.d/autofs/automount.c
378
compare_opts(opts, mntopts)
usr/src/cmd/fs.d/autofs/automount.c
379
char *opts, *mntopts;
usr/src/cmd/fs.d/autofs/automount.c
393
if (mntopts != NULL)
usr/src/cmd/fs.d/autofs/automount.c
394
(void) strcpy(s, mntopts);
usr/src/cmd/fs.d/autofs/automount.c
96
char mntopts[MAX_MNTOPT_STR];
usr/src/cmd/fs.d/autofs/ns_fnmount.c
191
new_mapent(char *root, char *mntpnt, char *fstype, char *mntopts, char *host,
usr/src/cmd/fs.d/autofs/ns_fnmount.c
757
new_mapent(char *root, char *mntpnt, char *fstype, char *mntopts, char *host,
usr/src/cmd/fs.d/autofs/ns_fnmount.c
769
if ((mntpnt == NULL) || (fstype == NULL) || (mntopts == NULL) ||
usr/src/cmd/fs.d/autofs/ns_fnmount.c
779
free(mntopts);
usr/src/cmd/fs.d/autofs/ns_fnmount.c
788
me->map_mntopts = mntopts;
usr/src/cmd/fs.d/mount.c
571
elide_dev(char *mntopts)
usr/src/cmd/fs.d/mount.c
575
if (mntopts != NULL) {
usr/src/cmd/fs.d/mount.c
576
dev = strstr(mntopts, "dev=");
usr/src/cmd/fs.d/mount.c
581
if (dev != mntopts) {
usr/src/cmd/fs.d/mount.c
647
flags(char *mntopts, int flag)
usr/src/cmd/fs.d/mount.c
656
if (mntopts == NULL || *mntopts == '\0')
usr/src/cmd/fs.d/mount.c
660
while (*mntopts != '\0') {
usr/src/cmd/fs.d/mount.c
661
switch (getsubopt(&mntopts, myopts, &value)) {
usr/src/cmd/fs.d/mount.c
870
char *mntopts[] = { MNTOPT_IGNORE, NULL };
usr/src/cmd/fs.d/mount.c
898
if (getsubopt(&my_opts, mntopts, &value) == IGNORE)
usr/src/cmd/fs.d/nfs/nfsstat/nfsstat.c
1265
static char *mntopts[] = { MNTOPT_IGNORE, MNTOPT_DEV, NULL };
usr/src/cmd/fs.d/nfs/nfsstat/nfsstat.c
1286
if (getsubopt(&opts, mntopts, &value) == IGNORE) {
usr/src/cmd/fs.d/nfs/rquotad/rpc.rquotad.c
703
char *mntopts[] = { MNTOPT_QUOTA, NULL };
usr/src/cmd/fs.d/nfs/rquotad/rpc.rquotad.c
718
if (getsubopt(&opts, mntopts, &value) == QUOTA)
usr/src/cmd/halt/halt.c
679
char mntopts[MNT_LINE_MAX] = MNTOPT_LARGEFILES;
usr/src/cmd/halt/halt.c
685
mntopts, sizeof (mntopts)) != 0) {
usr/src/cmd/halt/halt.c
699
char mntopts[MNT_LINE_MAX] = { '\0' };
usr/src/cmd/halt/halt.c
715
MNTTYPE_ZFS, NULL, 0, mntopts, sizeof (mntopts)) != 0) {
usr/src/cmd/mdb/common/modules/genunix/vfs.c
187
mntopt_t *mntopts;
usr/src/cmd/mdb/common/modules/genunix/vfs.c
249
mntopts = mdb_alloc(size, UM_SLEEP | UM_GC);
usr/src/cmd/mdb/common/modules/genunix/vfs.c
251
if (mdb_vread(mntopts, size,
usr/src/cmd/mdb/common/modules/genunix/vfs.c
258
if (mntopts[i].mo_flags & MO_SET) {
usr/src/cmd/mdb/common/modules/genunix/vfs.c
260
(uintptr_t)mntopts[i].mo_name) == -1) {
usr/src/cmd/mdb/common/modules/genunix/vfs.c
262
mntopts[i].mo_name);
usr/src/cmd/mdb/common/modules/genunix/vfs.c
272
if (mntopts[i].mo_flags & MO_HASVALUE) {
usr/src/cmd/mdb/common/modules/genunix/vfs.c
274
(uintptr_t)mntopts[i].mo_arg) == -1) {
usr/src/cmd/mdb/common/modules/genunix/vfs.c
276
"value %p", mntopts[i].mo_arg);
usr/src/cmd/zfs/zfs_main.c
6483
append_options(char *mntopts, char *newopts)
usr/src/cmd/zfs/zfs_main.c
6485
int len = strlen(mntopts);
usr/src/cmd/zfs/zfs_main.c
6495
if (*mntopts)
usr/src/cmd/zfs/zfs_main.c
6496
mntopts[len++] = ',';
usr/src/cmd/zfs/zfs_main.c
6498
(void) strcpy(&mntopts[len], newopts);
usr/src/cmd/zfs/zfs_main.c
7135
char mntopts[MNT_LINE_MAX] = { '\0' };
usr/src/cmd/zfs/zfs_main.c
7145
(void) strlcpy(mntopts, optarg, sizeof (mntopts));
usr/src/cmd/zfs/zfs_main.c
7198
NULL, 0, mntopts, sizeof (mntopts)) != 0) {
usr/src/cmd/zpool/zpool_main.c
2552
do_import(nvlist_t *config, const char *newname, const char *mntopts,
usr/src/cmd/zpool/zpool_main.c
2648
zpool_enable_datasets(zhp, mntopts, 0) != 0) {
usr/src/cmd/zpool/zpool_main.c
2826
char *mntopts = NULL;
usr/src/cmd/zpool/zpool_main.c
2905
mntopts = optarg;
usr/src/cmd/zpool/zpool_main.c
3123
err |= do_import(config, NULL, mntopts,
usr/src/cmd/zpool/zpool_main.c
3173
argv[1], mntopts, props, flags);
usr/src/cmd/zpool/zpool_main.c
5774
char *mntopts = NULL;
usr/src/cmd/zpool/zpool_main.c
5819
mntopts = optarg;
usr/src/cmd/zpool/zpool_main.c
5838
if (!flags.import && mntopts != NULL) {
usr/src/cmd/zpool/zpool_main.c
5903
zpool_enable_datasets(zhp, mntopts, 0) != 0) {
usr/src/lib/libfsmgt/common/fs_mount_defaults.c
570
newp->mntopts = strdup(vfstab_entry.vfs_mntopts);
usr/src/lib/libfsmgt/common/fs_mount_defaults.c
571
if (newp->mntopts == NULL) {
usr/src/lib/libfsmgt/common/fs_mount_defaults.c
676
if (filter->mntopts != NULL) {
usr/src/lib/libfsmgt/common/fs_mount_defaults.c
677
search_entry->vfs_mntopts = strdup(filter->mntopts);
usr/src/lib/libfsmgt/common/fs_mount_defaults.c
80
free(headp->mntopts);
usr/src/lib/libfsmgt/common/fs_mounts.c
158
char *mntopts, char *time, boolean_t find_overlays, int *errp) {
usr/src/lib/libfsmgt/common/fs_mounts.c
174
mntopts, time);
usr/src/lib/libfsmgt/common/fs_mounts.c
51
char *fstype, char *mntopts, char *time);
usr/src/lib/libfsmgt/common/fs_mounts.c
568
newp->mntopts = strdup(mnttab_entry.mnt_mntopts);
usr/src/lib/libfsmgt/common/fs_mounts.c
569
if (newp->mntopts == NULL) {
usr/src/lib/libfsmgt/common/fs_mounts.c
628
newp->mntopts = strdup(mnttab_entry.mnt_mntopts);
usr/src/lib/libfsmgt/common/fs_mounts.c
629
if (newp->mntopts == NULL) {
usr/src/lib/libfsmgt/common/fs_mounts.c
654
create_mnttab_filter(char *resource, char *mountp, char *fstype, char *mntopts,
usr/src/lib/libfsmgt/common/fs_mounts.c
702
if (mntopts != NULL) {
usr/src/lib/libfsmgt/common/fs_mounts.c
703
search_entry->mnt_mntopts = strdup(mntopts);
usr/src/lib/libfsmgt/common/fs_mounts.c
73
free(headp->mntopts);
usr/src/lib/libfsmgt/common/fs_mounts.c
788
dev_id = fs_parse_optlist_for_option(mnt_list->mntopts,
usr/src/lib/libfsmgt/common/fs_mounts.c
801
tmp->mntopts, "dev=", errp);
usr/src/lib/libfsmgt/common/libfsmgt.h
1021
char *mntopts, char *time, boolean_t find_overlays,
usr/src/lib/libfsmgt/common/libfsmgt.h
519
char *mountp, char *fstype, char *mntopts,
usr/src/lib/libfsmgt/common/libfsmgt.h
61
char *mntopts;
usr/src/lib/libfsmgt/common/libfsmgt.h
72
char *mntopts;
usr/src/lib/libfsmgt/common/nfs_mntinfo.c
104
MNTTYPE_NFS, mntopts, time, find_overlays, errp);
usr/src/lib/libfsmgt/common/nfs_mntinfo.c
287
(ignore(fsmnt_list->mntopts))) {
usr/src/lib/libfsmgt/common/nfs_mntinfo.c
420
if ((mrp->nml_mntopts = strdup(fsmnt_list->mntopts)) == NULL) {
usr/src/lib/libfsmgt/common/nfs_mntinfo.c
476
if (getsubopt(&s, mntopts, &value) == IGNORE) {
usr/src/lib/libfsmgt/common/nfs_mntinfo.c
54
static char *mntopts[] = { MNTOPT_IGNORE, MNTOPT_DEV, NULL };
usr/src/lib/libfsmgt/common/nfs_mntinfo.c
97
nfs_get_filtered_mount_list(char *resource, char *mountp, char *mntopts,
usr/src/lib/libgrubmgmt/common/libgrub_fs.c
561
char mntopts[MNT_LINE_MAX] = "";
usr/src/lib/libgrubmgmt/common/libgrub_fs.c
570
(void) strlcpy(mntopts, MNTOPT_LARGEFILES, sizeof (mntopts));
usr/src/lib/libgrubmgmt/common/libgrub_fs.c
586
fstyp, data, dtsz, mntopts, sizeof (mntopts))) != 0) {
usr/src/lib/libtsol/common/getpathbylabel.c
263
char mntopts[MAXPATHLEN];
usr/src/lib/libtsol/common/getpathbylabel.c
271
(void) strncpy(mntopts, mnt->mnt_mntopts, MAXPATHLEN);
usr/src/lib/libtsol/common/getpathbylabel.c
272
if ((token = strtok_r(mntopts, ",", &lasts)) != NULL) {
usr/src/lib/libzfs/common/libzfs_dataset.c
885
const char *mountp, const char *mntopts)
usr/src/lib/libzfs/common/libzfs_dataset.c
895
mtn->mtn_mt.mnt_mntopts = zfs_strdup(hdl, mntopts);
usr/src/lib/libzfs/common/libzfs_mount.c
1519
zpool_enable_datasets(zpool_handle_t *zhp, const char *mntopts, int flags)
usr/src/lib/libzfs/common/libzfs_mount.c
1541
ms.ms_mntopts = mntopts;
usr/src/lib/libzfs/common/libzfs_mount.c
345
char mntopts[MNT_LINE_MAX];
usr/src/lib/libzfs/common/libzfs_mount.c
351
mntopts[0] = '\0';
usr/src/lib/libzfs/common/libzfs_mount.c
353
(void) strlcpy(mntopts, options, sizeof (mntopts));
usr/src/lib/libzfs/common/libzfs_mount.c
415
strstr(mntopts, MNTOPT_REMOUNT) == NULL &&
usr/src/lib/libzfs/common/libzfs_mount.c
425
MNTTYPE_ZFS, NULL, 0, mntopts, sizeof (mntopts)) != 0) {
usr/src/lib/libzfs/common/libzfs_mount.c
459
mntopts);
usr/src/lib/smbclnt/libfksmbfs/common/fake_vfs.c
148
static const mntopt_t mntopts[] = {
usr/src/lib/smbclnt/libfksmbfs/common/fake_vfs.c
181
sizeof (mntopts) / sizeof (mntopt_t),
usr/src/lib/smbclnt/libfksmbfs/common/fake_vfs.c
182
(mntopt_t *)&mntopts[0]
usr/src/uts/common/fs/autofs/auto_subr.c
1939
mntfs_getmntopts(vfsp, &ul.mntopts, &mntoptslen);
usr/src/uts/common/fs/autofs/auto_subr.c
1940
if (ul.mntopts == NULL) {
usr/src/uts/common/fs/autofs/auto_subr.c
1949
ul.mntopts[AUTOFS_MAXOPTSLEN - 1] = '\0';
usr/src/uts/common/fs/autofs/auto_subr.c
1982
kmem_free(ul.mntopts, mntoptslen);
usr/src/uts/common/fs/autofs/auto_vfsops.c
156
static mntopt_t mntopts[] = {
usr/src/uts/common/fs/autofs/auto_vfsops.c
177
sizeof (mntopts) / sizeof (mntopt_t),
usr/src/uts/common/fs/autofs/auto_vfsops.c
178
mntopts
usr/src/uts/common/fs/autofs/auto_xdr.c
75
if (!xdr_string(xdrs, &objp->mntopts, AUTOFS_MAXOPTSLEN))
usr/src/uts/common/fs/fd/fdops.c
532
static mntopt_t mntopts[] = {
usr/src/uts/common/fs/fd/fdops.c
543
sizeof (mntopts) / sizeof (mntopt_t),
usr/src/uts/common/fs/fd/fdops.c
544
mntopts
usr/src/uts/common/fs/lofs/lofs_vfsops.c
74
static mntopt_t mntopts[] = {
usr/src/uts/common/fs/lofs/lofs_vfsops.c
90
sizeof (mntopts) / sizeof (mntopt_t),
usr/src/uts/common/fs/lofs/lofs_vfsops.c
91
mntopts
usr/src/uts/common/fs/nfs/nfs4_stub_vnops.c
3255
char *mntopts;
usr/src/uts/common/fs/nfs/nfs4_stub_vnops.c
3259
mntopts = kmem_zalloc(MAX_MNTOPT_STR, KM_SLEEP);
usr/src/uts/common/fs/nfs/nfs4_stub_vnops.c
3271
if (nfs4_trigger_add_mntopt(mntopts, mop->mo_name, vfsp)) {
usr/src/uts/common/fs/nfs/nfs4_stub_vnops.c
3272
kmem_free(mntopts, MAX_MNTOPT_STR);
usr/src/uts/common/fs/nfs/nfs4_stub_vnops.c
3290
if (nfs4_trigger_add_mntopt(mntopts, MNTOPT_XATTR, vfsp) ||
usr/src/uts/common/fs/nfs/nfs4_stub_vnops.c
3291
nfs4_trigger_add_mntopt(mntopts, MNTOPT_NOXATTR, vfsp)) {
usr/src/uts/common/fs/nfs/nfs4_stub_vnops.c
3292
kmem_free(mntopts, MAX_MNTOPT_STR);
usr/src/uts/common/fs/nfs/nfs4_stub_vnops.c
3296
return (mntopts);
usr/src/uts/common/fs/nfs/nfs4_stub_vnops.c
3300
nfs4_trigger_destroy_mntopts(char *mntopts)
usr/src/uts/common/fs/nfs/nfs4_stub_vnops.c
3302
if (mntopts)
usr/src/uts/common/fs/nfs/nfs4_stub_vnops.c
3303
kmem_free(mntopts, MAX_MNTOPT_STR);
usr/src/uts/common/fs/nfs/nfs4_stub_vnops.c
3310
nfs4_trigger_add_mntopt(char *mntopts, char *optname, vfs_t *vfsp)
usr/src/uts/common/fs/nfs/nfs4_stub_vnops.c
3312
if (mntopts == NULL || optname == NULL || vfsp == NULL)
usr/src/uts/common/fs/nfs/nfs4_stub_vnops.c
3316
size_t mntoptslen = strlen(mntopts);
usr/src/uts/common/fs/nfs/nfs4_stub_vnops.c
3324
if (*mntopts != '\0')
usr/src/uts/common/fs/nfs/nfs4_stub_vnops.c
3325
(void) strcat(mntopts, ",");
usr/src/uts/common/fs/nfs/nfs4_stub_vnops.c
3327
(void) strcat(mntopts, optname);
usr/src/uts/common/fs/pcfs/pc_vfsops.c
114
static mntopt_t mntopts[] = {
usr/src/uts/common/fs/pcfs/pc_vfsops.c
131
sizeof (mntopts) / sizeof (mntopt_t),
usr/src/uts/common/fs/pcfs/pc_vfsops.c
132
mntopts
usr/src/uts/common/fs/smbclnt/smbfs/smbfs_vfsops.c
130
static mntopt_t mntopts[] = {
usr/src/uts/common/fs/smbclnt/smbfs/smbfs_vfsops.c
148
sizeof (mntopts) / sizeof (mntopt_t),
usr/src/uts/common/fs/smbclnt/smbfs/smbfs_vfsops.c
149
mntopts
usr/src/uts/common/fs/ufs/ufs_vfsops.c
147
static mntopt_t mntopts[] = {
usr/src/uts/common/fs/ufs/ufs_vfsops.c
193
sizeof (mntopts) / sizeof (mntopt_t),
usr/src/uts/common/fs/ufs/ufs_vfsops.c
194
mntopts
usr/src/uts/common/fs/vfs.c
1016
vfs_optionisset_nolock(mntopts, MNTOPT_SUID, NULL) ||
usr/src/uts/common/fs/vfs.c
1017
vfs_optionisset_nolock(mntopts, MNTOPT_SETUID, NULL) ||
usr/src/uts/common/fs/vfs.c
1018
vfs_optionisset_nolock(mntopts, MNTOPT_DEVICES, NULL)) {
usr/src/uts/common/fs/vfs.c
182
static const mntopt_t mntopts[] = {
usr/src/uts/common/fs/vfs.c
215
sizeof (mntopts) / sizeof (mntopt_t),
usr/src/uts/common/fs/vfs.c
216
(mntopt_t *)&mntopts[0]
usr/src/uts/common/fs/vfs.c
980
mntopts_t *mntopts, struct mounta *uap)
usr/src/uts/common/fs/zfs/zfs_vfsops.c
125
static mntopt_t mntopts[] = {
usr/src/uts/common/fs/zfs/zfs_vfsops.c
133
sizeof (mntopts) / sizeof (mntopt_t),
usr/src/uts/common/fs/zfs/zfs_vfsops.c
134
mntopts