projects
/
linux.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
da35fe9
)
f2fs: replace logical value "true" with a int number
author
Zhang Qilong
<zhangqilong3@huawei.com>
Mon, 29 Aug 2022 13:31:20 +0000
(21:31 +0800)
committer
Jaegeuk Kim
<jaegeuk@kernel.org>
Tue, 13 Sep 2022 06:08:25 +0000
(23:08 -0700)
The "true" is not match the parametera type "int", and
we modify it.
Signed-off-by: Zhang Qilong <zhangqilong3@huawei.com>
Reviewed-by: Chao Yu <chao@kernel.org>
Signed-off-by: Jaegeuk Kim <jaegeuk@kernel.org>
fs/f2fs/segment.c
patch
|
blob
|
history
diff --git
a/fs/f2fs/segment.c
b/fs/f2fs/segment.c
index a5054725d0b63ef495ed9ad0bcb36cd5571073a0..460048f3c850d8f971612c5c15352e0bc2e5fea2 100644
(file)
--- a/
fs/f2fs/segment.c
+++ b/
fs/f2fs/segment.c
@@
-481,7
+481,7
@@
do_sync:
mutex_unlock(&sbi->flush_lock);
}
- f2fs_sync_fs(sbi->sb,
true
);
+ f2fs_sync_fs(sbi->sb,
1
);
stat_inc_bg_cp_count(sbi->stat_info);
}