From: Christoph Hellwig Date: Wed, 11 Aug 2021 01:33:04 +0000 (-0700) Subject: iomap: mark the iomap argument to iomap_sector const X-Git-Url: http://git.maquefel.me/?a=commitdiff_plain;h=66b8165ed4b5a2e7ddb7b9bbf3586b7ccdd86a1c;p=linux.git iomap: mark the iomap argument to iomap_sector const Signed-off-by: Christoph Hellwig Reviewed-by: Darrick J. Wong Signed-off-by: Darrick J. Wong --- diff --git a/include/linux/iomap.h b/include/linux/iomap.h index 72696a55c137f..8030483331d17 100644 --- a/include/linux/iomap.h +++ b/include/linux/iomap.h @@ -91,8 +91,7 @@ struct iomap { const struct iomap_page_ops *page_ops; }; -static inline sector_t -iomap_sector(struct iomap *iomap, loff_t pos) +static inline sector_t iomap_sector(const struct iomap *iomap, loff_t pos) { return (iomap->addr + pos - iomap->offset) >> SECTOR_SHIFT; }