Home
last modified time | relevance | path

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

/kernel/linux/linux-5.10/fs/xfs/libxfs/
Dxfs_btree.c69 if (!uuid_equal(&block->bb_u.l.bb_uuid, &mp->m_sb.sb_meta_uuid)) in __xfs_btree_check_lblock()
71 if (block->bb_u.l.bb_blkno != in __xfs_btree_check_lblock()
74 if (block->bb_u.l.bb_pad != cpu_to_be32(0)) in __xfs_btree_check_lblock()
85 if (block->bb_u.l.bb_leftsib != cpu_to_be64(NULLFSBLOCK) && in __xfs_btree_check_lblock()
86 !xfs_btree_check_lptr(cur, be64_to_cpu(block->bb_u.l.bb_leftsib), in __xfs_btree_check_lblock()
89 if (block->bb_u.l.bb_rightsib != cpu_to_be64(NULLFSBLOCK) && in __xfs_btree_check_lblock()
90 !xfs_btree_check_lptr(cur, be64_to_cpu(block->bb_u.l.bb_rightsib), in __xfs_btree_check_lblock()
134 if (!uuid_equal(&block->bb_u.s.bb_uuid, &mp->m_sb.sb_meta_uuid)) in __xfs_btree_check_sblock()
136 if (block->bb_u.s.bb_blkno != in __xfs_btree_check_sblock()
148 if (block->bb_u.s.bb_leftsib != cpu_to_be32(NULLAGBLOCK) && in __xfs_btree_check_sblock()
[all …]
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_format.h1869 } bb_u; /* rest */ member
1874 (offsetof(struct xfs_btree_block, bb_u) + \
1878 (offsetof(struct xfs_btree_block, bb_u) + \
1883 (offsetof(struct xfs_btree_block, bb_u) + \
1886 (offsetof(struct xfs_btree_block, bb_u) + \
1890 offsetof(struct xfs_btree_block, bb_u.s.bb_crc)
1892 offsetof(struct xfs_btree_block, bb_u.l.bb_crc)
Dxfs_btree.h529 return block->bb_u.l.bb_rightsib == cpu_to_be64(NULLFSBLOCK); in xfs_btree_islastblock()
530 return block->bb_u.s.bb_rightsib == cpu_to_be32(NULLAGBLOCK); in xfs_btree_islastblock()
Dxfs_bmap.c413 nextbno = be64_to_cpu(block->bb_u.l.bb_rightsib); in xfs_bmap_check_leaf_extents()
/kernel/linux/linux-5.10/fs/xfs/
Dxfs_buf_item_recover.c728 lsn = be64_to_cpu(btb->bb_u.s.bb_lsn); in xlog_recover_get_buf_lsn()
729 uuid = &btb->bb_u.s.bb_uuid; in xlog_recover_get_buf_lsn()
736 lsn = be64_to_cpu(btb->bb_u.l.bb_lsn); in xlog_recover_get_buf_lsn()
737 uuid = &btb->bb_u.l.bb_uuid; in xlog_recover_get_buf_lsn()
/kernel/linux/linux-5.10/fs/xfs/scrub/
Drepair.c753 if (!uuid_equal(&btblock->bb_u.s.bb_uuid, in xrep_findroot_block()
811 if (btblock->bb_u.s.bb_leftsib == cpu_to_be32(NULLAGBLOCK) && in xrep_findroot_block()
812 btblock->bb_u.s.bb_rightsib == cpu_to_be32(NULLAGBLOCK)) in xrep_findroot_block()
Dbmap.c412 owner = be64_to_cpu(block->bb_u.l.bb_owner); in xchk_bmapbt_rec()