• Home
  • History
  • Annotate
  • Raw
  • Download
  • only in /netgear-R7000-V1.0.7.12_1.2.5/components/opensource/linux/linux-2.6.36/fs/ext4/

Lines Matching refs:option

922  * Show an option if
998 * We're changing the default of barrier mount option, so
1321 static char deprecated_msg[] = "Mount option \"%s\" will be removed by %s\n"
1391 int option;
1431 if (match_int(&args[0], &option))
1433 sbi->s_resuid = option;
1436 if (match_int(&args[0], &option))
1438 sbi->s_resgid = option;
1515 if (match_int(&args[0], &option))
1517 *journal_devnum = option;
1530 if (match_int(&args[0], &option))
1532 if (option < 0)
1534 if (option == 0)
1535 option = JBD2_DEFAULT_MAX_COMMIT_AGE;
1536 sbi->s_commit_interval = HZ * option;
1539 if (match_int(&args[0], &option))
1541 if (option < 0)
1543 if (option == 0)
1544 option = EXT4_DEF_MAX_BATCH_TIME;
1545 sbi->s_max_batch_time = option;
1548 if (match_int(&args[0], &option))
1550 if (option < 0)
1552 sbi->s_min_batch_time = option;
1663 if (match_int(&args[0], &option))
1666 option = 1; /* No argument, default to 1 */
1667 if (option)
1677 "resize option only available "
1681 if (match_int(&args[0], &option) != 0)
1683 *n_blocks_count = option;
1687 "Ignoring deprecated nobh option");
1691 "Ignoring deprecated bh option");
1701 if (match_int(&args[0], &option))
1703 if (option < 0)
1705 sbi->s_stripe = option;
1717 if (match_int(&args[0], &option))
1719 if (option < 0 || option > (1 << 30))
1721 if (!is_power_of_2(option)) {
1727 sbi->s_inode_readahead_blks = option;
1730 if (match_int(&args[0], &option))
1732 if (option < 0 || option > 7)
1735 option);
1742 if (match_int(&args[0], &option))
1745 option = 1; /* No argument, default to 1 */
1746 if (option)
1765 "Unrecognized mount option \"%s\" "
2252 * If we have specified it via mount option, then
2253 * use the mount option value. If the value specified at mount time is
3101 ext4_msg(sb, KERN_WARNING, "Ignoring delalloc option - "
3108 "option - requested data journaling mode");
3113 "option - block size is too small");
3746 * Allow the "check" option to be passed as a remount option.