Home
last modified time | relevance | path

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

/linux-5.19.10/mm/
Dswapfile.c1199 } else if ((count & ~COUNT_CONTINUED) <= SWAP_MAP_MAX) { in __swap_entry_free_locked()
1200 if (count == COUNT_CONTINUED) { in __swap_entry_free_locked()
1202 count = SWAP_MAP_MAX | COUNT_CONTINUED; in __swap_entry_free_locked()
1520 if (!(count & COUNT_CONTINUED)) in swp_swapcount()
1523 count &= ~COUNT_CONTINUED; in swp_swapcount()
1536 count += (tmp_count & ~COUNT_CONTINUED) * n; in swp_swapcount()
1538 } while (tmp_count & COUNT_CONTINUED); in swp_swapcount()
3323 if ((count & ~COUNT_CONTINUED) < SWAP_MAP_MAX) in __swap_duplicate()
3325 else if ((count & ~COUNT_CONTINUED) > SWAP_MAP_MAX) in __swap_duplicate()
3328 count = COUNT_CONTINUED; in __swap_duplicate()
[all …]
/linux-5.19.10/include/linux/
Dswap.h219 #define COUNT_CONTINUED 0x80 /* Flag swap_map continuation for full count */ macro