Home
last modified time | relevance | path

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

/linux-4.19.296/fs/xfs/libxfs/
Dxfs_ag.c218 struct xfs_agfl *agfl = XFS_BUF_TO_AGFL(bp); in xfs_agflblock_init() local
223 agfl->agfl_magicnum = cpu_to_be32(XFS_AGFL_MAGIC); in xfs_agflblock_init()
224 agfl->agfl_seqno = cpu_to_be32(id->agno); in xfs_agflblock_init()
225 uuid_copy(&agfl->agfl_uuid, &mp->m_sb.sb_meta_uuid); in xfs_agflblock_init()
Dxfs_alloc.c559 struct xfs_agfl *agfl = XFS_BUF_TO_AGFL(bp); in xfs_agfl_verify() local
571 if (!uuid_equal(&agfl->agfl_uuid, &mp->m_sb.sb_meta_uuid)) in xfs_agfl_verify()
573 if (be32_to_cpu(agfl->agfl_magicnum) != XFS_AGFL_MAGIC) in xfs_agfl_verify()
581 if (bp->b_pag && be32_to_cpu(agfl->agfl_seqno) != bp->b_pag->pag_agno) in xfs_agfl_verify()
585 if (be32_to_cpu(agfl->agfl_bno[i]) != NULLAGBLOCK && in xfs_agfl_verify()
586 be32_to_cpu(agfl->agfl_bno[i]) >= mp->m_sb.sb_agblocks) in xfs_agfl_verify()
/linux-4.19.296/fs/xfs/scrub/
Dagheader_repair.c592 struct xfs_agfl *agfl; in xrep_agfl_init_header() local
602 agfl = XFS_BUF_TO_AGFL(agfl_bp); in xrep_agfl_init_header()
603 memset(agfl, 0xFF, BBTOB(agfl_bp->b_length)); in xrep_agfl_init_header()
604 agfl->agfl_magicnum = cpu_to_be32(XFS_AGFL_MAGIC); in xrep_agfl_init_header()
605 agfl->agfl_seqno = cpu_to_be32(sc->sa.agno); in xrep_agfl_init_header()
606 uuid_copy(&agfl->agfl_uuid, &mp->m_sb.sb_meta_uuid); in xrep_agfl_init_header()
Dcommon.h122 struct xfs_buf **agfl);
Dcommon.c405 struct xfs_buf **agfl) in xchk_ag_read_headers() argument
418 error = xfs_alloc_read_agfl(mp, sc->tp, agno, agfl); in xchk_ag_read_headers()