lists.openwall.net | lists / announce owl-users owl-dev john-users john-dev passwdqc-users yescrypt popa3d-users / oss-security kernel-hardening musl sabotage tlsify passwords / crypt-dev xvendor / Bugtraq Full-Disclosure linux-kernel linux-netdev linux-ext4 linux-hardening PHC | |
Open Source and information security mailing list archives
| ||
|
Date: Sat, 25 Oct 2014 17:25:11 +0800 From: Weijie Yang <weijie.yang@...sung.com> To: 'Minchan Kim' <minchan@...nel.org> Cc: 'Andrew Morton' <akpm@...ux-foundation.org>, 'Dan Streetman' <ddstreet@...e.org>, 'Sergey Senozhatsky' <sergey.senozhatsky@...il.com>, 'Nitin Gupta' <ngupta@...are.org>, 'Linux-MM' <linux-mm@...ck.org>, 'linux-kernel' <linux-kernel@...r.kernel.org>, 'Weijie Yang' <weijie.yang.kh@...il.com> Subject: [PATCH 1/2] zram: make max_used_pages reset work correctly The commit 461a8eee6a ("zram: report maximum used memory") introduces a new knob "mem_used_max" in zram.stats sysfs, and wants to reset it via write 0 to the sysfs interface. However, the current code cann't reset it correctly, so let's fix it. Signed-off-by: Weijie Yang <weijie.yang@...sung.com> --- drivers/block/zram/zram_drv.c | 4 +--- 1 files changed, 1 insertions(+), 3 deletions(-) diff --git a/drivers/block/zram/zram_drv.c b/drivers/block/zram/zram_drv.c index 0e63e8a..64dd79a 100644 --- a/drivers/block/zram/zram_drv.c +++ b/drivers/block/zram/zram_drv.c @@ -173,7 +173,6 @@ static ssize_t mem_used_max_store(struct device *dev, int err; unsigned long val; struct zram *zram = dev_to_zram(dev); - struct zram_meta *meta = zram->meta; err = kstrtoul(buf, 10, &val); if (err || val != 0) @@ -181,8 +180,7 @@ static ssize_t mem_used_max_store(struct device *dev, down_read(&zram->init_lock); if (init_done(zram)) - atomic_long_set(&zram->stats.max_used_pages, - zs_get_total_pages(meta->mem_pool)); + atomic_long_set(&zram->stats.max_used_pages, 0); up_read(&zram->init_lock); return len; -- 1.7.0.4 -- To unsubscribe from this list: send the line "unsubscribe linux-kernel" in the body of a message to majordomo@...r.kernel.org More majordomo info at http://vger.kernel.org/majordomo-info.html Please read the FAQ at http://www.tux.org/lkml/
Powered by blists - more mailing lists