Lines Matching defs:option
241 * Set @opts to mount options specified in @data. If an option is not
270 int option;
278 if (match_int(&args[0], &option))
280 uid = make_kuid(current_user_ns(), option);
287 if (match_int(&args[0], &option))
289 gid = make_kgid(current_user_ns(), option);
296 if (match_octal(&args[0], &option))
298 opts->mode = option & S_IALLUGO;
301 if (match_octal(&args[0], &option))
303 opts->ptmxmode = option & S_IALLUGO;
308 if (match_int(&args[0], &option) ||
309 option < 0 || option > NR_UNIX98_PTY_MAX)
311 opts->max = option;