Lines Matching refs:option

1299 		int token, option;  in ocfs2_parse_options()  local
1317 if (match_int(&args[0], &option)) { in ocfs2_parse_options()
1321 if (option) in ocfs2_parse_options()
1351 if (match_int(&args[0], &option)) { in ocfs2_parse_options()
1355 if (option >= 0) in ocfs2_parse_options()
1356 mopt->atime_quantum = option; in ocfs2_parse_options()
1359 option = 0; in ocfs2_parse_options()
1360 if (match_int(&args[0], &option)) { in ocfs2_parse_options()
1364 if (option) in ocfs2_parse_options()
1365 mopt->slot = (s16)option; in ocfs2_parse_options()
1368 option = 0; in ocfs2_parse_options()
1369 if (match_int(&args[0], &option)) { in ocfs2_parse_options()
1373 if (option < 0) in ocfs2_parse_options()
1375 if (option == 0) in ocfs2_parse_options()
1376 option = JBD2_DEFAULT_MAX_COMMIT_AGE; in ocfs2_parse_options()
1377 mopt->commit_interval = HZ * option; in ocfs2_parse_options()
1380 option = 0; in ocfs2_parse_options()
1381 if (match_int(&args[0], &option)) { in ocfs2_parse_options()
1385 if (option >= 0) in ocfs2_parse_options()
1386 mopt->localalloc_opt = option; in ocfs2_parse_options()
1456 if (match_int(&args[0], &option)) { in ocfs2_parse_options()
1460 if (option >= OCFS2_MIN_RESV_LEVEL && in ocfs2_parse_options()
1461 option < OCFS2_MAX_RESV_LEVEL) in ocfs2_parse_options()
1462 mopt->resv_level = 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->dir_resv_level = option; in ocfs2_parse_options()