mirror of
https://github.com/raspberrypi/linux.git
synced 2025-12-06 10:00:17 +00:00
f2fs: fix to account missing .skipped_gc_rwsem
[ Upstream commitad126ebdde] There is a missing place we forgot to account .skipped_gc_rwsem, fix it. Fixes:6f8d445506("f2fs: avoid fi->i_gc_rwsem[WRITE] lock in f2fs_gc") Signed-off-by: Chao Yu <chao@kernel.org> Signed-off-by: Jaegeuk Kim <jaegeuk@kernel.org> Signed-off-by: Sasha Levin <sashal@kernel.org>
This commit is contained in:
committed by
Greg Kroah-Hartman
parent
4e6712d66e
commit
0366fa86ca
@@ -1497,8 +1497,10 @@ next_step:
|
|||||||
int err;
|
int err;
|
||||||
|
|
||||||
if (S_ISREG(inode->i_mode)) {
|
if (S_ISREG(inode->i_mode)) {
|
||||||
if (!down_write_trylock(&fi->i_gc_rwsem[READ]))
|
if (!down_write_trylock(&fi->i_gc_rwsem[READ])) {
|
||||||
|
sbi->skipped_gc_rwsem++;
|
||||||
continue;
|
continue;
|
||||||
|
}
|
||||||
if (!down_write_trylock(
|
if (!down_write_trylock(
|
||||||
&fi->i_gc_rwsem[WRITE])) {
|
&fi->i_gc_rwsem[WRITE])) {
|
||||||
sbi->skipped_gc_rwsem++;
|
sbi->skipped_gc_rwsem++;
|
||||||
|
|||||||
Reference in New Issue
Block a user