Home
last modified time | relevance | path

Searched refs:options (Results 1 – 4 of 4) sorted by relevance

/fs/exfat/
A Dmount.c69 if ((p == options || p[-1] == ',') && p[length] == '=') in get_option()
77 const char* p = get_option(options, option_name); in get_int_option()
88 opt_umask = get_int_option(options, "umask", 8, 0); in parse_options()
89 ef->dmask = get_int_option(options, "dmask", 8, opt_umask); in parse_options()
92 ef->uid = get_int_option(options, "uid", 10, geteuid()); in parse_options()
93 ef->gid = get_int_option(options, "gid", 10, getegid()); in parse_options()
95 ef->noatime = exfat_match_option(options, "noatime"); in parse_options()
97 switch (get_int_option(options, "repair", 10, 0)) in parse_options()
193 parse_options(ef, options); in exfat_mount()
195 if (exfat_match_option(options, "ro")) in exfat_mount()
[all …]
A Dutils.c184 bool exfat_match_option(const char* options, const char* option_name) in exfat_match_option() argument
189 for (p = strstr(options, option_name); p; p = strstr(p + 1, option_name)) in exfat_match_option()
190 if ((p == options || p[-1] == ',') && in exfat_match_option()
A Dexfat.h218 bool exfat_match_option(const char* options, const char* option_name);
246 int exfat_mount(struct exfat* ef, const char* spec, const char* options);
/fs/ubifs/
A Dsuper.c1164 static int ubifs_parse_options(struct ubifs_info *c, char *options, in ubifs_parse_options() argument
1170 if (!options) in ubifs_parse_options()
1173 while ((p = strsep(&options, ","))) { in ubifs_parse_options()

Completed in 10 milliseconds