block: Use PAGE_SECTORS_SHIFT
authorMatthew Wilcox (Oracle) <willy@infradead.org>
Wed, 18 May 2022 03:40:45 +0000 (23:40 -0400)
committerMatthew Wilcox (Oracle) <willy@infradead.org>
Tue, 2 Aug 2022 16:34:03 +0000 (12:34 -0400)
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: Matthew Wilcox (Oracle) <willy@infradead.org>
block/partitions/core.c

index 58034dd..269c865 100644 (file)
@@ -712,8 +712,7 @@ void *read_part_sector(struct parsed_partitions *state, sector_t n, Sector *p)
                goto out;
        }
 
-       page = read_mapping_page(mapping,
-                       (pgoff_t)(n >> (PAGE_SHIFT - 9)), NULL);
+       page = read_mapping_page(mapping, n >> PAGE_SECTORS_SHIFT, NULL);
        if (IS_ERR(page))
                goto out;