Home
last modified time | relevance | path

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

/linux-6.1.9/mm/
Dpercpu.c293 (index * PCPU_BITMAP_BLOCK_BITS / BITS_PER_LONG); in pcpu_index_alloc_map()
298 return off / PCPU_BITMAP_BLOCK_BITS; in pcpu_off_to_block_index()
303 return off & (PCPU_BITMAP_BLOCK_BITS - 1); in pcpu_off_to_block_off()
308 return index * PCPU_BITMAP_BLOCK_BITS + off; in pcpu_block_off_to_off()
382 if (block->left_free == PCPU_BITMAP_BLOCK_BITS) in pcpu_next_md_free_region()
397 *bits + block->contig_hint_start < PCPU_BITMAP_BLOCK_BITS) { in pcpu_next_md_free_region()
406 *bit_off = (i + 1) * PCPU_BITMAP_BLOCK_BITS - block->right_free; in pcpu_next_md_free_region()
439 if (block->left_free == PCPU_BITMAP_BLOCK_BITS) in pcpu_next_fit_region()
463 *bit_off = ALIGN(PCPU_BITMAP_BLOCK_BITS - block->right_free, in pcpu_next_fit_region()
465 *bits = PCPU_BITMAP_BLOCK_BITS - *bit_off; in pcpu_next_fit_region()
[all …]
/linux-6.1.9/include/linux/
Dpercpu.h34 #define PCPU_BITMAP_BLOCK_BITS (PCPU_BITMAP_BLOCK_SIZE >> \ macro