taglinefilesource code
opts87fs/fat/inode.cstruct fat_mount_options *opts)
opts91fs/fat/inode.copts->name_check = 'n';
opts92fs/fat/inode.copts->conversion = 'b';
opts93fs/fat/inode.copts->fs_uid = current->uid;
opts94fs/fat/inode.copts->fs_gid = current->gid;
opts95fs/fat/inode.copts->fs_umask = current->fs->umask;
opts96fs/fat/inode.copts->quiet = opts->sys_immutable = opts->dotsOK = opts->showexec = opts->isvfat = 0;
opts105fs/fat/inode.copts->name_check = *value;
opts106fs/fat/inode.celse if (!strcmp(value,"relaxed")) opts->name_check = 'r';
opts107fs/fat/inode.celse if (!strcmp(value,"normal")) opts->name_check = 'n';
opts108fs/fat/inode.celse if (!strcmp(value,"strict")) opts->name_check = 's';
opts113fs/fat/inode.copts->conversion = *value;
opts114fs/fat/inode.celse if (!strcmp(value,"binary")) opts->conversion = 'b';
opts115fs/fat/inode.celse if (!strcmp(value,"text")) opts->conversion = 't';
opts116fs/fat/inode.celse if (!strcmp(value,"auto")) opts->conversion = 'a';
opts120fs/fat/inode.copts->dotsOK = 1;
opts123fs/fat/inode.copts->dotsOK = 0;
opts126fs/fat/inode.copts->showexec = 1;
opts129fs/fat/inode.cif (!strcmp(value,"yes")) opts->dotsOK = 1;
opts130fs/fat/inode.celse if (!strcmp(value,"no")) opts->dotsOK = 0;
opts136fs/fat/inode.copts->fs_uid = simple_strtoul(value,&value,0);
opts143fs/fat/inode.copts->fs_gid = simple_strtoul(value,&value,0);
opts150fs/fat/inode.copts->fs_umask = simple_strtoul(value,&value,8);
opts167fs/fat/inode.copts->quiet = 1;
opts180fs/fat/inode.copts->sys_immutable = 1;
opts196fs/fat/inode.cstruct fat_mount_options opts;
opts205fs/fat/inode.cif (!parse_options((char *) data, &fat, &blksize, &debug, &opts)
opts288fs/fat/inode.cMSDOS_SB(sb)->fat_bits,opts.name_check,
opts289fs/fat/inode.copts.conversion,opts.fs_uid,opts.fs_gid,opts.fs_umask,
opts316fs/fat/inode.cmemcpy(&(MSDOS_SB(sb)->options), &opts, sizeof(struct fat_mount_options));
opts238fs/hpfs/hpfs_fs.cstatic int parse_opts(char *opts, uid_t *uid, gid_t *gid, umode_t *umask,
opts552fs/hpfs/hpfs_fs.cstatic int parse_opts(char *opts, uid_t *uid, gid_t *gid, umode_t *umask,
opts564fs/hpfs/hpfs_fs.cif (!opts)
opts567fs/hpfs/hpfs_fs.cfor (p = strtok(opts, ","); p != 0; p = strtok(0, ",")) {
opts1113fs/nfs/nfsroot.cstruct nfs_int_opts *opts = root_int_opts;
opts1115fs/nfs/nfsroot.cwhile (opts->name && strcmp(opts->name, cp))
opts1116fs/nfs/nfsroot.copts++;
opts1117fs/nfs/nfsroot.cif (opts->name)
opts1118fs/nfs/nfsroot.c*(opts->val) = (int) simple_strtoul(val, NULL, 10);
opts1120fs/nfs/nfsroot.cstruct nfs_bool_opts *opts = root_bool_opts;
opts1121fs/nfs/nfsroot.cwhile (opts->name && strcmp(opts->name, cp))
opts1122fs/nfs/nfsroot.copts++;
opts1123fs/nfs/nfsroot.cif (opts->name) {
opts1124fs/nfs/nfsroot.cnfs_data.flags &= opts->and_mask;
opts1125fs/nfs/nfsroot.cnfs_data.flags |= opts->or_mask;
opts79fs/vfat/namei.cstatic int parse_options(char *options,  struct fat_mount_options *opts)
opts84fs/vfat/namei.copts->unicode_xlate = opts->posixfs = 0;
opts85fs/vfat/namei.copts->numtail = 1;
opts101fs/vfat/namei.copts->unicode_xlate = 1;
opts108fs/vfat/namei.copts->posixfs = 1;
opts115fs/vfat/namei.copts->numtail = 0;