Home
last modified time | relevance | path

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

/linux-6.1.9/mm/
Dswapfile.c1203 } else if ((count & ~COUNT_CONTINUED) <= SWAP_MAP_MAX) { in __swap_entry_free_locked()
1204 if (count == COUNT_CONTINUED) { in __swap_entry_free_locked()
1206 count = SWAP_MAP_MAX | COUNT_CONTINUED; in __swap_entry_free_locked()
1505 if (!(count & COUNT_CONTINUED)) in swp_swapcount()
1508 count &= ~COUNT_CONTINUED; in swp_swapcount()
1521 count += (tmp_count & ~COUNT_CONTINUED) * n; in swp_swapcount()
1523 } while (tmp_count & COUNT_CONTINUED); in swp_swapcount()
3317 if ((count & ~COUNT_CONTINUED) < SWAP_MAP_MAX) in __swap_duplicate()
3319 else if ((count & ~COUNT_CONTINUED) > SWAP_MAP_MAX) in __swap_duplicate()
3322 count = COUNT_CONTINUED; in __swap_duplicate()
[all …]
/linux-6.1.9/include/linux/
Dswap.h223 #define COUNT_CONTINUED 0x80 /* Flag swap_map continuation for full count */ macro