Lines Matching defs:option
44 /* Lock timeout option */
158 * @opts: The mount option string
168 int option = 0;
200 r = match_int(&args[0], &option);
206 v9ses->debug = option;
208 p9_debug_level = option;
214 r = match_int(&args[0], &option);
221 v9ses->dfltuid = make_kuid(current_user_ns(), option);
229 r = match_int(&args[0], &option);
236 v9ses->dfltgid = make_kgid(current_user_ns(), option);
244 r = match_int(&args[0], &option);
250 v9ses->afid = option;
351 "Not defined CONFIG_9P_FS_POSIX_ACL. Ignoring posixacl option\n");
356 r = match_int(&args[0], &option);
363 if (option < 1) {
369 v9ses->session_lock_timeout = (long)option * HZ;