Lines Matching defs:holemask
142 "start inode 0x%x, count 0x%x, free 0x%x freemask 0x%llx, holemask 0x%x",
154 uint16_t holemask,
160 cur->bc_rec.i.ir_holemask = holemask;
496 * Merge the holemask and free mask. For both fields, 0 bits refer to
844 "invalid sparse inode record: ino 0x%llx holemask 0x%x count %u",
1102 * is sparsely allocated, we convert the record holemask to inode granularity
1867 DECLARE_BITMAP(holemask, XFS_INOBT_HOLEMASK_BITS);
1877 /* holemask is only 16-bits (fits in an unsigned long) */
1878 ASSERT(sizeof(rec->ir_holemask) <= sizeof(holemask[0]));
1879 holemask[0] = rec->ir_holemask;
1883 * holemask and convert the start/end index of each range to an extent.
1887 startidx = endidx = find_first_zero_bit(holemask,
1891 nextbit = find_next_zero_bit(holemask, XFS_INOBT_HOLEMASK_BITS,
2698 uint16_t holemask;
2711 holemask = irec.ir_holemask;
2712 for (i = 0; i < XFS_INOBT_HOLEMASK_BITS; holemask >>= 1,
2714 if (holemask & 1)