block: Use PAGE_SECTORS_SHIFT

The bare use of '9' confuses some people.  We also don't need this cast,
since the compiler does exactly that cast for us.
Signed-off-by: default avatarMatthew Wilcox (Oracle) <willy@infradead.org>
parent 98d8ba69
...@@ -712,8 +712,7 @@ void *read_part_sector(struct parsed_partitions *state, sector_t n, Sector *p) ...@@ -712,8 +712,7 @@ void *read_part_sector(struct parsed_partitions *state, sector_t n, Sector *p)
goto out; goto out;
} }
page = read_mapping_page(mapping, page = read_mapping_page(mapping, n >> PAGE_SECTORS_SHIFT, NULL);
(pgoff_t)(n >> (PAGE_SHIFT - 9)), NULL);
if (IS_ERR(page)) if (IS_ERR(page))
goto out; goto out;
......
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