Home
last modified time | relevance | path

Searched refs:b_maps (Results 1 – 4 of 4) sorted by relevance

/linux-6.1.9/fs/xfs/
Dxfs_buf_item.c241 offset += BBTOB(bp->b_maps[i].bm_len); in xfs_buf_item_size()
442 offset += BBTOB(bp->b_maps[i].bm_len); in xfs_buf_item_format()
824 chunks = DIV_ROUND_UP(BBTOB(bp->b_maps[i].bm_len), in xfs_buf_item_init()
833 BBTOB(bp->b_maps[i].bm_len)); in xfs_buf_item_init()
838 bip->bli_formats[i].blf_blkno = bp->b_maps[i].bm_bn; in xfs_buf_item_init()
839 bip->bli_formats[i].blf_len = bp->b_maps[i].bm_len; in xfs_buf_item_init()
955 end = start + BBTOB(bp->b_maps[i].bm_len) - 1; in xfs_buf_item_log()
959 start += BBTOB(bp->b_maps[i].bm_len); in xfs_buf_item_log()
976 start += BBTOB(bp->b_maps[i].bm_len); in xfs_buf_item_log()
Dxfs_buf.c184 ASSERT(bp->b_maps == NULL); in xfs_buf_get_maps()
188 bp->b_maps = &bp->__b_map; in xfs_buf_get_maps()
192 bp->b_maps = kmem_zalloc(map_count * sizeof(struct xfs_buf_map), in xfs_buf_get_maps()
194 if (!bp->b_maps) in xfs_buf_get_maps()
206 if (bp->b_maps != &bp->__b_map) { in xfs_buf_free_maps()
207 kmem_free(bp->b_maps); in xfs_buf_free_maps()
208 bp->b_maps = NULL; in xfs_buf_free_maps()
259 bp->b_maps[i].bm_bn = map[i].bm_bn; in _xfs_buf_alloc()
260 bp->b_maps[i].bm_len = map[i].bm_len; in _xfs_buf_alloc()
752 ASSERT(bp->b_maps[0].bm_bn != XFS_BUF_DADDR_NULL); in _xfs_buf_read()
[all …]
Dxfs_buf.h171 struct xfs_buf_map *b_maps; /* compound buffer map */ member
314 return bp->b_maps[0].bm_bn; in xfs_buf_daddr()
/linux-6.1.9/fs/xfs/libxfs/
Dxfs_ag.c378 bp->b_maps[0].bm_bn = blkno; in xfs_get_aghdr_buf()