Lines Matching refs:swap
3 Zswap is a lightweight compressed cache for swap pages. It takes pages that are
6 for potentially reduced swap I/O. This trade-off can also result in a
8 faster than reads from a swap device.
19 dramatically reduce their swap I/O pressure, avoiding heavy handed I/O
22 * Users with SSDs as swap devices can extend the life of the device by
25 Zswap evicts pages from compressed cache on an LRU basis to the backing swap
36 the backing swap device in the case that the compressed pool is full.
44 When a swap page is passed from frontswap to zswap, zswap maintains a mapping
45 of the swap entry, a combination of the swap type and swap offset, to the zbud
46 handle that references that compressed swap page. This mapping is achieved
47 with a red-black tree per swap type. The swap offset is the search key for the
50 During a page fault on a PTE that is a swap entry, frontswap calls the zswap
54 Once there are no PTEs referencing a swap page stored in zswap (i.e. the count
55 in the swap_map goes to 0) the swap code calls the zswap invalidate function,