mirror of
https://github.com/Fishwaldo/Star64_linux.git
synced 2025-06-06 14:48:06 +00:00
ext4: use matching invalidatepage in ext4_writepage
Run generic/388 with journal data mode sometimes may trigger the warning in ext4_invalidatepage. Actually, we should use the matching invalidatepage in ext4_writepage. Signed-off-by: yangerkun <yangerkun@huawei.com> Signed-off-by: Theodore Ts'o <tytso@mit.edu> Reviewed-by: Ritesh Harjani <riteshh@linux.ibm.com> Reviewed-by: Jan Kara <jack@suse.cz> Link: https://lore.kernel.org/r/20200226041002.13914-1-yangerkun@huawei.com Signed-off-by: Theodore Ts'o <tytso@mit.edu>
This commit is contained in:
parent
00086336a8
commit
c2a559bc0e
1 changed files with 1 additions and 1 deletions
|
@ -1973,7 +1973,7 @@ static int ext4_writepage(struct page *page,
|
||||||
bool keep_towrite = false;
|
bool keep_towrite = false;
|
||||||
|
|
||||||
if (unlikely(ext4_forced_shutdown(EXT4_SB(inode->i_sb)))) {
|
if (unlikely(ext4_forced_shutdown(EXT4_SB(inode->i_sb)))) {
|
||||||
ext4_invalidatepage(page, 0, PAGE_SIZE);
|
inode->i_mapping->a_ops->invalidatepage(page, 0, PAGE_SIZE);
|
||||||
unlock_page(page);
|
unlock_page(page);
|
||||||
return -EIO;
|
return -EIO;
|
||||||
}
|
}
|
||||||
|
|
Loading…
Add table
Reference in a new issue