Home
last modified time | relevance | path

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

/linux-6.6.21/mm/
Dswapfile.c1202 } else if ((count & ~COUNT_CONTINUED) <= SWAP_MAP_MAX) { in __swap_entry_free_locked()
1203 if (count == COUNT_CONTINUED) { in __swap_entry_free_locked()
1205 count = SWAP_MAP_MAX | COUNT_CONTINUED; in __swap_entry_free_locked()
1486 if (!(count & COUNT_CONTINUED)) in swp_swapcount()
1489 count &= ~COUNT_CONTINUED; in swp_swapcount()
1502 count += (tmp_count & ~COUNT_CONTINUED) * n; in swp_swapcount()
1504 } while (tmp_count & COUNT_CONTINUED); in swp_swapcount()
3309 if ((count & ~COUNT_CONTINUED) < SWAP_MAP_MAX) in __swap_duplicate()
3311 else if ((count & ~COUNT_CONTINUED) > SWAP_MAP_MAX) in __swap_duplicate()
3314 count = COUNT_CONTINUED; in __swap_duplicate()
[all …]
/linux-6.6.21/include/linux/
Dswap.h230 #define COUNT_CONTINUED 0x80 /* Flag swap_map continuation for full count */ macro