aboutsummaryrefslogtreecommitdiffstats
path: root/fs/ext4/super.c
diff options
context:
space:
mode:
Diffstat (limited to 'fs/ext4/super.c')
-rw-r--r--fs/ext4/super.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/fs/ext4/super.c b/fs/ext4/super.c
index db2cd3f21074..42f76c64df8c 100644
--- a/fs/ext4/super.c
+++ b/fs/ext4/super.c
@@ -1073,8 +1073,6 @@ static int ext4_show_options(struct seq_file *seq, struct vfsmount *vfs)
1073 seq_puts(seq, ",nouid32"); 1073 seq_puts(seq, ",nouid32");
1074 if (test_opt(sb, DEBUG) && !(def_mount_opts & EXT4_DEFM_DEBUG)) 1074 if (test_opt(sb, DEBUG) && !(def_mount_opts & EXT4_DEFM_DEBUG))
1075 seq_puts(seq, ",debug"); 1075 seq_puts(seq, ",debug");
1076 if (test_opt(sb, OLDALLOC))
1077 seq_puts(seq, ",oldalloc");
1078#ifdef CONFIG_EXT4_FS_XATTR 1076#ifdef CONFIG_EXT4_FS_XATTR
1079 if (test_opt(sb, XATTR_USER)) 1077 if (test_opt(sb, XATTR_USER))
1080 seq_puts(seq, ",user_xattr"); 1078 seq_puts(seq, ",user_xattr");
@@ -1583,10 +1581,12 @@ static int parse_options(char *options, struct super_block *sb,
1583 set_opt(sb, DEBUG); 1581 set_opt(sb, DEBUG);
1584 break; 1582 break;
1585 case Opt_oldalloc: 1583 case Opt_oldalloc:
1586 set_opt(sb, OLDALLOC); 1584 ext4_msg(sb, KERN_WARNING,
1585 "Ignoring deprecated oldalloc option");
1587 break; 1586 break;
1588 case Opt_orlov: 1587 case Opt_orlov:
1589 clear_opt(sb, OLDALLOC); 1588 ext4_msg(sb, KERN_WARNING,
1589 "Ignoring deprecated orlov option");
1590 break; 1590 break;
1591#ifdef CONFIG_EXT4_FS_XATTR 1591#ifdef CONFIG_EXT4_FS_XATTR
1592 case Opt_user_xattr: 1592 case Opt_user_xattr: