Home
last modified time | relevance | path

Searched refs:nextbit (Results 1 – 2 of 2) sorted by relevance

/linux-6.1.9/fs/xfs/libxfs/
Dxfs_ialloc_btree.c616 int nextbit; in xfs_inobt_irec_to_allocmask() local
640 nextbit = xfs_next_bit(&allocbitmap, 1, 0); in xfs_inobt_irec_to_allocmask()
641 while (nextbit != -1) { in xfs_inobt_irec_to_allocmask()
642 ASSERT(nextbit < (sizeof(rec->ir_holemask) * NBBY)); in xfs_inobt_irec_to_allocmask()
645 (nextbit * XFS_INODES_PER_HOLEMASK_BIT)); in xfs_inobt_irec_to_allocmask()
647 nextbit = xfs_next_bit(&allocbitmap, 1, nextbit + 1); in xfs_inobt_irec_to_allocmask()
663 int nextbit = 0; in xfs_inobt_rec_check_count() local
670 nextbit = xfs_next_bit((uint *) &allocbmap, wordsz, nextbit); in xfs_inobt_rec_check_count()
671 while (nextbit != -1) { in xfs_inobt_rec_check_count()
673 nextbit = xfs_next_bit((uint *) &allocbmap, wordsz, in xfs_inobt_rec_check_count()
[all …]
Dxfs_ialloc.c1823 int nextbit; in xfs_difree_inode_chunk() local
1848 nextbit = startidx + 1; in xfs_difree_inode_chunk()
1850 nextbit = find_next_zero_bit(holemask, XFS_INOBT_HOLEMASK_BITS, in xfs_difree_inode_chunk()
1851 nextbit); in xfs_difree_inode_chunk()
1856 if (nextbit != XFS_INOBT_HOLEMASK_BITS && in xfs_difree_inode_chunk()
1857 nextbit == endidx + 1) { in xfs_difree_inode_chunk()
1858 endidx = nextbit; in xfs_difree_inode_chunk()
1879 startidx = endidx = nextbit; in xfs_difree_inode_chunk()
1882 nextbit++; in xfs_difree_inode_chunk()