projects
/
linux.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
6d49cc8
)
fsdax: mark the iomap argument to dax_iomap_sector as const
author
Christoph Hellwig
<hch@lst.de>
Wed, 11 Aug 2021 01:33:05 +0000
(18:33 -0700)
committer
Darrick J. Wong
<djwong@kernel.org>
Tue, 17 Aug 2021 04:26:33 +0000
(21:26 -0700)
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/dax.c
patch
|
blob
|
history
diff --git
a/fs/dax.c
b/fs/dax.c
index da41f9363568e06b012b486ef8063e269a9dcbb7..4d63040fd71f560f73fec39238db486adb66a49d 100644
(file)
--- a/
fs/dax.c
+++ b/
fs/dax.c
@@
-1005,7
+1005,7
@@
int dax_writeback_mapping_range(struct address_space *mapping,
}
EXPORT_SYMBOL_GPL(dax_writeback_mapping_range);
-static sector_t dax_iomap_sector(struct iomap *iomap, loff_t pos)
+static sector_t dax_iomap_sector(
const
struct iomap *iomap, loff_t pos)
{
return (iomap->addr + (pos & PAGE_MASK) - iomap->offset) >> 9;
}