All of lore.kernel.org
 help / color / mirror / Atom feed
From: Andrew Morton <akpm@linux-foundation.org>
To: Vasiliy Kulikov <segooon@gmail.com>
Cc: kernel-janitors@vger.kernel.org, Liu Hong <hong.liu@intel.com>,
	Kalhan Trisal <kalhan.trisal@intel.com>,
	Arjan van de Ven <arjan@linux.intel.com>,
	Alan Cox <alan@linux.intel.com>,
	linux-kernel@vger.kernel.org
Subject: Re: [PATCH] misc: isl29020: fix signedness bug
Date: Fri, 29 Oct 2010 22:17:10 +0000	[thread overview]
Message-ID: <20101029151710.de349042.akpm@linux-foundation.org> (raw)
In-Reply-To: <1288264443-10627-1-git-send-email-segooon@gmail.com>

On Thu, 28 Oct 2010 15:14:03 +0400
Vasiliy Kulikov <segooon@gmail.com> wrote:

> i2c_smbus_write_byte_data() may return negative error code.  This is not
> seen to als_sensing_range_store() as the result is stored in unsigned int.
> Made it signed.
> 
> Signed-off-by: Vasiliy Kulikov <segooon@gmail.com>
> ---
>  Compile tested.
> 
>  drivers/misc/isl29020.c |    2 +-
>  1 files changed, 1 insertions(+), 1 deletions(-)
> 
> diff --git a/drivers/misc/isl29020.c b/drivers/misc/isl29020.c
> index 34fe835..629d31e 100644
> --- a/drivers/misc/isl29020.c
> +++ b/drivers/misc/isl29020.c
> @@ -87,7 +87,7 @@ static ssize_t als_sensing_range_store(struct device *dev,
>  		struct device_attribute *attr, const  char *buf, size_t count)
>  {
>  	struct i2c_client *client = to_i2c_client(dev);
> -	unsigned int ret_val;
> +	int ret_val;
>  	unsigned long val;
>  
>  	if (strict_strtoul(buf, 10, &val))

yup.

It also needs this:



drivers/misc/isl29020.c: don't ignore the i2c_smbus_read_byte_data() return value

From: Andrew Morton <akpm@linux-foundation.org>

If i2c_smbus_read_byte_data() fails, this driver will write a mangled
errno value into the hardware.

Cc: Vasiliy Kulikov <segooon@gmail.com>
Cc: Liu Hong <hong.liu@intel.com>
Cc: Kalhan Trisal <kalhan.trisal@intel.com>
Cc: Arjan van de Ven <arjan@linux.intel.com>
Cc: Alan Cox <alan@linux.intel.com>
Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
---

 drivers/misc/isl29020.c |    4 +++-
 1 file changed, 3 insertions(+), 1 deletion(-)

diff -puN drivers/misc/isl29020.c~a drivers/misc/isl29020.c
--- a/drivers/misc/isl29020.c~a
+++ a/drivers/misc/isl29020.c
@@ -106,8 +106,10 @@ static ssize_t als_sensing_range_store(s
 		val = 4;
 
 	ret_val = i2c_smbus_read_byte_data(client, 0x00);
+	if (ret_val < 0)
+		return ret_val;
 
-	ret_val &= 0xFC; /*reset the bit before setting them */
+	ret_val &= 0xFC; /* reset the bit before setting them */
 	ret_val |= val - 1;
 	ret_val = i2c_smbus_write_byte_data(client, 0x00, ret_val);
 
_


WARNING: multiple messages have this Message-ID (diff)
From: Andrew Morton <akpm@linux-foundation.org>
To: Vasiliy Kulikov <segooon@gmail.com>
Cc: kernel-janitors@vger.kernel.org, Liu Hong <hong.liu@intel.com>,
	Kalhan Trisal <kalhan.trisal@intel.com>,
	Arjan van de Ven <arjan@linux.intel.com>,
	Alan Cox <alan@linux.intel.com>,
	linux-kernel@vger.kernel.org
Subject: Re: [PATCH] misc: isl29020: fix signedness bug
Date: Fri, 29 Oct 2010 15:17:10 -0700	[thread overview]
Message-ID: <20101029151710.de349042.akpm@linux-foundation.org> (raw)
In-Reply-To: <1288264443-10627-1-git-send-email-segooon@gmail.com>

On Thu, 28 Oct 2010 15:14:03 +0400
Vasiliy Kulikov <segooon@gmail.com> wrote:

> i2c_smbus_write_byte_data() may return negative error code.  This is not
> seen to als_sensing_range_store() as the result is stored in unsigned int.
> Made it signed.
> 
> Signed-off-by: Vasiliy Kulikov <segooon@gmail.com>
> ---
>  Compile tested.
> 
>  drivers/misc/isl29020.c |    2 +-
>  1 files changed, 1 insertions(+), 1 deletions(-)
> 
> diff --git a/drivers/misc/isl29020.c b/drivers/misc/isl29020.c
> index 34fe835..629d31e 100644
> --- a/drivers/misc/isl29020.c
> +++ b/drivers/misc/isl29020.c
> @@ -87,7 +87,7 @@ static ssize_t als_sensing_range_store(struct device *dev,
>  		struct device_attribute *attr, const  char *buf, size_t count)
>  {
>  	struct i2c_client *client = to_i2c_client(dev);
> -	unsigned int ret_val;
> +	int ret_val;
>  	unsigned long val;
>  
>  	if (strict_strtoul(buf, 10, &val))

yup.

It also needs this:



drivers/misc/isl29020.c: don't ignore the i2c_smbus_read_byte_data() return value

From: Andrew Morton <akpm@linux-foundation.org>

If i2c_smbus_read_byte_data() fails, this driver will write a mangled
errno value into the hardware.

Cc: Vasiliy Kulikov <segooon@gmail.com>
Cc: Liu Hong <hong.liu@intel.com>
Cc: Kalhan Trisal <kalhan.trisal@intel.com>
Cc: Arjan van de Ven <arjan@linux.intel.com>
Cc: Alan Cox <alan@linux.intel.com>
Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
---

 drivers/misc/isl29020.c |    4 +++-
 1 file changed, 3 insertions(+), 1 deletion(-)

diff -puN drivers/misc/isl29020.c~a drivers/misc/isl29020.c
--- a/drivers/misc/isl29020.c~a
+++ a/drivers/misc/isl29020.c
@@ -106,8 +106,10 @@ static ssize_t als_sensing_range_store(s
 		val = 4;
 
 	ret_val = i2c_smbus_read_byte_data(client, 0x00);
+	if (ret_val < 0)
+		return ret_val;
 
-	ret_val &= 0xFC; /*reset the bit before setting them */
+	ret_val &= 0xFC; /* reset the bit before setting them */
 	ret_val |= val - 1;
 	ret_val = i2c_smbus_write_byte_data(client, 0x00, ret_val);
 
_


  reply	other threads:[~2010-10-29 22:17 UTC|newest]

Thread overview: 4+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2010-10-28 11:14 [PATCH] misc: isl29020: fix signedness bug Vasiliy Kulikov
2010-10-28 11:14 ` Vasiliy Kulikov
2010-10-29 22:17 ` Andrew Morton [this message]
2010-10-29 22:17   ` Andrew Morton

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=20101029151710.de349042.akpm@linux-foundation.org \
    --to=akpm@linux-foundation.org \
    --cc=alan@linux.intel.com \
    --cc=arjan@linux.intel.com \
    --cc=hong.liu@intel.com \
    --cc=kalhan.trisal@intel.com \
    --cc=kernel-janitors@vger.kernel.org \
    --cc=linux-kernel@vger.kernel.org \
    --cc=segooon@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.