Home
last modified time | relevance | path

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

/openbmc/linux/fs/xfs/libxfs/
H A Dxfs_ialloc_btree.c632 int nextbit; in xfs_inobt_irec_to_allocmask() local
656 nextbit = xfs_next_bit(&allocbitmap, 1, 0); in xfs_inobt_irec_to_allocmask()
657 while (nextbit != -1) { in xfs_inobt_irec_to_allocmask()
658 ASSERT(nextbit < (sizeof(rec->ir_holemask) * NBBY)); in xfs_inobt_irec_to_allocmask()
661 (nextbit * XFS_INODES_PER_HOLEMASK_BIT)); in xfs_inobt_irec_to_allocmask()
663 nextbit = xfs_next_bit(&allocbitmap, 1, nextbit + 1); in xfs_inobt_irec_to_allocmask()
679 int nextbit = 0; in xfs_inobt_rec_check_count() local
686 nextbit = xfs_next_bit((uint *) &allocbmap, wordsz, nextbit); in xfs_inobt_rec_check_count()
687 while (nextbit != -1) { in xfs_inobt_rec_check_count()
689 nextbit = xfs_next_bit((uint *) &allocbmap, wordsz, in xfs_inobt_rec_check_count()
[all …]
H A Dxfs_ialloc.c1847 int nextbit; in xfs_difree_inode_chunk() local
1872 nextbit = startidx + 1; in xfs_difree_inode_chunk()
1876 nextbit = find_next_zero_bit(holemask, XFS_INOBT_HOLEMASK_BITS, in xfs_difree_inode_chunk()
1877 nextbit); in xfs_difree_inode_chunk()
1882 if (nextbit != XFS_INOBT_HOLEMASK_BITS && in xfs_difree_inode_chunk()
1883 nextbit == endidx + 1) { in xfs_difree_inode_chunk()
1884 endidx = nextbit; in xfs_difree_inode_chunk()
1908 startidx = endidx = nextbit; in xfs_difree_inode_chunk()
1911 nextbit++; in xfs_difree_inode_chunk()