summaryrefslogtreecommitdiff
path: root/block
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-26 09:47:14 -0400
commit3eebaac433e2a6905e76d60b38ee67e72d7078eb (patch)
tree46b32c1849d6f03e76ecf4f1613dc718fb704fe2 /block
parentefdce77299e9de74c5d50564c77f996c431e7401 (diff)
downloadlinux-next-3eebaac433e2a6905e76d60b38ee67e72d7078eb.tar.gz
block: Remove check of PageError
If read_mapping_page() sees a page with PageError set, it returns a PTR_ERR(). Checking PageError again is simply dead code. Signed-off-by: Matthew Wilcox (Oracle) <willy@infradead.org>
Diffstat (limited to 'block')
-rw-r--r--block/partitions/core.c4
1 files changed, 0 insertions, 4 deletions
diff --git a/block/partitions/core.c b/block/partitions/core.c
index 8a0ec929023b..a9a51bac42df 100644
--- a/block/partitions/core.c
+++ b/block/partitions/core.c
@@ -716,14 +716,10 @@ void *read_part_sector(struct parsed_partitions *state, sector_t n, Sector *p)
(pgoff_t)(n >> (PAGE_SHIFT - 9)), NULL);
if (IS_ERR(page))
goto out;
- if (PageError(page))
- goto out_put_page;
p->v = page;
return (unsigned char *)page_address(page) +
((n & ((1 << (PAGE_SHIFT - 9)) - 1)) << SECTOR_SHIFT);
-out_put_page:
- put_page(page);
out:
p->v = NULL;
return NULL;