From: Alejandro Martinez Ruiz Date: Fri, 25 Jan 2013 18:08:59 +0000 (+0100) Subject: f2fs: fix disable_ext_identify option spelling X-Git-Url: http://drtracing.org/?a=commitdiff_plain;h=aa43507f68e44fbc014d820e47eda5a369b8dc9d;p=deliverable%2Flinux.git 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 Signed-off-by: Jaegeuk Kim --- 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) seq_puts(seq, ",noacl"); #endif if (test_opt(sbi, DISABLE_EXT_IDENTIFY)) - seq_puts(seq, ",disable_ext_indentify"); + seq_puts(seq, ",disable_ext_identify"); seq_printf(seq, ",active_logs=%u", sbi->active_logs);