Lines Matching refs:swap
10 Zswap is a lightweight compressed cache for swap pages. It takes pages that are
13 for potentially reduced swap I/O. This trade-off can also result in a
15 faster than reads from a swap device.
28 dramatically reduce their swap I/O pressure, avoiding heavy handed I/O
31 * Users with SSDs as swap devices can extend the life of the device by
34 Zswap evicts pages from compressed cache on an LRU basis to the backing swap
51 pages out of the compressed pool, a swapoff on the swap device(s) will
60 the backing swap device in the case that the compressed pool is full.
80 When a swap page is passed from frontswap to zswap, zswap maintains a mapping
81 of the swap entry, a combination of the swap type and swap offset, to the zpool
82 handle that references that compressed swap page. This mapping is achieved
83 with a red-black tree per swap type. The swap offset is the search key for the
86 During a page fault on a PTE that is a swap entry, frontswap calls the zswap
90 Once there are no PTEs referencing a swap page stored in zswap (i.e. the count
91 in the swap_map goes to 0) the swap code calls the zswap invalidate function,