diff options
author | Seth Jennings <sjenning@linux.vnet.ibm.com> | 2012-06-25 11:14:36 -0500 |
---|---|---|
committer | Greg Kroah-Hartman <gregkh@linuxfoundation.org> | 2012-06-25 10:00:53 -0700 |
commit | 6e2361720b9da9ec830d407da058ca1827e62b12 (patch) | |
tree | 55784e308ad7076183d389c6a9fb722601445a9a /drivers/staging/zcache | |
parent | c90e3e80b9751335cc98934ae32188fa7de6bccd (diff) | |
download | blackbird-obmc-linux-6e2361720b9da9ec830d407da058ca1827e62b12.tar.gz blackbird-obmc-linux-6e2361720b9da9ec830d407da058ca1827e62b12.zip |
staging: zram/zcache: swtich Kconfig dependency from X86 to ZSMALLOC
This patch switches zcache and zram dependency to ZSMALLOC
rather than X86. There is no net change since ZSMALLOC
depends on X86, however, this prevent further changes to
these files as zsmalloc dependencies change.
Signed-off-by: Seth Jennings <sjenning@linux.vnet.ibm.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Diffstat (limited to 'drivers/staging/zcache')
-rw-r--r-- | drivers/staging/zcache/Kconfig | 5 |
1 files changed, 1 insertions, 4 deletions
diff --git a/drivers/staging/zcache/Kconfig b/drivers/staging/zcache/Kconfig index 7048e01f0817..4881839be625 100644 --- a/drivers/staging/zcache/Kconfig +++ b/drivers/staging/zcache/Kconfig @@ -1,9 +1,6 @@ config ZCACHE bool "Dynamic compression of swap pages and clean pagecache pages" - # X86 dependency is because zsmalloc uses non-portable pte/tlb - # functions - depends on (CLEANCACHE || FRONTSWAP) && CRYPTO=y && X86 - select ZSMALLOC + depends on (CLEANCACHE || FRONTSWAP) && CRYPTO=y && ZSMALLOC=y select CRYPTO_LZO default n help |