From: Jonathan Cameron <jic23@kernel.org>
To: "Kim, Milo" <Milo.Kim@ti.com>
Cc: Jonathan Cameron <jic23@cam.ac.uk>,
Lars-Peter Clausen <lars@metafoo.de>,
"linux-iio@vger.kernel.org" <linux-iio@vger.kernel.org>,
"linux-kernel@vger.kernel.org" <linux-kernel@vger.kernel.org>
Subject: Re: [PATCH 2/2] iio: inkern: clean up error return code
Date: Sat, 22 Sep 2012 10:14:31 +0100 [thread overview]
Message-ID: <505D8177.6050101@kernel.org> (raw)
In-Reply-To: <A874F61F95741C4A9BA573A70FE3998F41EF539F@DQHE02.ent.ti.com>
On 09/18/2012 05:56 AM, Kim, Milo wrote:
> When the IIO consumer tries to get specific IIO channel,
> few error cases can be happened.
> (a) Memory allocation failure
> (b) No matched ADC channel error
> (c) Invalid input arguments
> This patch enables cleaning up error handling in case of (a) and (b).
>
> In error handling code,
> (a): the reference count of the IIO device should be decreased.
> (b): the allocated memory should be freed with restoring the reference count.
> Therefore iio_deivce_put() is called in both cases.
> This can be handled in the last error statement.
>
> Additionally, integer variable is used for stating each error case explicitly.
> Then, the error returns as ERR_PTR() with this value.
>
> Signed-off-by: Milo(Woogyom) Kim <milo.kim@ti.com>
Thanks,
added to togreg branch of iio.git
> ---
> drivers/iio/inkern.c | 13 ++++++++-----
> 1 file changed, 8 insertions(+), 5 deletions(-)
>
> diff --git a/drivers/iio/inkern.c b/drivers/iio/inkern.c
> index aff034b..656d4d4 100644
> --- a/drivers/iio/inkern.c
> +++ b/drivers/iio/inkern.c
> @@ -111,6 +111,7 @@ struct iio_channel *iio_channel_get(const char *name, const char *channel_name)
> {
> struct iio_map_internal *c_i = NULL, *c = NULL;
> struct iio_channel *channel;
> + int err;
>
> if (name == NULL && channel_name == NULL)
> return ERR_PTR(-ENODEV);
> @@ -131,8 +132,10 @@ struct iio_channel *iio_channel_get(const char *name, const char *channel_name)
> return ERR_PTR(-ENODEV);
>
> channel = kzalloc(sizeof(*channel), GFP_KERNEL);
> - if (channel == NULL)
> + if (channel == NULL) {
> + err = -ENOMEM;
> goto error_no_mem;
> + }
>
> channel->indio_dev = c->indio_dev;
>
> @@ -141,19 +144,19 @@ struct iio_channel *iio_channel_get(const char *name, const char *channel_name)
> iio_chan_spec_from_name(channel->indio_dev,
> c->map->adc_channel_label);
>
> - if (channel->channel == NULL)
> + if (channel->channel == NULL) {
> + err = -EINVAL;
> goto error_no_chan;
> + }
> }
>
> return channel;
>
> error_no_chan:
> - iio_device_put(c->indio_dev);
> kfree(channel);
> - return ERR_PTR(-EINVAL);
> error_no_mem:
> iio_device_put(c->indio_dev);
> - return ERR_PTR(-ENOMEM);
> + return ERR_PTR(err);
> }
> EXPORT_SYMBOL_GPL(iio_channel_get);
>
>
prev parent reply other threads:[~2012-09-22 9:14 UTC|newest]
Thread overview: 3+ messages / expand[flat|nested] mbox.gz Atom feed top
2012-09-18 4:56 [PATCH 2/2] iio: inkern: clean up error return code Kim, Milo
2012-09-18 4:56 ` Kim, Milo
2012-09-22 9:14 ` Jonathan Cameron [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=505D8177.6050101@kernel.org \
--to=jic23@kernel.org \
--cc=Milo.Kim@ti.com \
--cc=jic23@cam.ac.uk \
--cc=lars@metafoo.de \
--cc=linux-iio@vger.kernel.org \
--cc=linux-kernel@vger.kernel.org \
/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.