ntfs: Remove check for PageError

If read_mapping_page() encounters an error, it returns an errno, not a
page with PageError set, so this is dead code.
Signed-off-by: default avatarMatthew Wilcox (Oracle) <willy@infradead.org>
parent 79ea6556
...@@ -74,13 +74,8 @@ static inline struct page *ntfs_map_page(struct address_space *mapping, ...@@ -74,13 +74,8 @@ static inline struct page *ntfs_map_page(struct address_space *mapping,
{ {
struct page *page = read_mapping_page(mapping, index, NULL); struct page *page = read_mapping_page(mapping, index, NULL);
if (!IS_ERR(page)) { if (!IS_ERR(page))
kmap(page); kmap(page);
if (!PageError(page))
return page;
ntfs_unmap_page(page);
return ERR_PTR(-EIO);
}
return page; return page;
} }
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment