Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 373cd5c5 authored by Theodore Ts'o's avatar Theodore Ts'o
Browse files

ext4: don't show mount options in /proc/mounts if there is no journal



After creating an ext4 file system without a journal:

  # mke2fs -t ext4 -O ^has_journal /dev/sda
  # mount -t ext4 /dev/sda /test

the /proc/mounts will show:
"/dev/sda /test ext4 rw,relatime,user_xattr,acl,barrier=1,data=writeback 0 0"
which can fool users into thinking that the fs is using writeback mode.

So don't set the writeback option when the journal has not been
enabled; we don't depend on the writeback option being set, since
ext4_should_writeback_data() in ext4_jbd2.h tests to see if the
journal is not present before returning true.

Reported-by: default avatarRobin Dong <sanbai@taobao.com>
Signed-off-by: default avatar"Theodore Ts'o" <tytso@mit.edu>
parent 1bb933fb
Loading
Loading
Loading
Loading
+0 −1
Original line number Original line Diff line number Diff line
@@ -3485,7 +3485,6 @@ static int ext4_fill_super(struct super_block *sb, void *data, int silent)
		goto failed_mount_wq;
		goto failed_mount_wq;
	} else {
	} else {
		clear_opt(sb, DATA_FLAGS);
		clear_opt(sb, DATA_FLAGS);
		set_opt(sb, WRITEBACK_DATA);
		sbi->s_journal = NULL;
		sbi->s_journal = NULL;
		needs_recovery = 0;
		needs_recovery = 0;
		goto no_journal;
		goto no_journal;