Lines Matching defs:option
223 * Set @opts to mount options specified in @data. If an option is not
252 int option;
260 if (match_int(&args[0], &option))
262 uid = make_kuid(current_user_ns(), option);
269 if (match_int(&args[0], &option))
271 gid = make_kgid(current_user_ns(), option);
278 if (match_octal(&args[0], &option))
280 opts->mode = option & S_IALLUGO;
283 if (match_octal(&args[0], &option))
285 opts->ptmxmode = option & S_IALLUGO;
290 if (match_int(&args[0], &option) ||
291 option < 0 || option > NR_UNIX98_PTY_MAX)
293 opts->max = option;