projects
/
platform
/
kernel
/
linux-exynos.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
014a177
)
ext4: Report max_batch_time option correctly
author
Ben Hutchings
<ben@decadent.org.uk>
Thu, 5 Jan 2012 02:22:51 +0000
(21:22 -0500)
committer
Theodore Ts'o
<tytso@mit.edu>
Thu, 5 Jan 2012 02:22:51 +0000
(21:22 -0500)
Currently the value reported for max_batch_time is really the
value of min_batch_time.
Reported-by: Russell Coker <russell@coker.com.au>
Signed-off-by: Ben Hutchings <ben@decadent.org.uk>
fs/ext4/super.c
patch
|
blob
|
history
diff --git
a/fs/ext4/super.c
b/fs/ext4/super.c
index
35377d5
..
36570b7
100644
(file)
--- a/
fs/ext4/super.c
+++ b/
fs/ext4/super.c
@@
-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_m
in
_batch_time);
+ (unsigned) sbi->s_m
ax
_batch_time);
}
/*