linux-i2c.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
From: Wolfram Sang <w.sang-bIcnvbaLZ9MEGnE8C9+IrQ@public.gmane.org>
To: Shubhrajyoti D <shubhrajyoti-l0cyMroinI0@public.gmane.org>
Cc: linux-i2c-u79uwXL29TY76Z2rM5mHXA@public.gmane.org
Subject: Re: [PATCH 1/6] i2c: omap: Prevent NULL pointer dereference in remove
Date: Sat, 18 Aug 2012 12:09:23 +0200	[thread overview]
Message-ID: <20120818100923.GD24812@pengutronix.de> (raw)
In-Reply-To: <1344519467-14295-2-git-send-email-shubhrajyoti-l0cyMroinI0@public.gmane.org>

[-- Attachment #1: Type: text/plain, Size: 2125 bytes --]

On Thu, Aug 09, 2012 at 07:07:42PM +0530, Shubhrajyoti D wrote:
> Prevent the NULL pointer access by moving the platform_set_drvdata function
> after the access of the pdev.
> 
> [  654.961761] Unable to handle kernel NULL pointer dereference at virtual address 00000070
> [  654.970611] pgd = df254000
> [  654.973480] [00000070] *pgd=9f1da831, *pte=00000000, *ppte=00000000
> [  654.980163] Internal error: Oops: 17 [#1] SMP ARM
> [  654.985076] Modules linked in:
> [  654.988281] CPU: 1    Not tainted  (3.6.0-rc1-00031-ge547de1-dirty #339)
> [  654.995330] PC is at omap_i2c_runtime_resume+0x8/0x148
> [  655.000732] LR is at omap_i2c_runtime_resume+0x8/0x148
> 
> Signed-off-by: Shubhrajyoti D <shubhrajyoti-l0cyMroinI0@public.gmane.org>
> ---
>  drivers/i2c/busses/i2c-omap.c |    4 ++--
>  1 files changed, 2 insertions(+), 2 deletions(-)
> 
> diff --git a/drivers/i2c/busses/i2c-omap.c b/drivers/i2c/busses/i2c-omap.c
> index c8e3886..0c593d4 100644
> --- a/drivers/i2c/busses/i2c-omap.c
> +++ b/drivers/i2c/busses/i2c-omap.c
> @@ -1217,8 +1217,6 @@ static int __devexit omap_i2c_remove(struct platform_device *pdev)
>  	struct omap_i2c_dev	*dev = platform_get_drvdata(pdev);
>  	int ret;
>  
> -	platform_set_drvdata(pdev, NULL);
> -
>  	i2c_del_adapter(&dev->adapter);
>  	ret = pm_runtime_get_sync(&pdev->dev);
>  	if (IS_ERR_VALUE(ret))
> @@ -1227,6 +1225,8 @@ static int __devexit omap_i2c_remove(struct platform_device *pdev)
>  	omap_i2c_write_reg(dev, OMAP_I2C_CON_REG, 0);
>  	pm_runtime_put(&pdev->dev);
>  	pm_runtime_disable(&pdev->dev);
> +	platform_set_drvdata(pdev, NULL);
> +
>  	return 0;
>  }

I think this patch is correct, because drvdata is used in the PM code of
the driver and thus cleared too early.

As such, this is a bugfix and should be not based on the big cleanup
since it should go into this rc series.

I will pick it as soon as the comments on the other patches are
answered.

-- 
Pengutronix e.K.                           | Wolfram Sang                |
Industrial Linux Solutions                 | http://www.pengutronix.de/  |

[-- Attachment #2: Digital signature --]
[-- Type: application/pgp-signature, Size: 198 bytes --]

  parent reply	other threads:[~2012-08-18 10:09 UTC|newest]

Thread overview: 14+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2012-08-09 13:37 [PATCH 0/6] I2C cleanup Shubhrajyoti D
     [not found] ` <1344519467-14295-1-git-send-email-shubhrajyoti-l0cyMroinI0@public.gmane.org>
2012-08-09 13:37   ` [PATCH 1/6] i2c: omap: Prevent NULL pointer dereference in remove Shubhrajyoti D
     [not found]     ` <1344519467-14295-2-git-send-email-shubhrajyoti-l0cyMroinI0@public.gmane.org>
2012-08-09 13:48       ` Shubhrajyoti Datta
2012-08-18 10:09       ` Wolfram Sang [this message]
     [not found]         ` <20120818100923.GD24812-bIcnvbaLZ9MEGnE8C9+IrQ@public.gmane.org>
2012-08-18 13:45           ` Shubhrajyoti Datta
     [not found]             ` <CAM=Q2csCuf1LBuf2T8wnthXC_eSxW_b88XmJ07jzegbJOr3xMg-JsoAwUIsXosN+BqQ9rBEUg@public.gmane.org>
2012-08-18 18:39               ` Wolfram Sang
2012-08-09 13:37   ` [PATCH 2/6] i2c-xiic: Fix a possible NULL pointer access Shubhrajyoti D
     [not found]     ` <1344519467-14295-3-git-send-email-shubhrajyoti-l0cyMroinI0@public.gmane.org>
2012-08-18 10:17       ` Wolfram Sang
     [not found]         ` <20120818101752.GE24812-bIcnvbaLZ9MEGnE8C9+IrQ@public.gmane.org>
2012-08-18 13:22           ` Shubhrajyoti Datta
     [not found]             ` <CAM=Q2cvebZc_3ja+K=4v+hC4ttf5r_jT=xVVtJ=kQtsRwdZtUA-JsoAwUIsXosN+BqQ9rBEUg@public.gmane.org>
2012-08-18 13:49               ` Shubhrajyoti Datta
2012-08-09 13:37   ` [PATCH 3/6] i2c: designware: " Shubhrajyoti D
2012-08-09 13:37   ` [PATCH 4/6] i2c: at91: " Shubhrajyoti D
2012-08-09 13:37   ` [PATCH 5/6] i2c-puv3: " Shubhrajyoti D
2012-08-09 13:37   ` [PATCH 6/6] i2c: davinci: " Shubhrajyoti D

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=20120818100923.GD24812@pengutronix.de \
    --to=w.sang-bicnvbalz9megne8c9+irq@public.gmane.org \
    --cc=linux-i2c-u79uwXL29TY76Z2rM5mHXA@public.gmane.org \
    --cc=shubhrajyoti-l0cyMroinI0@public.gmane.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 a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).