diff options
author | Matthew Wilcox (Oracle) <willy@infradead.org> | 2022-05-17 23:38:37 -0400 |
---|---|---|
committer | Matthew Wilcox (Oracle) <willy@infradead.org> | 2022-06-26 09:47:16 -0400 |
commit | db6eede4b6b18f2104e012e7df030dbe1e8f0c60 (patch) | |
tree | 9b9b49bab3e9124e4dc8d230646e4a483b80c3ce /block | |
parent | 8c83f56da6d665640b6f6ab77cd099f7a749b986 (diff) | |
download | linux-next-db6eede4b6b18f2104e012e7df030dbe1e8f0c60.tar.gz |
block: Handle partition read errors more consistently
Set p->v to NULL if we try to read beyond the end of the disk, just like
we do if we get an error returned from trying to read the disk.
Signed-off-by: Matthew Wilcox (Oracle) <willy@infradead.org>
Diffstat (limited to 'block')
-rw-r--r-- | block/partitions/core.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/block/partitions/core.c b/block/partitions/core.c index 52871fa224ee..58034dd2d215 100644 --- a/block/partitions/core.c +++ b/block/partitions/core.c @@ -709,7 +709,7 @@ void *read_part_sector(struct parsed_partitions *state, sector_t n, Sector *p) if (n >= get_capacity(state->disk)) { state->access_beyond_eod = true; - return NULL; + goto out; } page = read_mapping_page(mapping, |