From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from psmtp.com (na3sys010amx197.postini.com [74.125.245.197]) by kanga.kvack.org (Postfix) with SMTP id B534A6B0070 for ; Mon, 19 Nov 2012 18:35:14 -0500 (EST) From: Minchan Kim Subject: [PATCH v5 3/3] zram: select ZSMALLOC when ZRAM is configured Date: Tue, 20 Nov 2012 08:35:13 +0900 Message-Id: <1353368113-1971-4-git-send-email-minchan@kernel.org> In-Reply-To: <1353368113-1971-1-git-send-email-minchan@kernel.org> References: <1353368113-1971-1-git-send-email-minchan@kernel.org> Sender: owner-linux-mm@kvack.org List-ID: To: Greg Kroah-Hartman Cc: Andrew Morton , linux-kernel@vger.kernel.org, linux-mm@kvack.org, Dan Magenheimer , Nitin Gupta , Seth Jennings , Konrad Rzeszutek Wilk , Jens Axboe , Pekka Enberg , Luigi Semenzato , gaowanlong@cn.fujitsu.com, Minchan Kim At the monent, we can configure zram in driver/block once zsmalloc in /lib menu is configured firstly. It's not convenient. User can configure zram in driver/block regardless of zsmalloc enabling by this patch. Acked-by: Pekka Enberg Signed-off-by: Minchan Kim --- drivers/block/zram/Kconfig | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/drivers/block/zram/Kconfig b/drivers/block/zram/Kconfig index be5abe8..ee23a86 100644 --- a/drivers/block/zram/Kconfig +++ b/drivers/block/zram/Kconfig @@ -1,6 +1,7 @@ config ZRAM tristate "Compressed RAM block device support" - depends on BLOCK && SYSFS && ZSMALLOC + depends on BLOCK && SYSFS + select ZSMALLOC select LZO_COMPRESS select LZO_DECOMPRESS default n -- 1.7.9.5 -- To unsubscribe, send a message with 'unsubscribe linux-mm' in the body to majordomo@kvack.org. For more info on Linux MM, see: http://www.linux-mm.org/ . Don't email: email@kvack.org