Searched refs:nextbit (Results 1 – 2 of 2) sorted by relevance
/Linux-v5.10/fs/xfs/libxfs/ |
D | xfs_ialloc_btree.c | 561 int nextbit; in xfs_inobt_irec_to_allocmask() local 585 nextbit = xfs_next_bit(&allocbitmap, 1, 0); in xfs_inobt_irec_to_allocmask() 586 while (nextbit != -1) { in xfs_inobt_irec_to_allocmask() 587 ASSERT(nextbit < (sizeof(rec->ir_holemask) * NBBY)); in xfs_inobt_irec_to_allocmask() 590 (nextbit * XFS_INODES_PER_HOLEMASK_BIT)); in xfs_inobt_irec_to_allocmask() 592 nextbit = xfs_next_bit(&allocbitmap, 1, nextbit + 1); in xfs_inobt_irec_to_allocmask() 608 int nextbit = 0; in xfs_inobt_rec_check_count() local 615 nextbit = xfs_next_bit((uint *) &allocbmap, wordsz, nextbit); in xfs_inobt_rec_check_count() 616 while (nextbit != -1) { in xfs_inobt_rec_check_count() 618 nextbit = xfs_next_bit((uint *) &allocbmap, wordsz, in xfs_inobt_rec_check_count() [all …]
|
D | xfs_ialloc.c | 1864 int nextbit; in xfs_difree_inode_chunk() local 1889 nextbit = startidx + 1; in xfs_difree_inode_chunk() 1891 nextbit = find_next_zero_bit(holemask, XFS_INOBT_HOLEMASK_BITS, in xfs_difree_inode_chunk() 1892 nextbit); in xfs_difree_inode_chunk() 1897 if (nextbit != XFS_INOBT_HOLEMASK_BITS && in xfs_difree_inode_chunk() 1898 nextbit == endidx + 1) { in xfs_difree_inode_chunk() 1899 endidx = nextbit; in xfs_difree_inode_chunk() 1920 startidx = endidx = nextbit; in xfs_difree_inode_chunk() 1923 nextbit++; in xfs_difree_inode_chunk()
|