From: Onkalo Samu <samu.p.onkalo@nokia.com>
To: ext Dan Carpenter <error27@gmail.com>
Cc: Jonathan Cameron <jic23@cam.ac.uk>,
"linux-kernel@vger.kernel.org" <linux-kernel@vger.kernel.org>,
"kernel-janitors@vger.kernel.org"
<kernel-janitors@vger.kernel.org>
Subject: Re: [patch] misc/bh1770glc: error handling in
Date: Fri, 29 Oct 2010 11:27:54 +0000 [thread overview]
Message-ID: <1288351674.30706.4.camel@4fid08082> (raw)
In-Reply-To: <20101028044149.GU6062@bicker>
On Thu, 2010-10-28 at 06:41 +0200, ext Dan Carpenter wrote:
> There was a signedness bug so "ret" was never less than zero and that
> breaks the error handling. Also in the original code it would overwrite
> ret and the result is still negative but it's bogus number instead of
> the correct error code.
>
> Signed-off-by: Dan Carpenter <error27@gmail.com>
Acked-by: Samu Onkalo <samu.p.onkalo@nokia.com>
>
> diff --git a/drivers/misc/bh1770glc.c b/drivers/misc/bh1770glc.c
> index cee632e..d79a972 100644
> --- a/drivers/misc/bh1770glc.c
> +++ b/drivers/misc/bh1770glc.c
> @@ -649,7 +649,7 @@ static ssize_t bh1770_power_state_store(struct device *dev,
> {
> struct bh1770_chip *chip = dev_get_drvdata(dev);
> unsigned long value;
> - size_t ret;
> + ssize_t ret;
>
> if (strict_strtoul(buf, 0, &value))
> return -EINVAL;
> @@ -659,8 +659,12 @@ static ssize_t bh1770_power_state_store(struct device *dev,
> pm_runtime_get_sync(dev);
>
> ret = bh1770_lux_rate(chip, chip->lux_rate_index);
> - ret |= bh1770_lux_interrupt_control(chip, BH1770_ENABLE);
> + if (ret < 0) {
> + pm_runtime_put(dev);
> + goto leave;
> + }
>
> + ret = bh1770_lux_interrupt_control(chip, BH1770_ENABLE);
> if (ret < 0) {
> pm_runtime_put(dev);
> goto leave;
WARNING: multiple messages have this Message-ID (diff)
From: Onkalo Samu <samu.p.onkalo@nokia.com>
To: ext Dan Carpenter <error27@gmail.com>
Cc: Jonathan Cameron <jic23@cam.ac.uk>,
"linux-kernel@vger.kernel.org" <linux-kernel@vger.kernel.org>,
"kernel-janitors@vger.kernel.org"
<kernel-janitors@vger.kernel.org>
Subject: Re: [patch] misc/bh1770glc: error handling in bh1770_power_state_store()
Date: Fri, 29 Oct 2010 14:27:54 +0300 [thread overview]
Message-ID: <1288351674.30706.4.camel@4fid08082> (raw)
In-Reply-To: <20101028044149.GU6062@bicker>
On Thu, 2010-10-28 at 06:41 +0200, ext Dan Carpenter wrote:
> There was a signedness bug so "ret" was never less than zero and that
> breaks the error handling. Also in the original code it would overwrite
> ret and the result is still negative but it's bogus number instead of
> the correct error code.
>
> Signed-off-by: Dan Carpenter <error27@gmail.com>
Acked-by: Samu Onkalo <samu.p.onkalo@nokia.com>
>
> diff --git a/drivers/misc/bh1770glc.c b/drivers/misc/bh1770glc.c
> index cee632e..d79a972 100644
> --- a/drivers/misc/bh1770glc.c
> +++ b/drivers/misc/bh1770glc.c
> @@ -649,7 +649,7 @@ static ssize_t bh1770_power_state_store(struct device *dev,
> {
> struct bh1770_chip *chip = dev_get_drvdata(dev);
> unsigned long value;
> - size_t ret;
> + ssize_t ret;
>
> if (strict_strtoul(buf, 0, &value))
> return -EINVAL;
> @@ -659,8 +659,12 @@ static ssize_t bh1770_power_state_store(struct device *dev,
> pm_runtime_get_sync(dev);
>
> ret = bh1770_lux_rate(chip, chip->lux_rate_index);
> - ret |= bh1770_lux_interrupt_control(chip, BH1770_ENABLE);
> + if (ret < 0) {
> + pm_runtime_put(dev);
> + goto leave;
> + }
>
> + ret = bh1770_lux_interrupt_control(chip, BH1770_ENABLE);
> if (ret < 0) {
> pm_runtime_put(dev);
> goto leave;
next prev parent reply other threads:[~2010-10-29 11:27 UTC|newest]
Thread overview: 4+ messages / expand[flat|nested] mbox.gz Atom feed top
2010-10-28 4:41 [patch] misc/bh1770glc: error handling in Dan Carpenter
2010-10-28 4:41 ` [patch] misc/bh1770glc: error handling in bh1770_power_state_store() Dan Carpenter
2010-10-29 11:27 ` Onkalo Samu [this message]
2010-10-29 11:27 ` Onkalo Samu
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=1288351674.30706.4.camel@4fid08082 \
--to=samu.p.onkalo@nokia.com \
--cc=error27@gmail.com \
--cc=jic23@cam.ac.uk \
--cc=kernel-janitors@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.