Home
last modified time | relevance | path

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

/Linux-v5.4/mm/
Dpage_alloc.c485 unsigned long bitidx, word_bitidx; in __get_pfnblock_flags_mask() local
490 word_bitidx = bitidx / BITS_PER_LONG; in __get_pfnblock_flags_mask()
493 word = bitmap[word_bitidx]; in __get_pfnblock_flags_mask()
524 unsigned long bitidx, word_bitidx; in set_pfnblock_flags_mask() local
532 word_bitidx = bitidx / BITS_PER_LONG; in set_pfnblock_flags_mask()
541 word = READ_ONCE(bitmap[word_bitidx]); in set_pfnblock_flags_mask()
543 old_word = cmpxchg(&bitmap[word_bitidx], word, (word & ~mask) | flags); in set_pfnblock_flags_mask()