Home
last modified time | relevance | path

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

/openbmc/linux/mm/
H A Dpercpu.c294 return off / PCPU_BITMAP_BLOCK_BITS; in pcpu_off_to_block_index()
299 return off & (PCPU_BITMAP_BLOCK_BITS - 1); in pcpu_off_to_block_off()
461 *bits = PCPU_BITMAP_BLOCK_BITS - *bit_off; in pcpu_next_fit_region()
720 if (e_off > PCPU_BITMAP_BLOCK_BITS) in pcpu_block_update_scan()
845 PCPU_BITMAP_BLOCK_BITS, in pcpu_block_update_hint_alloc()
868 PCPU_BITMAP_BLOCK_BITS - e_off); in pcpu_block_update_hint_alloc()
886 PCPU_BITMAP_BLOCK_BITS, e_off); in pcpu_block_update_hint_alloc()
888 if (e_off == PCPU_BITMAP_BLOCK_BITS) { in pcpu_block_update_hint_alloc()
902 PCPU_BITMAP_BLOCK_BITS - e_off); in pcpu_block_update_hint_alloc()
1016 PCPU_BITMAP_BLOCK_BITS, end); in pcpu_block_update_hint_free()
[all …]
/openbmc/linux/include/linux/
H A Dpercpu.h35 #define PCPU_BITMAP_BLOCK_BITS (PCPU_BITMAP_BLOCK_SIZE >> \ macro