gfs2: use iomap_bmap instead of generic_block_bmap
authorChristoph Hellwig <hch@lst.de>
Mon, 1 Jul 2019 21:54:36 +0000 (23:54 +0200)
committerAndreas Gruenbacher <agruenba@redhat.com>
Wed, 3 Jul 2019 12:45:18 +0000 (14:45 +0200)
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>
fs/gfs2/aops.c

index 8f90d98a0aeef2d29fe2c9b2d8ef97e4f2cbf9e4..f42048cc54549e62fe0d373170df3fac9e46e4ff 100644 (file)
@@ -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);