Home
last modified time | relevance | path

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

/kernel/linux/linux-5.10/mm/
Dswapfile.c1253 } else if ((count & ~COUNT_CONTINUED) <= SWAP_MAP_MAX) { in __swap_entry_free_locked()
1254 if (count == COUNT_CONTINUED) { in __swap_entry_free_locked()
1256 count = SWAP_MAP_MAX | COUNT_CONTINUED; in __swap_entry_free_locked()
1573 if (!(count & COUNT_CONTINUED)) in swp_swapcount()
1576 count &= ~COUNT_CONTINUED; in swp_swapcount()
1589 count += (tmp_count & ~COUNT_CONTINUED) * n; in swp_swapcount()
1591 } while (tmp_count & COUNT_CONTINUED); in swp_swapcount()
3521 if ((count & ~COUNT_CONTINUED) < SWAP_MAP_MAX) in __swap_duplicate()
3523 else if ((count & ~COUNT_CONTINUED) > SWAP_MAP_MAX) in __swap_duplicate()
3526 count = COUNT_CONTINUED; in __swap_duplicate()
[all …]
/kernel/linux/linux-5.10/include/linux/
Dswap.h188 #define COUNT_CONTINUED 0x80 /* Flag swap_map continuation for full count */ macro