Lines Matching refs:option

1301 		int token, option;  in ocfs2_parse_options()  local
1319 if (match_int(&args[0], &option)) { in ocfs2_parse_options()
1323 if (option) in ocfs2_parse_options()
1362 if (match_int(&args[0], &option)) { in ocfs2_parse_options()
1366 if (option >= 0) in ocfs2_parse_options()
1367 mopt->atime_quantum = option; in ocfs2_parse_options()
1370 option = 0; in ocfs2_parse_options()
1371 if (match_int(&args[0], &option)) { in ocfs2_parse_options()
1375 if (option) in ocfs2_parse_options()
1376 mopt->slot = (s16)option; in ocfs2_parse_options()
1379 option = 0; in ocfs2_parse_options()
1380 if (match_int(&args[0], &option)) { in ocfs2_parse_options()
1384 if (option < 0) in ocfs2_parse_options()
1386 if (option == 0) in ocfs2_parse_options()
1387 option = JBD2_DEFAULT_MAX_COMMIT_AGE; in ocfs2_parse_options()
1388 mopt->commit_interval = HZ * option; in ocfs2_parse_options()
1391 option = 0; in ocfs2_parse_options()
1392 if (match_int(&args[0], &option)) { in ocfs2_parse_options()
1396 if (option >= 0) in ocfs2_parse_options()
1397 mopt->localalloc_opt = option; in ocfs2_parse_options()
1467 if (match_int(&args[0], &option)) { in ocfs2_parse_options()
1471 if (option >= OCFS2_MIN_RESV_LEVEL && in ocfs2_parse_options()
1472 option < OCFS2_MAX_RESV_LEVEL) in ocfs2_parse_options()
1473 mopt->resv_level = option; in ocfs2_parse_options()
1478 if (match_int(&args[0], &option)) { in ocfs2_parse_options()
1482 if (option >= OCFS2_MIN_RESV_LEVEL && in ocfs2_parse_options()
1483 option < OCFS2_MAX_RESV_LEVEL) in ocfs2_parse_options()
1484 mopt->dir_resv_level = option; in ocfs2_parse_options()