Lines Matching refs:iomap
392 struct iomap iomap = { }; in gfs2_allocate_page_backing() local
394 if (gfs2_iomap_alloc(page->mapping->host, pos, length, &iomap)) in gfs2_allocate_page_backing()
397 if (length < iomap.length) in gfs2_allocate_page_backing()
398 iomap.length = length; in gfs2_allocate_page_backing()
399 length -= iomap.length; in gfs2_allocate_page_backing()
400 pos += iomap.length; in gfs2_allocate_page_backing()
1189 struct iomap iomap = { }; in fallocate_chunk() local
1191 error = gfs2_iomap_alloc(inode, offset, end - offset, &iomap); in fallocate_chunk()
1194 offset = iomap.offset + iomap.length; in fallocate_chunk()
1195 if (!(iomap.flags & IOMAP_F_NEW)) in fallocate_chunk()
1197 error = sb_issue_zeroout(sb, iomap.addr >> inode->i_blkbits, in fallocate_chunk()
1198 iomap.length >> inode->i_blkbits, in fallocate_chunk()