From: Matias <mb@lightnvm.io>
To: Wenwei Tao <ww.tao0320@gmail.com>
Cc: linux-kernel@vger.kernel.org
Subject: Re: [PATCH] lightnvm: fix wrong return value and remove nvme_free(dev) in nvm_init()
Date: Thu, 19 Nov 2015 17:08:14 +0100 [thread overview]
Message-ID: <564DF3EE.909@lightnvm.io> (raw)
In-Reply-To: <1447946632-4720-1-git-send-email-ww.tao0320@gmail.com>
On 11/19/2015 04:23 PM, Wenwei Tao wrote:
> The return value should be non-zero under error conditions.
> Remove nvme_free(dev) to avoid free dev more than once.
>
> Signed-off-by: Wenwei Tao <ww.tao0320@gmail.com>
> ---
> drivers/lightnvm/core.c | 6 ++----
> 1 file changed, 2 insertions(+), 4 deletions(-)
>
> diff --git a/drivers/lightnvm/core.c b/drivers/lightnvm/core.c
> index f659e60..1942752 100644
> --- a/drivers/lightnvm/core.c
> +++ b/drivers/lightnvm/core.c
> @@ -220,14 +220,13 @@ static void nvm_free(struct nvm_dev *dev)
> static int nvm_init(struct nvm_dev *dev)
> {
> struct nvmm_type *mt;
> - int ret = 0;
> + int ret = -EINVAL;
>
> if (!dev->q || !dev->ops)
> - return -EINVAL;
> + return ret;
>
> if (dev->ops->identity(dev->q, &dev->identity)) {
> pr_err("nvm: device could not be identified\n");
> - ret = -EINVAL;
> goto err;
> }
>
> @@ -273,7 +272,6 @@ static int nvm_init(struct nvm_dev *dev)
> dev->nr_chnls);
> return 0;
> err:
> - nvm_free(dev);
> pr_err("nvm: failed to initialize nvm\n");
> return ret;
> }
>
Applied, Thanks Tao.
prev parent reply other threads:[~2015-11-19 16:08 UTC|newest]
Thread overview: 2+ messages / expand[flat|nested] mbox.gz Atom feed top
2015-11-19 15:23 [PATCH] lightnvm: fix wrong return value and remove nvme_free(dev) in nvm_init() Wenwei Tao
2015-11-19 16:08 ` Matias [this message]
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=564DF3EE.909@lightnvm.io \
--to=mb@lightnvm.io \
--cc=linux-kernel@vger.kernel.org \
--cc=ww.tao0320@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.