| /src/external/cddl/osnet/lib/libzfs/ |
| mnttab.c | 90 optadd(char *mntopts, size_t size, const char *opt) 93 if (mntopts[0] != '\0') 94 strlcat(mntopts, ",", size); 95 strlcat(mntopts, opt, size); 101 static char mntopts[MNTMAXSTR]; local 104 mntopts[0] = '\0'; 107 #define OPTADD(opt) optadd(mntopts, sizeof(mntopts), (opt)) 131 mp->mnt_mntopts = mntopts;
|
| /src/tests/fs/ffs/ |
| h_quota2_tests.c | 388 int mntopts = 0; local 397 mntopts |= MNT_LOG; 400 mntopts |= MNT_RDONLY; 440 if (rump_sys_mount(MOUNT_FFS, FSTEST_MNTNAME, mntopts,
|
| /src/external/cddl/osnet/sys/sys/ |
| vfs.h | 95 typedef struct mntopts { struct
|
| /src/external/bsd/am-utils/dist/hlfsd/ |
| hlfsd.c | 112 fprintf(stderr, "\t[-i interval] [-l logfile] [-o mntopts] [-P passwdfile]\n"); 137 char *mntopts = (char *) NULL; local 229 mntopts = optarg; 476 if (mntopts) { 477 mnt.mnt_opts = mntopts;
|
| /src/external/cddl/osnet/dist/lib/libzfs/common/ |
| libzfs_mount.c | 275 char mntopts[MNT_LINE_MAX]; local 279 mntopts[0] = '\0'; 281 (void) strlcpy(mntopts, options, sizeof (mntopts)); 311 strstr(mntopts, MNTOPT_REMOUNT) == NULL && 322 MNTTYPE_ZFS, NULL, 0, mntopts, sizeof (mntopts)) != 0) { 356 mntopts); 1135 zpool_enable_datasets(zpool_handle_t *zhp, const char *mntopts, int flags) 1168 if (zfs_mount(cb.cb_handles[i], mntopts, flags) != 0 [all...] |
| /src/external/cddl/osnet/dist/cmd/zpool/ |
| zpool_main.c | 228 "\timport [-o mntopts] [-o property=value] ... \n" 231 "\timport [-o mntopts] [-o property=value] ... \n" 268 return (gettext("\tsplit [-n] [-R altroot] [-o mntopts]\n" 1855 do_import(nvlist_t *config, const char *newname, const char *mntopts, 1920 zpool_enable_datasets(zhp, mntopts, 0) != 0) { 1931 * import [-o mntopts] [-o prop=value] ... [-R root] [-D] 1933 * import [-o mntopts] [-o prop=value] ... [-R root] [-D] 1983 char *mntopts = NULL; local 2051 mntopts = optarg; 2251 err |= do_import(config, NULL, mntopts, 3401 char *mntopts = NULL; local [all...] |
| /src/external/cddl/osnet/dist/cmd/zfs/ |
| zfs_main.c | 6081 append_options(char *mntopts, char *newopts) 6083 int len = strlen(mntopts); 6093 if (*mntopts) 6094 mntopts[len++] = ','; 6096 (void) strcpy(&mntopts[len], newopts); 6782 char mntopts[MNT_LINE_MAX] = { '\0' }; local 6792 (void) strlcpy(mntopts, optarg, sizeof (mntopts)); 6845 NULL, 0, mntopts, sizeof (mntopts)) != 0) [all...] |