config ARCH_NO_SWAP
        bool
 
+config ZPOOL
+       bool
+
 menuconfig SWAP
        bool "Support for paging of anonymous memory (swap)"
        depends on MMU && BLOCK && !ARCH_NO_SWAP
 
 config ZSWAP
        bool "Compressed cache for swap pages (EXPERIMENTAL)"
-       depends on SWAP && CRYPTO=y
+       depends on SWAP
        select FRONTSWAP
+       select CRYPTO
        select ZPOOL
        help
          A lightweight compressed cache for swap pages.  It takes
          they have not be fully explored on the large set of potential
          configurations and workloads that exist.
 
+config ZSWAP_DEFAULT_ON
+       bool "Enable the compressed cache for swap pages by default"
+       depends on ZSWAP
+       help
+         If selected, the compressed cache for swap pages will be enabled
+         at boot, otherwise it will be disabled.
+
+         The selection made here can be overridden by using the kernel
+         command line 'zswap.enabled=' option.
+
 choice
-       prompt "Compressed cache for swap pages default compressor"
+       prompt "Default compressor"
        depends on ZSWAP
        default ZSWAP_COMPRESSOR_DEFAULT_LZO
        help
        default ""
 
 choice
-       prompt "Compressed cache for swap pages default allocator"
+       prompt "Default allocator"
        depends on ZSWAP
        default ZSWAP_ZPOOL_DEFAULT_ZBUD
        help
        default "zsmalloc" if ZSWAP_ZPOOL_DEFAULT_ZSMALLOC
        default ""
 
-config ZSWAP_DEFAULT_ON
-       bool "Enable the compressed cache for swap pages by default"
-       depends on ZSWAP
-       help
-         If selected, the compressed cache for swap pages will be enabled
-         at boot, otherwise it will be disabled.
-
-         The selection made here can be overridden by using the kernel
-         command line 'zswap.enabled=' option.
-
-config ZPOOL
-       tristate "Common API for compressed memory storage"
-       depends on ZSWAP
-       help
-         Compressed memory storage API.  This allows using either zbud or
-         zsmalloc.
-
 config ZBUD
-       tristate "Low (Up to 2x) density storage for compressed pages"
-       depends on ZPOOL
+       tristate "2:1 compression allocator (zbud)"
+       depends on ZSWAP
        help
          A special purpose allocator for storing compressed pages.
          It is designed to store up to two compressed pages per physical
          density approach when reclaim will be used.
 
 config Z3FOLD
-       tristate "Up to 3x density storage for compressed pages"
-       depends on ZPOOL
+       tristate "3:1 compression allocator (z3fold)"
+       depends on ZSWAP
        help
          A special purpose allocator for storing compressed pages.
          It is designed to store up to three compressed pages per physical
          still there.
 
 config ZSMALLOC
-       tristate "Memory allocator for compressed pages"
+       tristate
+       prompt "N:1 compression allocator (zsmalloc)" if ZSWAP
        depends on MMU
        help
          zsmalloc is a slab-based memory allocator designed to store
-         compressed RAM pages.  zsmalloc uses virtual memory mapping
-         in order to reduce fragmentation.  However, this results in a
-         non-standard allocator interface where a handle, not a pointer, is
-         returned by an alloc().  This handle must be mapped in order to
-         access the allocated space.
+         pages of various compression levels efficiently. It achieves
+         the highest storage density with the least amount of fragmentation.
 
 config ZSMALLOC_STAT
        bool "Export zsmalloc statistics"