From: Sergey Senozhatsky <sergey.senozhatsky.work@gmail.com>
To: linux-kernel@vger.kernel.org
Cc: akpm@linux-foundation.org, jmarchan@redhat.com,
minchan@kernel.org, ngupta@vflare.org,
opensource.ganesh@gmail.com, sergey.senozhatsky@gmail.com,
mm-commits@vger.kernel.org
Subject: Re: + zram-rework-reset-and-destroy-path-fix.patch added to -mm tree
Date: Wed, 4 Feb 2015 10:07:20 +0900 [thread overview]
Message-ID: <20150204010720.GC527@swordfish> (raw)
In-Reply-To: <54d155bf.k9GCVwDVqT17beYC%akpm@linux-foundation.org>
On (02/03/15 15:11), akpm@linux-foundation.org wrote:
> tweak comment
>
Thank you, sir.
Andrew, can you please squash the following patch?
---
>From 22f0be96df55513a3d764ea880d5b3e99669f8f7 Mon Sep 17 00:00:00 2001
From: Sergey Senozhatsky <sergey.senozhatsky@gmail.com>
Date: Wed, 4 Feb 2015 09:59:06 +0900
Subject: [PATCH] zram: set default dev_id value to zero in zram_init()
Set dev_id to zero and fix zram_devices allocation error handling
path, can pass uninit dev_id to destroy_devices().
cosmetic:
change destroy_devices() message from pr_debug() to pr_info(), as
proposed by Minchan Kim.
Signed-off-by: Sergey Senozhatsky <sergey.senozhatsky@gmail.com>
---
drivers/block/zram/zram_drv.c | 8 +++-----
1 file changed, 3 insertions(+), 5 deletions(-)
diff --git a/drivers/block/zram/zram_drv.c b/drivers/block/zram/zram_drv.c
index 79c5da9..0bb4fa0 100644
--- a/drivers/block/zram/zram_drv.c
+++ b/drivers/block/zram/zram_drv.c
@@ -1138,12 +1138,12 @@ static void destroy_devices(unsigned int nr)
kfree(zram_devices);
unregister_blkdev(zram_major, "zram");
- pr_debug("Destroyed %u device(s)\n", nr);
+ pr_info("Destroyed %u device(s)\n", nr);
}
static int __init zram_init(void)
{
- int ret, dev_id;
+ int ret = -ENOMEM, dev_id = 0;
if (num_devices > max_num_devices) {
pr_warn("Invalid value for num_devices: %u\n",
@@ -1159,10 +1159,8 @@ static int __init zram_init(void)
/* Allocate the device array and initialize each one */
zram_devices = kzalloc(num_devices * sizeof(struct zram), GFP_KERNEL);
- if (!zram_devices) {
- ret = -ENOMEM;
+ if (!zram_devices)
goto out_error;
- }
for (dev_id = 0; dev_id < num_devices; dev_id++) {
ret = create_device(&zram_devices[dev_id], dev_id);
--
2.3.0.rc2
next prev parent reply other threads:[~2015-02-04 1:07 UTC|newest]
Thread overview: 6+ messages / expand[flat|nested] mbox.gz Atom feed top
2015-02-03 23:11 + zram-rework-reset-and-destroy-path-fix.patch added to -mm tree akpm
2015-02-04 1:07 ` Sergey Senozhatsky [this message]
2015-02-04 22:29 ` Andrew Morton
2015-02-04 22:29 ` Andrew Morton
2015-02-05 0:20 ` Sergey Senozhatsky
2015-02-05 0:36 ` Sergey Senozhatsky
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=20150204010720.GC527@swordfish \
--to=sergey.senozhatsky.work@gmail.com \
--cc=akpm@linux-foundation.org \
--cc=jmarchan@redhat.com \
--cc=linux-kernel@vger.kernel.org \
--cc=minchan@kernel.org \
--cc=mm-commits@vger.kernel.org \
--cc=ngupta@vflare.org \
--cc=opensource.ganesh@gmail.com \
--cc=sergey.senozhatsky@gmail.com \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.