Home
last modified time | relevance | path

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

/Linux-v5.4/mm/
Dpercpu.c307 (index * PCPU_BITMAP_BLOCK_BITS / BITS_PER_LONG); in pcpu_index_alloc_map()
312 return off / PCPU_BITMAP_BLOCK_BITS; in pcpu_off_to_block_index()
317 return off & (PCPU_BITMAP_BLOCK_BITS - 1); in pcpu_off_to_block_off()
322 return index * PCPU_BITMAP_BLOCK_BITS + off; in pcpu_block_off_to_off()
377 if (block->left_free == PCPU_BITMAP_BLOCK_BITS) in pcpu_next_md_free_region()
392 *bits + block->contig_hint_start < PCPU_BITMAP_BLOCK_BITS) { in pcpu_next_md_free_region()
401 *bit_off = (i + 1) * PCPU_BITMAP_BLOCK_BITS - block->right_free; in pcpu_next_md_free_region()
434 if (block->left_free == PCPU_BITMAP_BLOCK_BITS) in pcpu_next_fit_region()
458 *bit_off = ALIGN(PCPU_BITMAP_BLOCK_BITS - block->right_free, in pcpu_next_fit_region()
460 *bits = PCPU_BITMAP_BLOCK_BITS - *bit_off; in pcpu_next_fit_region()
[all …]
/Linux-v5.4/include/linux/
Dpercpu.h35 #define PCPU_BITMAP_BLOCK_BITS (PCPU_BITMAP_BLOCK_SIZE >> \ macro