diff options
author | Dan Streetman <ddstreet@ieee.org> | 2014-08-06 16:08:40 -0700 |
---|---|---|
committer | Linus Torvalds <torvalds@linux-foundation.org> | 2014-08-06 18:01:23 -0700 |
commit | 12d79d64bfd3913693304feb8636ccab504b9e63 (patch) | |
tree | 15e87996b0c210fc5c33db26ca703de5c2e56b01 /mm/Kconfig | |
parent | c795779df29e180738568d2a5eb3a42f3b5e47f0 (diff) | |
download | linux-stable-12d79d64bfd3913693304feb8636ccab504b9e63.tar.gz linux-stable-12d79d64bfd3913693304feb8636ccab504b9e63.tar.bz2 linux-stable-12d79d64bfd3913693304feb8636ccab504b9e63.zip |
mm/zpool: update zswap to use zpool
Change zswap to use the zpool api instead of directly using zbud. Add a
boot-time param to allow selecting which zpool implementation to use,
with zbud as the default.
Signed-off-by: Dan Streetman <ddstreet@ieee.org>
Tested-by: Seth Jennings <sjennings@variantweb.net>
Cc: Weijie Yang <weijie.yang@samsung.com>
Cc: Minchan Kim <minchan@kernel.org>
Cc: Nitin Gupta <ngupta@vflare.org>
Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
Diffstat (limited to 'mm/Kconfig')
-rw-r--r-- | mm/Kconfig | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/mm/Kconfig b/mm/Kconfig index 12179b8c3b89..886db2158538 100644 --- a/mm/Kconfig +++ b/mm/Kconfig @@ -535,7 +535,7 @@ config ZSWAP bool "Compressed cache for swap pages (EXPERIMENTAL)" depends on FRONTSWAP && CRYPTO=y select CRYPTO_LZO - select ZBUD + select ZPOOL default n help A lightweight compressed cache for swap pages. It takes |