Searched refs:COUNT_CONTINUED (Results 1 – 2 of 2) sorted by relevance
781 } else if ((count & ~COUNT_CONTINUED) <= SWAP_MAP_MAX) { in swap_entry_free()782 if (count == COUNT_CONTINUED) { in swap_entry_free()784 count = SWAP_MAP_MAX | COUNT_CONTINUED; in swap_entry_free()2640 if ((count & ~COUNT_CONTINUED) < SWAP_MAP_MAX) in __swap_duplicate()2642 else if ((count & ~COUNT_CONTINUED) > SWAP_MAP_MAX) in __swap_duplicate()2645 count = COUNT_CONTINUED; in __swap_duplicate()2769 if ((count & ~COUNT_CONTINUED) != SWAP_MAP_MAX) { in add_swap_count_continuation()2796 BUG_ON(count & COUNT_CONTINUED); in add_swap_count_continuation()2809 if (!(count & COUNT_CONTINUED)) in add_swap_count_continuation()2820 if ((count & ~COUNT_CONTINUED) != SWAP_CONT_MAX) in add_swap_count_continuation()[all …]
173 #define COUNT_CONTINUED 0x80 /* See swap_map continuation for full count */ macro