Home
last modified time | relevance | path

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

/Linux-v4.19/fs/xfs/
Dxfs_buf.c162 ASSERT(bp->b_maps == NULL); in xfs_buf_get_maps()
166 bp->b_maps = &bp->__b_map; in xfs_buf_get_maps()
170 bp->b_maps = kmem_zalloc(map_count * sizeof(struct xfs_buf_map), in xfs_buf_get_maps()
172 if (!bp->b_maps) in xfs_buf_get_maps()
184 if (bp->b_maps != &bp->__b_map) { in xfs_buf_free_maps()
185 kmem_free(bp->b_maps); in xfs_buf_free_maps()
186 bp->b_maps = NULL; in xfs_buf_free_maps()
236 bp->b_maps[i].bm_bn = map[i].bm_bn; in _xfs_buf_alloc()
237 bp->b_maps[i].bm_len = map[i].bm_len; in _xfs_buf_alloc()
367 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-v4.19/fs/xfs/libxfs/
Dxfs_ag.c39 bp->b_maps[0].bm_bn = blkno; in xfs_get_aghdr_buf()