All of lore.kernel.org
 help / color / mirror / Atom feed
From: Sebastian Andrzej Siewior <bigeasy@linutronix.de>
To: Stoyan Gaydarov <sgayda2@uiuc.edu>
Cc: kay.sievers@vrfy.org, David.Woodhouse@intel.com, gregkh@suse.de,
	linux-kernel@vger.kernel.org, linux-mtd@lists.infradead.org,
	sr@denx.de
Subject: Re: [PATCH] [mtd] fixed faulty check
Date: Thu, 30 Jul 2009 15:03:35 +0200	[thread overview]
Message-ID: <4A719A27.8050509@linutronix.de> (raw)
In-Reply-To: <1248958178-22599-1-git-send-email-sgayda2@uiuc.edu>

Stoyan Gaydarov wrote:
> Resubmit of a patch with some additions, see http://lkml.org/lkml/2009/7/30/97
> 
Please add a description of the path here. That's the place where people
are looking for them. The link might be a an additional reference.

> Signed-off-by: Stoyan Gaydarov <sgayda2@uiuc.edu>
> ---
>  drivers/mtd/maps/physmap_of.c |    3 ++-
>  1 files changed, 2 insertions(+), 1 deletions(-)
> 
> diff --git a/drivers/mtd/maps/physmap_of.c b/drivers/mtd/maps/physmap_of.c
> index 39d357b..e7ab5f0 100644
> --- a/drivers/mtd/maps/physmap_of.c
> +++ b/drivers/mtd/maps/physmap_of.c
> @@ -215,7 +215,8 @@ static int __devinit of_flash_probe(struct of_device *dev,
>  		goto err_out;
>  
>  	mtd_list = kzalloc(sizeof(struct mtd_info) * count, GFP_KERNEL);
> -	if (!info)
> +	if (!mtd_list)
> +		kfree(info);
>  		goto err_out;

This is not python, you have to be explicit about braces. Now your code
looks like this:

   	mtd_list = kzalloc(sizeof(struct mtd_info) * count, GFP_KERNEL);
	if (!mtd_list)
		kfree(info);
	goto err_out;
>  
>  	dev_set_drvdata(&dev->dev, info);


Sebastian

WARNING: multiple messages have this Message-ID (diff)
From: Sebastian Andrzej Siewior <bigeasy@linutronix.de>
To: Stoyan Gaydarov <sgayda2@uiuc.edu>
Cc: linux-kernel@vger.kernel.org, David.Woodhouse@intel.com,
	sr@denx.de, kay.sievers@vrfy.org, gregkh@suse.de,
	linux-mtd@lists.infradead.org
Subject: Re: [PATCH] [mtd] fixed faulty check
Date: Thu, 30 Jul 2009 15:03:35 +0200	[thread overview]
Message-ID: <4A719A27.8050509@linutronix.de> (raw)
In-Reply-To: <1248958178-22599-1-git-send-email-sgayda2@uiuc.edu>

Stoyan Gaydarov wrote:
> Resubmit of a patch with some additions, see http://lkml.org/lkml/2009/7/30/97
> 
Please add a description of the path here. That's the place where people
are looking for them. The link might be a an additional reference.

> Signed-off-by: Stoyan Gaydarov <sgayda2@uiuc.edu>
> ---
>  drivers/mtd/maps/physmap_of.c |    3 ++-
>  1 files changed, 2 insertions(+), 1 deletions(-)
> 
> diff --git a/drivers/mtd/maps/physmap_of.c b/drivers/mtd/maps/physmap_of.c
> index 39d357b..e7ab5f0 100644
> --- a/drivers/mtd/maps/physmap_of.c
> +++ b/drivers/mtd/maps/physmap_of.c
> @@ -215,7 +215,8 @@ static int __devinit of_flash_probe(struct of_device *dev,
>  		goto err_out;
>  
>  	mtd_list = kzalloc(sizeof(struct mtd_info) * count, GFP_KERNEL);
> -	if (!info)
> +	if (!mtd_list)
> +		kfree(info);
>  		goto err_out;

This is not python, you have to be explicit about braces. Now your code
looks like this:

   	mtd_list = kzalloc(sizeof(struct mtd_info) * count, GFP_KERNEL);
	if (!mtd_list)
		kfree(info);
	goto err_out;
>  
>  	dev_set_drvdata(&dev->dev, info);


Sebastian

  reply	other threads:[~2009-07-30 13:03 UTC|newest]

Thread overview: 20+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2009-07-30 12:49 [PATCH] [mtd] fixed faulty check Stoyan Gaydarov
2009-07-30 12:49 ` Stoyan Gaydarov
2009-07-30 13:03 ` Sebastian Andrzej Siewior [this message]
2009-07-30 13:03   ` Sebastian Andrzej Siewior
2009-07-30 13:39   ` vimal singh
2009-07-30 13:39     ` vimal singh
2009-07-30 13:47     ` Sebastian Andrzej Siewior
2009-07-30 13:47       ` Sebastian Andrzej Siewior
2009-07-30 14:14       ` vimal singh
2009-07-30 14:14         ` vimal singh
     [not found]         ` <4A71AD5E.4080704@uiuc.edu>
2009-07-30 14:34           ` vimal singh
2009-07-30 14:34             ` vimal singh
2009-07-30 14:53           ` Sebastian Andrzej Siewior
2009-07-30 14:53             ` Sebastian Andrzej Siewior
2009-07-30 15:13             ` vimal singh
2009-07-30 15:13               ` vimal singh
     [not found]               ` <4A71B940.80607@uiuc.edu>
2009-07-30 15:24                 ` vimal singh
2009-07-30 15:24                   ` vimal singh
  -- strict thread matches above, loose matches on Subject: below --
2009-07-30 14:47 Stoyan Gaydarov
2009-07-30 15:07 ` vimal singh

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=4A719A27.8050509@linutronix.de \
    --to=bigeasy@linutronix.de \
    --cc=David.Woodhouse@intel.com \
    --cc=gregkh@suse.de \
    --cc=kay.sievers@vrfy.org \
    --cc=linux-kernel@vger.kernel.org \
    --cc=linux-mtd@lists.infradead.org \
    --cc=sgayda2@uiuc.edu \
    --cc=sr@denx.de \
    /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.