aboutsummaryrefslogtreecommitdiffstats
path: root/drivers
diff options
context:
space:
mode:
authorSergey Senozhatsky <sergey.senozhatsky@gmail.com>2014-04-07 15:38:07 -0700
committerSimon Shields <keepcalm444@gmail.com>2016-06-12 21:19:59 +1000
commitc20ebd785b1ce8e68f4f9eafdaf1ea1f7fa2eff8 (patch)
tree4fe4d1ba5668a4c5d655c96773cafd14db20b767 /drivers
parent0af6b10ff713d6813006fcf2d26d59804e1da162 (diff)
downloadkernel_samsung_smdk4412-c20ebd785b1ce8e68f4f9eafdaf1ea1f7fa2eff8.zip
kernel_samsung_smdk4412-c20ebd785b1ce8e68f4f9eafdaf1ea1f7fa2eff8.tar.gz
kernel_samsung_smdk4412-c20ebd785b1ce8e68f4f9eafdaf1ea1f7fa2eff8.tar.bz2
zram: move zram size warning to documentation
Move zram warning about disksize and size of memory correlation to zram documentation. Signed-off-by: Sergey Senozhatsky <sergey.senozhatsky@gmail.com> Acked-by: Minchan Kim <minchan@kernel.org> Cc: Jerome Marchand <jmarchan@redhat.com> 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 'drivers')
-rw-r--r--drivers/block/zram/zram_drv.c15
1 files changed, 0 insertions, 15 deletions
diff --git a/drivers/block/zram/zram_drv.c b/drivers/block/zram/zram_drv.c
index 1a53643..70d7adc 100644
--- a/drivers/block/zram/zram_drv.c
+++ b/drivers/block/zram/zram_drv.c
@@ -546,23 +546,8 @@ static void zram_reset_device(struct zram *zram, bool reset_capacity)
static void zram_init_device(struct zram *zram, struct zram_meta *meta)
{
- if (zram->disksize > 2 * (totalram_pages << PAGE_SHIFT)) {
- pr_info(
- "There is little point creating a zram of greater than "
- "twice the size of memory since we expect a 2:1 compression "
- "ratio. Note that zram uses about 0.1%% of the size of "
- "the disk when not in use so a huge zram is "
- "wasteful.\n"
- "\tMemory Size: %lu kB\n"
- "\tSize you selected: %llu kB\n"
- "Continuing anyway ...\n",
- (totalram_pages << PAGE_SHIFT) >> 10, zram->disksize >> 10
- );
- }
-
/* zram devices sort of resembles non-rotational disks */
queue_flag_set_unlocked(QUEUE_FLAG_NONROT, zram->disk->queue);
-
zram->meta = meta;
pr_debug("Initialization done!\n");
}