diff options
author | Christoph Hellwig <hch@lst.de> | 2019-07-01 23:54:36 +0200 |
---|---|---|
committer | Andreas Gruenbacher <agruenba@redhat.com> | 2019-07-03 14:45:18 +0200 |
commit | 7770c93a46e6d2dc6e7c2172d83f2f5aca947cf7 (patch) | |
tree | 4dc6df5f476093f103642871a3e69825365a95df /fs/gfs2 | |
parent | 378b6cbfb82f2a8bb47ae3b1dac0419b57d84a36 (diff) | |
download | linux-7770c93a46e6d2dc6e7c2172d83f2f5aca947cf7.tar.bz2 |
gfs2: use iomap_bmap instead of generic_block_bmap
No need to indirect through get_blocks and buffer_heads when we can just use
the iomap version.
Signed-off-by: Christoph Hellwig <hch@lst.de>
Signed-off-by: Andreas Gruenbacher <agruenba@redhat.com>
Diffstat (limited to 'fs/gfs2')
-rw-r--r-- | fs/gfs2/aops.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/fs/gfs2/aops.c b/fs/gfs2/aops.c index 8f90d98a0aee..f42048cc5454 100644 --- a/fs/gfs2/aops.c +++ b/fs/gfs2/aops.c @@ -697,7 +697,7 @@ static sector_t gfs2_bmap(struct address_space *mapping, sector_t lblock) return 0; if (!gfs2_is_stuffed(ip)) - dblock = generic_block_bmap(mapping, lblock, gfs2_block_map); + dblock = iomap_bmap(mapping, lblock, &gfs2_iomap_ops); gfs2_glock_dq_uninit(&i_gh); |