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:06 -0400 |
commit | 54c6260fa88180a758645fe5ceeecb10cd5f4dd0 (patch) | |
tree | 9864188965faf731c2a9a16e8f7eab6511c190e3 /fs/freevxfs | |
parent | 59fc64740571685441f754db4846a1fb22896b53 (diff) | |
download | linux-next-54c6260fa88180a758645fe5ceeecb10cd5f4dd0.tar.gz |
freevxfs: Remove check of 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/freevxfs')
-rw-r--r-- | fs/freevxfs/vxfs_subr.c | 6 |
1 files changed, 0 insertions, 6 deletions
diff --git a/fs/freevxfs/vxfs_subr.c b/fs/freevxfs/vxfs_subr.c index 0e633d2bfc7d..c99282df7761 100644 --- a/fs/freevxfs/vxfs_subr.c +++ b/fs/freevxfs/vxfs_subr.c @@ -51,15 +51,9 @@ vxfs_get_page(struct address_space *mapping, u_long n) kmap(pp); /** if (!PageChecked(pp)) **/ /** vxfs_check_page(pp); **/ - if (PageError(pp)) - goto fail; } return (pp); - -fail: - vxfs_put_page(pp); - return ERR_PTR(-EIO); } /** |