aboutsummaryrefslogtreecommitdiffstats
path: root/fs/ext2/dir.c
diff options
context:
space:
mode:
authorMatthew Wilcox (Oracle) <willy@infradead.org>2022-05-17 18:12:25 -0400
committerMatthew Wilcox (Oracle) <willy@infradead.org>2022-06-29 08:51:06 -0400
commit750cd7d0e65f2f65c52932ea48b2702fee6ab7a7 (patch)
tree4e8e555898f133ffffa028119157a95486891c55 /fs/ext2/dir.c
parentntfs: Remove check for PageError (diff)
downloadlinux-dev-750cd7d0e65f2f65c52932ea48b2702fee6ab7a7.tar.xz
linux-dev-750cd7d0e65f2f65c52932ea48b2702fee6ab7a7.zip
ext2: Remove check for PageError
If read_mapping_page() encounters an error, it returns an errno, not a page with PageError set, so this test is not needed. Signed-off-by: Matthew Wilcox (Oracle) <willy@infradead.org>
Diffstat (limited to 'fs/ext2/dir.c')
-rw-r--r--fs/ext2/dir.c3
1 files changed, 1 insertions, 2 deletions
diff --git a/fs/ext2/dir.c b/fs/ext2/dir.c
index 43de293cef56..8326b63f0b70 100644
--- a/fs/ext2/dir.c
+++ b/fs/ext2/dir.c
@@ -204,8 +204,7 @@ static struct page * ext2_get_page(struct inode *dir, unsigned long n,
if (!IS_ERR(page)) {
*page_addr = kmap_local_page(page);
if (unlikely(!PageChecked(page))) {
- if (PageError(page) || !ext2_check_page(page, quiet,
- *page_addr))
+ if (!ext2_check_page(page, quiet, *page_addr))
goto fail;
}
}