Home
last modified time | relevance | path

Searched refs:bb_u (Results 1 – 8 of 8) sorted by relevance

/Linux-v5.15/fs/xfs/libxfs/
Dxfs_btree.c70 if (!uuid_equal(&block->bb_u.l.bb_uuid, &mp->m_sb.sb_meta_uuid)) in __xfs_btree_check_lblock()
72 if (block->bb_u.l.bb_blkno != in __xfs_btree_check_lblock()
75 if (block->bb_u.l.bb_pad != cpu_to_be32(0)) in __xfs_btree_check_lblock()
86 if (block->bb_u.l.bb_leftsib != cpu_to_be64(NULLFSBLOCK) && in __xfs_btree_check_lblock()
87 !xfs_btree_check_lptr(cur, be64_to_cpu(block->bb_u.l.bb_leftsib), in __xfs_btree_check_lblock()
90 if (block->bb_u.l.bb_rightsib != cpu_to_be64(NULLFSBLOCK) && in __xfs_btree_check_lblock()
91 !xfs_btree_check_lptr(cur, be64_to_cpu(block->bb_u.l.bb_rightsib), in __xfs_btree_check_lblock()
135 if (!uuid_equal(&block->bb_u.s.bb_uuid, &mp->m_sb.sb_meta_uuid)) in __xfs_btree_check_sblock()
137 if (block->bb_u.s.bb_blkno != in __xfs_btree_check_sblock()
149 if (block->bb_u.s.bb_leftsib != cpu_to_be32(NULLAGBLOCK) && in __xfs_btree_check_sblock()
[all …]
Dxfs_format.h1693 } bb_u; /* rest */ member
1698 (offsetof(struct xfs_btree_block, bb_u) + \
1702 (offsetof(struct xfs_btree_block, bb_u) + \
1707 (offsetof(struct xfs_btree_block, bb_u) + \
1710 (offsetof(struct xfs_btree_block, bb_u) + \
1714 offsetof(struct xfs_btree_block, bb_u.s.bb_crc)
1716 offsetof(struct xfs_btree_block, bb_u.l.bb_crc)
Dxfs_bmap_btree.c141 ASSERT(uuid_equal(&rblock->bb_u.l.bb_uuid, in xfs_bmbt_to_bmdr()
143 ASSERT(rblock->bb_u.l.bb_blkno == in xfs_bmbt_to_bmdr()
147 ASSERT(rblock->bb_u.l.bb_leftsib == cpu_to_be64(NULLFSBLOCK)); in xfs_bmbt_to_bmdr()
148 ASSERT(rblock->bb_u.l.bb_rightsib == cpu_to_be64(NULLFSBLOCK)); in xfs_bmbt_to_bmdr()
Dxfs_btree.h540 return block->bb_u.l.bb_rightsib == cpu_to_be64(NULLFSBLOCK); in xfs_btree_islastblock()
541 return block->bb_u.s.bb_rightsib == cpu_to_be32(NULLAGBLOCK); in xfs_btree_islastblock()
Dxfs_bmap.c416 nextbno = be64_to_cpu(block->bb_u.l.bb_rightsib); in xfs_bmap_check_leaf_extents()
/Linux-v5.15/fs/xfs/
Dxfs_buf_item_recover.c738 lsn = be64_to_cpu(btb->bb_u.s.bb_lsn); in xlog_recover_get_buf_lsn()
739 uuid = &btb->bb_u.s.bb_uuid; in xlog_recover_get_buf_lsn()
746 lsn = be64_to_cpu(btb->bb_u.l.bb_lsn); in xlog_recover_get_buf_lsn()
747 uuid = &btb->bb_u.l.bb_uuid; in xlog_recover_get_buf_lsn()
/Linux-v5.15/fs/xfs/scrub/
Drepair.c758 if (!uuid_equal(&btblock->bb_u.s.bb_uuid, in xrep_findroot_block()
816 if (btblock->bb_u.s.bb_leftsib == cpu_to_be32(NULLAGBLOCK) && in xrep_findroot_block()
817 btblock->bb_u.s.bb_rightsib == cpu_to_be32(NULLAGBLOCK)) in xrep_findroot_block()
Dbmap.c408 owner = be64_to_cpu(block->bb_u.l.bb_owner); in xchk_bmapbt_rec()