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

Commit 1d526fc9 authored by Ben Hutchings's avatar Ben Hutchings Committed by Theodore Ts'o
Browse files

ext4: Report max_batch_time option correctly



Currently the value reported for max_batch_time is really the
value of min_batch_time.

Reported-by: default avatarRussell Coker <russell@coker.com.au>
Signed-off-by: default avatarBen Hutchings <ben@decadent.org.uk>
parent 014a1770
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -1096,7 +1096,7 @@ static int ext4_show_options(struct seq_file *seq, struct vfsmount *vfs)
	}
	if (sbi->s_max_batch_time != EXT4_DEF_MAX_BATCH_TIME) {
		seq_printf(seq, ",max_batch_time=%u",
			   (unsigned) sbi->s_min_batch_time);
			   (unsigned) sbi->s_max_batch_time);
	}

	/*