projects
/
linux.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
11768cf
)
ext4: don't show commit interval if it is zero
author
Wang Jianjian
<wangjianjian3@huawei.com>
Mon, 19 Dec 2022 01:51:28 +0000
(09:51 +0800)
committer
Theodore Ts'o
<tytso@mit.edu>
Thu, 9 Feb 2023 15:43:23 +0000
(10:43 -0500)
If commit interval is 0, it means using default value.
Fixes: 6e47a3cc68fc ("ext4: get rid of super block and sbi from handle_mount_ops()")
Signed-off-by: Wang Jianjian <wangjianjian3@huawei.com>
Link:
https://lore.kernel.org/r/20221219015128.876717-1-wangjianjian3@huawei.com
Signed-off-by: Theodore Ts'o <tytso@mit.edu>
fs/ext4/super.c
patch
|
blob
|
history
diff --git
a/fs/ext4/super.c
b/fs/ext4/super.c
index 260c1b3e3ef2c002208ae1b8ea1986378903132d..3b9e30e1afd91e013381a4b317607d44e31969a9 100644
(file)
--- a/
fs/ext4/super.c
+++ b/
fs/ext4/super.c
@@
-2146,7
+2146,7
@@
static int ext4_parse_param(struct fs_context *fc, struct fs_parameter *param)
return 0;
case Opt_commit:
if (result.uint_32 == 0)
-
ctx->s_commit_interval
= JBD2_DEFAULT_MAX_COMMIT_AGE;
+
result.uint_32
= JBD2_DEFAULT_MAX_COMMIT_AGE;
else if (result.uint_32 > INT_MAX / HZ) {
ext4_msg(NULL, KERN_ERR,
"Invalid commit interval %d, "