1
0

zswap.rst 6.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135
  1. .. _zswap:
  2. =====
  3. zswap
  4. =====
  5. Overview
  6. ========
  7. Zswap is a lightweight compressed cache for swap pages. It takes pages that are
  8. in the process of being swapped out and attempts to compress them into a
  9. dynamically allocated RAM-based memory pool. zswap basically trades CPU cycles
  10. for potentially reduced swap I/O.  This trade-off can also result in a
  11. significant performance improvement if reads from the compressed cache are
  12. faster than reads from a swap device.
  13. .. note::
  14. Zswap is a new feature as of v3.11 and interacts heavily with memory
  15. reclaim. This interaction has not been fully explored on the large set of
  16. potential configurations and workloads that exist. For this reason, zswap
  17. is a work in progress and should be considered experimental.
  18. Some potential benefits:
  19. * Desktop/laptop users with limited RAM capacities can mitigate the
  20. performance impact of swapping.
  21. * Overcommitted guests that share a common I/O resource can
  22. dramatically reduce their swap I/O pressure, avoiding heavy handed I/O
  23. throttling by the hypervisor. This allows more work to get done with less
  24. impact to the guest workload and guests sharing the I/O subsystem
  25. * Users with SSDs as swap devices can extend the life of the device by
  26. drastically reducing life-shortening writes.
  27. Zswap evicts pages from compressed cache on an LRU basis to the backing swap
  28. device when the compressed pool reaches its size limit. This requirement had
  29. been identified in prior community discussions.
  30. Zswap is disabled by default but can be enabled at boot time by setting
  31. the ``enabled`` attribute to 1 at boot time. ie: ``zswap.enabled=1``. Zswap
  32. can also be enabled and disabled at runtime using the sysfs interface.
  33. An example command to enable zswap at runtime, assuming sysfs is mounted
  34. at ``/sys``, is::
  35. echo 1 > /sys/module/zswap/parameters/enabled
  36. When zswap is disabled at runtime it will stop storing pages that are
  37. being swapped out. However, it will _not_ immediately write out or fault
  38. back into memory all of the pages stored in the compressed pool. The
  39. pages stored in zswap will remain in the compressed pool until they are
  40. either invalidated or faulted back into memory. In order to force all
  41. pages out of the compressed pool, a swapoff on the swap device(s) will
  42. fault back into memory all swapped out pages, including those in the
  43. compressed pool.
  44. Design
  45. ======
  46. Zswap receives pages for compression through the Frontswap API and is able to
  47. evict pages from its own compressed pool on an LRU basis and write them back to
  48. the backing swap device in the case that the compressed pool is full.
  49. Zswap makes use of zpool for the managing the compressed memory pool. Each
  50. allocation in zpool is not directly accessible by address. Rather, a handle is
  51. returned by the allocation routine and that handle must be mapped before being
  52. accessed. The compressed memory pool grows on demand and shrinks as compressed
  53. pages are freed. The pool is not preallocated. By default, a zpool
  54. of type zbud is created, but it can be selected at boot time by
  55. setting the ``zpool`` attribute, e.g. ``zswap.zpool=zbud``. It can
  56. also be changed at runtime using the sysfs ``zpool`` attribute, e.g.::
  57. echo zbud > /sys/module/zswap/parameters/zpool
  58. The zbud type zpool allocates exactly 1 page to store 2 compressed pages, which
  59. means the compression ratio will always be 2:1 or worse (because of half-full
  60. zbud pages). The zsmalloc type zpool has a more complex compressed page
  61. storage method, and it can achieve greater storage densities. However,
  62. zsmalloc does not implement compressed page eviction, so once zswap fills it
  63. cannot evict the oldest page, it can only reject new pages.
  64. When a swap page is passed from frontswap to zswap, zswap maintains a mapping
  65. of the swap entry, a combination of the swap type and swap offset, to the zpool
  66. handle that references that compressed swap page. This mapping is achieved
  67. with a red-black tree per swap type. The swap offset is the search key for the
  68. tree nodes.
  69. During a page fault on a PTE that is a swap entry, frontswap calls the zswap
  70. load function to decompress the page into the page allocated by the page fault
  71. handler.
  72. Once there are no PTEs referencing a swap page stored in zswap (i.e. the count
  73. in the swap_map goes to 0) the swap code calls the zswap invalidate function,
  74. via frontswap, to free the compressed entry.
  75. Zswap seeks to be simple in its policies. Sysfs attributes allow for one user
  76. controlled policy:
  77. * max_pool_percent - The maximum percentage of memory that the compressed
  78. pool can occupy.
  79. The default compressor is lzo, but it can be selected at boot time by
  80. setting the ``compressor`` attribute, e.g. ``zswap.compressor=lzo``.
  81. It can also be changed at runtime using the sysfs "compressor"
  82. attribute, e.g.::
  83. echo lzo > /sys/module/zswap/parameters/compressor
  84. When the zpool and/or compressor parameter is changed at runtime, any existing
  85. compressed pages are not modified; they are left in their own zpool. When a
  86. request is made for a page in an old zpool, it is uncompressed using its
  87. original compressor. Once all pages are removed from an old zpool, the zpool
  88. and its compressor are freed.
  89. Some of the pages in zswap are same-value filled pages (i.e. contents of the
  90. page have same value or repetitive pattern). These pages include zero-filled
  91. pages and they are handled differently. During store operation, a page is
  92. checked if it is a same-value filled page before compressing it. If true, the
  93. compressed length of the page is set to zero and the pattern or same-filled
  94. value is stored.
  95. Same-value filled pages identification feature is enabled by default and can be
  96. disabled at boot time by setting the ``same_filled_pages_enabled`` attribute
  97. to 0, e.g. ``zswap.same_filled_pages_enabled=0``. It can also be enabled and
  98. disabled at runtime using the sysfs ``same_filled_pages_enabled``
  99. attribute, e.g.::
  100. echo 1 > /sys/module/zswap/parameters/same_filled_pages_enabled
  101. When zswap same-filled page identification is disabled at runtime, it will stop
  102. checking for the same-value filled pages during store operation. However, the
  103. existing pages which are marked as same-value filled pages remain stored
  104. unchanged in zswap until they are either loaded or invalidated.
  105. A debugfs interface is provided for various statistic about pool size, number
  106. of pages stored, same-value filled pages and various counters for the reasons
  107. pages are rejected.