LKML Archive on lore.kernel.org
help / color / mirror / Atom feed
* [PATCH] zram: free meta table in zram_meta_free
@ 2015-01-24 13:45 Ganesh Mahendran
2015-01-26 15:45 ` Minchan Kim
0 siblings, 1 reply; 3+ messages in thread
From: Ganesh Mahendran @ 2015-01-24 13:45 UTC (permalink / raw)
To: minchan, ngupta; +Cc: akpm, linux-mm, linux-kernel, Ganesh Mahendran
zram_meta_alloc() and zram_meta_free() are a pair.
In zram_meta_alloc(), meta table is allocated. So it it better to free
it in zram_meta_free().
Signed-off-by: Ganesh Mahendran <opensource.ganesh@gmail.com>
Cc: Nitin Gupta <ngupta@vflare.org>
Cc: Minchan Kim <minchan@kernel.org>
---
drivers/block/zram/zram_drv.c | 28 ++++++++++++++--------------
drivers/block/zram/zram_drv.h | 1 +
2 files changed, 15 insertions(+), 14 deletions(-)
diff --git a/drivers/block/zram/zram_drv.c b/drivers/block/zram/zram_drv.c
index 9bbc302..52fef1b 100644
--- a/drivers/block/zram/zram_drv.c
+++ b/drivers/block/zram/zram_drv.c
@@ -309,6 +309,18 @@ static inline int valid_io_request(struct zram *zram,
static void zram_meta_free(struct zram_meta *meta)
{
+ size_t index;
+
+ /* Free all pages that are still in this zram device */
+ for (index = 0; index < meta->num_pages; index++) {
+ unsigned long handle = meta->table[index].handle;
+
+ if (!handle)
+ continue;
+
+ zs_free(meta->mem_pool, handle);
+ }
+
zs_destroy_pool(meta->mem_pool);
vfree(meta->table);
kfree(meta);
@@ -316,14 +328,13 @@ static void zram_meta_free(struct zram_meta *meta)
static struct zram_meta *zram_meta_alloc(int device_id, u64 disksize)
{
- size_t num_pages;
char pool_name[8];
struct zram_meta *meta = kmalloc(sizeof(*meta), GFP_KERNEL);
if (!meta)
goto out;
- num_pages = disksize >> PAGE_SHIFT;
- meta->table = vzalloc(num_pages * sizeof(*meta->table));
+ meta->num_pages = disksize >> PAGE_SHIFT;
+ meta->table = vzalloc(meta->num_pages * sizeof(*meta->table));
if (!meta->table) {
pr_err("Error allocating zram address table\n");
goto free_meta;
@@ -708,7 +719,6 @@ static void zram_bio_discard(struct zram *zram, u32 index,
static void zram_reset_device(struct zram *zram, bool reset_capacity)
{
- size_t index;
struct zram_meta *meta;
struct zcomp *comp;
@@ -735,16 +745,6 @@ static void zram_reset_device(struct zram *zram, bool reset_capacity)
up_write(&zram->init_lock);
- /* Free all pages that are still in this zram device */
- for (index = 0; index < zram->disksize >> PAGE_SHIFT; index++) {
- unsigned long handle = meta->table[index].handle;
-
- if (!handle)
- continue;
-
- zs_free(meta->mem_pool, handle);
- }
-
zcomp_destroy(comp);
zram_meta_free(meta);
diff --git a/drivers/block/zram/zram_drv.h b/drivers/block/zram/zram_drv.h
index b05a816..e492f6b 100644
--- a/drivers/block/zram/zram_drv.h
+++ b/drivers/block/zram/zram_drv.h
@@ -96,6 +96,7 @@ struct zram_stats {
struct zram_meta {
struct zram_table_entry *table;
struct zs_pool *mem_pool;
+ size_t num_pages;
};
struct zram {
--
1.7.9.5
^ permalink raw reply [flat|nested] 3+ messages in thread
* Re: [PATCH] zram: free meta table in zram_meta_free
2015-01-24 13:45 [PATCH] zram: free meta table in zram_meta_free Ganesh Mahendran
@ 2015-01-26 15:45 ` Minchan Kim
2015-01-27 1:42 ` Ganesh Mahendran
0 siblings, 1 reply; 3+ messages in thread
From: Minchan Kim @ 2015-01-26 15:45 UTC (permalink / raw)
To: Ganesh Mahendran; +Cc: ngupta, akpm, linux-mm, linux-kernel
Hello,
On Sat, Jan 24, 2015 at 09:45:53PM +0800, Ganesh Mahendran wrote:
> zram_meta_alloc() and zram_meta_free() are a pair.
> In zram_meta_alloc(), meta table is allocated. So it it better to free
> it in zram_meta_free().
>
> Signed-off-by: Ganesh Mahendran <opensource.ganesh@gmail.com>
> Cc: Nitin Gupta <ngupta@vflare.org>
> Cc: Minchan Kim <minchan@kernel.org>
Looks good to me but it seems the patch is based on my recent work
"zram: free meta out of init_lock".
Please resend it on recent mmotm because I will respin my patch and
your patch is orthogonal with mine.
Thanks.
^ permalink raw reply [flat|nested] 3+ messages in thread
* Re: [PATCH] zram: free meta table in zram_meta_free
2015-01-26 15:45 ` Minchan Kim
@ 2015-01-27 1:42 ` Ganesh Mahendran
0 siblings, 0 replies; 3+ messages in thread
From: Ganesh Mahendran @ 2015-01-27 1:42 UTC (permalink / raw)
To: Minchan Kim; +Cc: Nitin Gupta, Andrew Morton, Linux-MM, linux-kernel
Hello, Minchan
2015-01-26 23:45 GMT+08:00 Minchan Kim <minchan@kernel.org>:
> Hello,
>
> On Sat, Jan 24, 2015 at 09:45:53PM +0800, Ganesh Mahendran wrote:
>> zram_meta_alloc() and zram_meta_free() are a pair.
>> In zram_meta_alloc(), meta table is allocated. So it it better to free
>> it in zram_meta_free().
>>
>> Signed-off-by: Ganesh Mahendran <opensource.ganesh@gmail.com>
>> Cc: Nitin Gupta <ngupta@vflare.org>
>> Cc: Minchan Kim <minchan@kernel.org>
>
> Looks good to me but it seems the patch is based on my recent work
> "zram: free meta out of init_lock".
> Please resend it on recent mmotm because I will respin my patch and
> your patch is orthogonal with mine.
OK, I will resend the patch. Thanks.
>
> Thanks.
^ permalink raw reply [flat|nested] 3+ messages in thread
end of thread, other threads:[~2015-01-27 1:43 UTC | newest]
Thread overview: 3+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2015-01-24 13:45 [PATCH] zram: free meta table in zram_meta_free Ganesh Mahendran
2015-01-26 15:45 ` Minchan Kim
2015-01-27 1:42 ` Ganesh Mahendran
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).