diff options
author | Matthew Wilcox (Oracle) <willy@infradead.org> | 2022-05-17 18:12:25 -0400 |
---|---|---|
committer | Matthew Wilcox (Oracle) <willy@infradead.org> | 2022-06-29 08:51:07 -0400 |
commit | 19cb4273a245dae6ed1168172c619ccbf6a704bc (patch) | |
tree | fd8a96df06a5b3b98066b44266ea59bb049895c3 /fs/ntfs3 | |
parent | 62a3a4dd476d5d1db9f13bb902f78fed2b6abd18 (diff) | |
download | linux-rpi-19cb4273a245dae6ed1168172c619ccbf6a704bc.tar.gz linux-rpi-19cb4273a245dae6ed1168172c619ccbf6a704bc.tar.bz2 linux-rpi-19cb4273a245dae6ed1168172c619ccbf6a704bc.zip |
ntfs3: 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: Matthew Wilcox (Oracle) <willy@infradead.org>
Diffstat (limited to 'fs/ntfs3')
-rw-r--r-- | fs/ntfs3/ntfs_fs.h | 7 |
1 files changed, 1 insertions, 6 deletions
diff --git a/fs/ntfs3/ntfs_fs.h b/fs/ntfs3/ntfs_fs.h index 8de129a6419b..f28726c4e845 100644 --- a/fs/ntfs3/ntfs_fs.h +++ b/fs/ntfs3/ntfs_fs.h @@ -896,13 +896,8 @@ static inline struct page *ntfs_map_page(struct address_space *mapping, { struct page *page = read_mapping_page(mapping, index, NULL); - if (!IS_ERR(page)) { + if (!IS_ERR(page)) kmap(page); - if (!PageError(page)) - return page; - ntfs_unmap_page(page); - return ERR_PTR(-EIO); - } return page; } |