Symbol: PCPU_BITMAP_BLOCK_BITS
mm/percpu.c
1016
PCPU_BITMAP_BLOCK_BITS, end);
mm/percpu.c
1019
e_off = (s_index == e_index) ? end : PCPU_BITMAP_BLOCK_BITS;
mm/percpu.c
1020
if (!start && e_off == PCPU_BITMAP_BLOCK_BITS)
mm/percpu.c
1027
if (end == PCPU_BITMAP_BLOCK_BITS)
mm/percpu.c
1037
block->contig_hint = PCPU_BITMAP_BLOCK_BITS;
mm/percpu.c
1038
block->left_free = PCPU_BITMAP_BLOCK_BITS;
mm/percpu.c
1039
block->right_free = PCPU_BITMAP_BLOCK_BITS;
mm/percpu.c
1052
if (((end - start) >= PCPU_BITMAP_BLOCK_BITS) || s_index != e_index)
mm/percpu.c
1231
end = min_t(int, start + alloc_bits + PCPU_BITMAP_BLOCK_BITS,
mm/percpu.c
1335
pcpu_init_md_block(md_block, PCPU_BITMAP_BLOCK_BITS);
mm/percpu.c
2144
if (block->contig_hint == PCPU_BITMAP_BLOCK_BITS &&
mm/percpu.c
289
(index * PCPU_BITMAP_BLOCK_BITS / BITS_PER_LONG);
mm/percpu.c
294
return off / PCPU_BITMAP_BLOCK_BITS;
mm/percpu.c
299
return off & (PCPU_BITMAP_BLOCK_BITS - 1);
mm/percpu.c
304
return index * PCPU_BITMAP_BLOCK_BITS + off;
mm/percpu.c
378
if (block->left_free == PCPU_BITMAP_BLOCK_BITS)
mm/percpu.c
393
*bits + block->contig_hint_start < PCPU_BITMAP_BLOCK_BITS) {
mm/percpu.c
402
*bit_off = (i + 1) * PCPU_BITMAP_BLOCK_BITS - block->right_free;
mm/percpu.c
435
if (block->left_free == PCPU_BITMAP_BLOCK_BITS)
mm/percpu.c
459
*bit_off = ALIGN(PCPU_BITMAP_BLOCK_BITS - block->right_free,
mm/percpu.c
461
*bits = PCPU_BITMAP_BLOCK_BITS - *bit_off;
mm/percpu.c
720
if (e_off > PCPU_BITMAP_BLOCK_BITS)
mm/percpu.c
794
for_each_clear_bitrange_from(start, end, alloc_map, PCPU_BITMAP_BLOCK_BITS)
mm/percpu.c
834
if (s_block->contig_hint == PCPU_BITMAP_BLOCK_BITS)
mm/percpu.c
845
PCPU_BITMAP_BLOCK_BITS,
mm/percpu.c
868
PCPU_BITMAP_BLOCK_BITS - e_off);
mm/percpu.c
877
if (e_block->contig_hint == PCPU_BITMAP_BLOCK_BITS)
mm/percpu.c
886
PCPU_BITMAP_BLOCK_BITS, e_off);
mm/percpu.c
888
if (e_off == PCPU_BITMAP_BLOCK_BITS) {
mm/percpu.c
902
PCPU_BITMAP_BLOCK_BITS - e_off);