|
@@ -636,6 +636,9 @@ static int ext3_show_options(struct seq_file *seq, struct vfsmount *vfs)
|
|
|
if (test_opt(sb, DATA_ERR_ABORT))
|
|
|
seq_puts(seq, ",data_err=abort");
|
|
|
|
|
|
+ if (test_opt(sb, NOLOAD))
|
|
|
+ seq_puts(seq, ",norecovery");
|
|
|
+
|
|
|
ext3_show_quota_options(seq, sb);
|
|
|
|
|
|
return 0;
|
|
@@ -818,6 +821,7 @@ static const match_table_t tokens = {
|
|
|
{Opt_reservation, "reservation"},
|
|
|
{Opt_noreservation, "noreservation"},
|
|
|
{Opt_noload, "noload"},
|
|
|
+ {Opt_noload, "norecovery"},
|
|
|
{Opt_nobh, "nobh"},
|
|
|
{Opt_bh, "bh"},
|
|
|
{Opt_commit, "commit=%u"},
|