From mboxrd@z Thu Jan 1 00:00:00 1970 From: Darrick J. Wong Date: Mon, 19 Jul 2021 10:35:43 -0700 Subject: [Cluster-devel] [PATCH 06/27] iomap: mark the iomap argument to iomap_read_inline_data const In-Reply-To: <20210719103520.495450-7-hch@lst.de> References: <20210719103520.495450-1-hch@lst.de> <20210719103520.495450-7-hch@lst.de> Message-ID: <20210719173543.GF22357@magnolia> List-Id: To: cluster-devel.redhat.com MIME-Version: 1.0 Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: 7bit On Mon, Jul 19, 2021 at 12:34:59PM +0200, Christoph Hellwig wrote: > iomap_read_inline_data never modifies the passed in iomap, so mark > it const. > > Signed-off-by: Christoph Hellwig Looks good, Reviewed-by: Darrick J. Wong --D > --- > fs/iomap/buffered-io.c | 2 +- > 1 file changed, 1 insertion(+), 1 deletion(-) > > diff --git a/fs/iomap/buffered-io.c b/fs/iomap/buffered-io.c > index 75310f6fcf8401..e47380259cf7e1 100644 > --- a/fs/iomap/buffered-io.c > +++ b/fs/iomap/buffered-io.c > @@ -207,7 +207,7 @@ struct iomap_readpage_ctx { > > static void > iomap_read_inline_data(struct inode *inode, struct page *page, > - struct iomap *iomap) > + const struct iomap *iomap) > { > size_t size = i_size_read(inode); > void *addr; > -- > 2.30.2 >