mirror of
https://github.com/torvalds/linux.git
synced 2026-05-24 07:03:03 +02:00
f2fs: fix to clear page private flag
Commit 28bc106b23 ("f2fs: support revoking atomic written pages")
forgot to clear page private flag correctly, fix it.
Signed-off-by: Chao Yu <yuchao0@huawei.com>
Signed-off-by: Jaegeuk Kim <jaegeuk@kernel.org>
This commit is contained in:
parent
23dc974eed
commit
c81ced05b2
|
|
@ -227,6 +227,7 @@ static int __revoke_inmem_pages(struct inode *inode,
|
|||
if (drop || recover)
|
||||
ClearPageUptodate(page);
|
||||
set_page_private(page, 0);
|
||||
ClearPagePrivate(page);
|
||||
f2fs_put_page(page, 1);
|
||||
|
||||
list_del(&cur->list);
|
||||
|
|
|
|||
Loading…
Reference in New Issue
Block a user