Home
last modified time | relevance | path

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

/kernel/linux/linux-5.10/mm/
H A Dpage_alloc.c521 unsigned long bitidx, word_bitidx; in __get_pfnblock_flags_mask() local
526 word_bitidx = bitidx / BITS_PER_LONG; in __get_pfnblock_flags_mask()
529 word = bitmap[word_bitidx]; in __get_pfnblock_flags_mask()
556 unsigned long bitidx, word_bitidx; in set_pfnblock_flags_mask() local
564 word_bitidx = bitidx / BITS_PER_LONG; in set_pfnblock_flags_mask()
572 word = READ_ONCE(bitmap[word_bitidx]); in set_pfnblock_flags_mask()
574 old_word = cmpxchg(&bitmap[word_bitidx], word, (word & ~mask) | flags); in set_pfnblock_flags_mask()
/kernel/linux/linux-6.6/mm/
H A Dpage_alloc.c382 unsigned long bitidx, word_bitidx; in get_pfnblock_flags_mask() local
387 word_bitidx = bitidx / BITS_PER_LONG; in get_pfnblock_flags_mask()
394 word = READ_ONCE(bitmap[word_bitidx]); in get_pfnblock_flags_mask()
416 unsigned long bitidx, word_bitidx; in set_pfnblock_flags_mask() local
424 word_bitidx = bitidx / BITS_PER_LONG; in set_pfnblock_flags_mask()
432 word = READ_ONCE(bitmap[word_bitidx]); in set_pfnblock_flags_mask()
434 } while (!try_cmpxchg(&bitmap[word_bitidx], &word, (word & ~mask) | flags)); in set_pfnblock_flags_mask()

Completed in 22 milliseconds