Home
last modified time | relevance | path

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

/linux-4.19.296/fs/xfs/
Dxfs_buf.c188 ASSERT(bp->b_maps == NULL); in xfs_buf_get_maps()
192 bp->b_maps = &bp->__b_map; in xfs_buf_get_maps()
196 bp->b_maps = kmem_zalloc(map_count * sizeof(struct xfs_buf_map), in xfs_buf_get_maps()
198 if (!bp->b_maps) in xfs_buf_get_maps()
210 if (bp->b_maps != &bp->__b_map) { in xfs_buf_free_maps()
211 kmem_free(bp->b_maps); in xfs_buf_free_maps()
212 bp->b_maps = NULL; in xfs_buf_free_maps()
262 bp->b_maps[i].bm_bn = map[i].bm_bn; in _xfs_buf_alloc()
263 bp->b_maps[i].bm_len = map[i].bm_len; in _xfs_buf_alloc()
393 start = BBTOB(bp->b_maps[0].bm_bn) >> PAGE_SHIFT; in xfs_buf_allocate_memory()
[all …]
Dxfs_buf_item.c343 offset += BBTOB(bp->b_maps[i].bm_len); in xfs_buf_item_format()
774 chunks = DIV_ROUND_UP(BBTOB(bp->b_maps[i].bm_len), in xfs_buf_item_init()
779 bip->bli_formats[i].blf_blkno = bp->b_maps[i].bm_bn; in xfs_buf_item_init()
780 bip->bli_formats[i].blf_len = bp->b_maps[i].bm_len; in xfs_buf_item_init()
893 end = start + BBTOB(bp->b_maps[i].bm_len) - 1; in xfs_buf_item_log()
897 start += BBTOB(bp->b_maps[i].bm_len); in xfs_buf_item_log()
914 start += BBTOB(bp->b_maps[i].bm_len); in xfs_buf_item_log()
Dxfs_buf.h171 struct xfs_buf_map *b_maps; /* compound buffer map */ member
334 #define XFS_BUF_ADDR(bp) ((bp)->b_maps[0].bm_bn)
335 #define XFS_BUF_SET_ADDR(bp, bno) ((bp)->b_maps[0].bm_bn = (xfs_daddr_t)(bno))
/linux-4.19.296/fs/xfs/libxfs/
Dxfs_ag.c39 bp->b_maps[0].bm_bn = blkno; in xfs_get_aghdr_buf()