mirror of
https://github.com/torvalds/linux.git
synced 2024-11-14 16:12:02 +00:00
f2fs: fix to clear PG_error if fsverity failed
In f2fs_decompress_end_io(), we should clear PG_error flag before page
unlock, otherwise reread will fail due to the flag as described in
commit fb7d70db30
("f2fs: clear PageError on the read path").
Signed-off-by: Chao Yu <yuchao0@huawei.com>
Signed-off-by: Jaegeuk Kim <jaegeuk@kernel.org>
This commit is contained in:
parent
d76af0d675
commit
23c51bed6f
@ -1187,15 +1187,17 @@ void f2fs_decompress_end_io(struct page **rpages,
|
||||
if (!rpage)
|
||||
continue;
|
||||
|
||||
if (err || PageError(rpage)) {
|
||||
ClearPageUptodate(rpage);
|
||||
ClearPageError(rpage);
|
||||
} else {
|
||||
if (!verity || fsverity_verify_page(rpage))
|
||||
SetPageUptodate(rpage);
|
||||
else
|
||||
SetPageError(rpage);
|
||||
if (err || PageError(rpage))
|
||||
goto clear_uptodate;
|
||||
|
||||
if (!verity || fsverity_verify_page(rpage)) {
|
||||
SetPageUptodate(rpage);
|
||||
goto unlock;
|
||||
}
|
||||
clear_uptodate:
|
||||
ClearPageUptodate(rpage);
|
||||
ClearPageError(rpage);
|
||||
unlock:
|
||||
unlock_page(rpage);
|
||||
}
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user