[PATCH] zram: fix missing zero pages for memory tracking

From: Minchan Kim
Date: Wed Sep 19 2018 - 01:19:07 EST


We need to count zero filled pages as well as other pages in zram.
Otherwise, it doesn't match swap page count via pagemap of process
so that memory tracking feature in zram doesn't provide accurate
information.

Cc: Sergey Senozhatsky <sergey.senozhatsky.work@xxxxxxxxx>
Cc: <stable@xxxxxxxxxxxxxxx> [4.18+]
Signed-off-by: Minchan Kim <minchan@xxxxxxxxxx>
---
drivers/block/zram/zram_drv.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/drivers/block/zram/zram_drv.c b/drivers/block/zram/zram_drv.c
index a1d6b5597c17..40d303d8826f 100644
--- a/drivers/block/zram/zram_drv.c
+++ b/drivers/block/zram/zram_drv.c
@@ -71,7 +71,7 @@ static inline bool init_done(struct zram *zram)
static inline bool zram_allocated(struct zram *zram, u32 index)
{

- return (zram->table[index].value >> (ZRAM_FLAG_SHIFT + 1)) ||
+ return zram->table[index].value >> ZRAM_FLAG_SHIFT ||
zram->table[index].handle;
}

--
2.19.0.397.gdd90340f6a-goog