Searched refs:next_agno (Results 1 – 1 of 1) sorted by relevance
| /Linux-v5.15/fs/xfs/libxfs/ |
| D | xfs_ag.h | 127 #define for_each_perag_range(mp, next_agno, end_agno, pag) \ argument 128 for ((pag) = xfs_perag_get((mp), (next_agno)); \ 129 (pag) != NULL && (next_agno) <= (end_agno); \ 130 (next_agno) = (pag)->pag_agno + 1, \ 132 (pag) = xfs_perag_get((mp), (next_agno))) 134 #define for_each_perag_from(mp, next_agno, pag) \ argument 135 for_each_perag_range((mp), (next_agno), (mp)->m_sb.sb_agcount, (pag))
|