Home
last modified time | relevance | path

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

/openbmc/linux/fs/xfs/
H A Dxfs_buf_item.c242 offset += BBTOB(bp->b_maps[i].bm_len); in xfs_buf_item_size()
443 offset += BBTOB(bp->b_maps[i].bm_len); in xfs_buf_item_format()
898 chunks = DIV_ROUND_UP(BBTOB(bp->b_maps[i].bm_len), in xfs_buf_item_init()
907 BBTOB(bp->b_maps[i].bm_len)); in xfs_buf_item_init()
912 bip->bli_formats[i].blf_blkno = bp->b_maps[i].bm_bn; in xfs_buf_item_init()
913 bip->bli_formats[i].blf_len = bp->b_maps[i].bm_len; in xfs_buf_item_init()
1029 end = start + BBTOB(bp->b_maps[i].bm_len) - 1; in xfs_buf_item_log()
1033 start += BBTOB(bp->b_maps[i].bm_len); in xfs_buf_item_log()
1050 start += BBTOB(bp->b_maps[i].bm_len); in xfs_buf_item_log()
H A 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()
758 ASSERT(bp->b_maps[0].bm_bn != XFS_BUF_DADDR_NULL); in _xfs_buf_read()
[all …]
H A Dxfs_buf.h184 struct xfs_buf_map *b_maps; /* compound buffer map */ member
328 return bp->b_maps[0].bm_bn; in xfs_buf_daddr()
/openbmc/openbmc/meta-openembedded/meta-filesystems/recipes-utils/xfsprogs/files/
H A D0005-Replace-off64_t-stat64-with-off_t-stat.patch622 - off64_t offset = LIBXFS_BBTOOFF64(bp->b_maps[i].bm_bn);
623 + off_t offset = LIBXFS_BBTOOFF64(bp->b_maps[i].bm_bn);
624 int len = BBTOB(bp->b_maps[i].bm_len);
640 - off64_t offset = LIBXFS_BBTOOFF64(bp->b_maps[i].bm_bn);
641 + off_t offset = LIBXFS_BBTOOFF64(bp->b_maps[i].bm_bn);
642 int len = BBTOB(bp->b_maps[i].bm_len);
/openbmc/linux/fs/xfs/libxfs/
H A Dxfs_ag.c479 bp->b_maps[0].bm_bn = blkno; in xfs_get_aghdr_buf()