iomap: mark the iomap argument to iomap_read_page_sync const
authorChristoph Hellwig <hch@lst.de>
Wed, 11 Aug 2021 01:33:06 +0000 (18:33 -0700)
committerDarrick J. Wong <djwong@kernel.org>
Tue, 17 Aug 2021 04:26:33 +0000 (21:26 -0700)
iomap_read_page_sync never modifies the passed in iomap, so mark
it const.

Signed-off-by: Christoph Hellwig <hch@lst.de>
Reviewed-by: Darrick J. Wong <djwong@kernel.org>
Signed-off-by: Darrick J. Wong <djwong@kernel.org>
fs/iomap/buffered-io.c

index b8a1ba3..0273aed 100644 (file)
@@ -531,7 +531,7 @@ iomap_write_failed(struct inode *inode, loff_t pos, unsigned len)
 
 static int
 iomap_read_page_sync(loff_t block_start, struct page *page, unsigned poff,
-               unsigned plen, struct iomap *iomap)
+               unsigned plen, const struct iomap *iomap)
 {
        struct bio_vec bvec;
        struct bio bio;