diff options
author | Alejandro Martinez Ruiz <alex@nowcomputing.com> | 2013-01-25 13:08:59 -0500 |
---|---|---|
committer | Jaegeuk Kim <jaegeuk.kim@samsung.com> | 2013-02-11 17:15:00 -0500 |
commit | aa43507f68e44fbc014d820e47eda5a369b8dc9d (patch) | |
tree | daa4f776de421a26c3d9f0879f0330569c6bbcc2 /fs/f2fs | |
parent | bd43df021ac37247f2db58ff376fb4032170f754 (diff) |
f2fs: fix disable_ext_identify option spelling
There is a typo in the ->show_options function for disable_ext_identify.
Fix it to match the spelling from the documentation.
Signed-off-by: Alejandro Martinez Ruiz <alex@nowcomputing.com>
Signed-off-by: Jaegeuk Kim <jaegeuk.kim@samsung.com>
Diffstat (limited to 'fs/f2fs')
-rw-r--r-- | fs/f2fs/super.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/fs/f2fs/super.c b/fs/f2fs/super.c index 117ca2a46e39..25656b6869a4 100644 --- a/fs/f2fs/super.c +++ b/fs/f2fs/super.c | |||
@@ -198,7 +198,7 @@ static int f2fs_show_options(struct seq_file *seq, struct dentry *root) | |||
198 | seq_puts(seq, ",noacl"); | 198 | seq_puts(seq, ",noacl"); |
199 | #endif | 199 | #endif |
200 | if (test_opt(sbi, DISABLE_EXT_IDENTIFY)) | 200 | if (test_opt(sbi, DISABLE_EXT_IDENTIFY)) |
201 | seq_puts(seq, ",disable_ext_indentify"); | 201 | seq_puts(seq, ",disable_ext_identify"); |
202 | 202 | ||
203 | seq_printf(seq, ",active_logs=%u", sbi->active_logs); | 203 | seq_printf(seq, ",active_logs=%u", sbi->active_logs); |
204 | 204 | ||