Home
last modified time | relevance | path

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

/Linux-v5.4/mm/
Dswapfile.c1198 } else if ((count & ~COUNT_CONTINUED) <= SWAP_MAP_MAX) { in __swap_entry_free_locked()
1199 if (count == COUNT_CONTINUED) { in __swap_entry_free_locked()
1201 count = SWAP_MAP_MAX | COUNT_CONTINUED; in __swap_entry_free_locked()
1514 if (!(count & COUNT_CONTINUED)) in swp_swapcount()
1517 count &= ~COUNT_CONTINUED; in swp_swapcount()
1530 count += (tmp_count & ~COUNT_CONTINUED) * n; in swp_swapcount()
1532 } while (tmp_count & COUNT_CONTINUED); in swp_swapcount()
3421 if ((count & ~COUNT_CONTINUED) < SWAP_MAP_MAX) in __swap_duplicate()
3423 else if ((count & ~COUNT_CONTINUED) > SWAP_MAP_MAX) in __swap_duplicate()
3426 count = COUNT_CONTINUED; in __swap_duplicate()
[all …]
/Linux-v5.4/include/linux/
Dswap.h190 #define COUNT_CONTINUED 0x80 /* See swap_map continuation for full count */ macro