linux-raid.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
From: NeilBrown <neilb@suse.de>
To: majianpeng <majianpeng@gmail.com>
Cc: linux-raid <linux-raid@vger.kernel.org>
Subject: Re: md/raid1: If md_integrity_register() failed,run() must  free the mem
Date: Tue, 27 Mar 2012 13:18:42 +1100	[thread overview]
Message-ID: <20120327131842.707f6c44@notabene.brown> (raw)
In-Reply-To: <201203231030548909882@gmail.com>

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

On Fri, 23 Mar 2012 10:30:59 +0800 "majianpeng" <majianpeng@gmail.com> wrote:

> >From 8a7f9d02f3e7151ecfd05ca9b1734d6e62414c03 Mon Sep 17 00:00:00 2001
> From: majianpeng <majianpeng@gmail.com>
> Date: Fri, 23 Mar 2012 10:25:41 +0800
> Subject: [PATCH] md/raid1: If md_integrity_register() failed,run() must  free
>  the mem.
> 
> 
> Signed-off-by: majianpeng <majianpeng@gmail.com>
> ---
>  drivers/md/raid1.c |   14 +++++++++++++-
>  1 files changed, 13 insertions(+), 1 deletions(-)
> 
> diff --git a/drivers/md/raid1.c b/drivers/md/raid1.c
> index 4a40a20..f71d8a0 100644
> --- a/drivers/md/raid1.c
> +++ b/drivers/md/raid1.c
> @@ -2641,6 +2641,7 @@ static int run(struct mddev *mddev)
>  	struct r1conf *conf;
>  	int i;
>  	struct md_rdev *rdev;
> +	int ret;
>  
>  	if (mddev->level != 1) {
>  		printk(KERN_ERR "md/raid1:%s: raid level not set to mirroring (%d)\n",
> @@ -2705,7 +2706,18 @@ static int run(struct mddev *mddev)
>  		mddev->queue->backing_dev_info.congested_data = mddev;
>  		blk_queue_merge_bvec(mddev->queue, raid1_mergeable_bvec);
>  	}
> -	return md_integrity_register(mddev);
> +
> +	ret =  md_integrity_register(mddev);
> +	if (ret) {
> +		md_unregister_thread(&mddev->thread);
> +		if (conf->r1bio_pool)
> +			mempool_destroy(conf->r1bio_pool);
> +		kfree(conf->mirrors);
> +		kfree(conf->poolinfo);
> +		kfree(conf);
> +		mddev->private = NULL;
> +	}
> +	return ret;
>  }
>  
>  static int stop(struct mddev *mddev)


applied, thanks.

Again, I changed it to just call 'stop' instead of duplicating the code.

NeilBrown

[-- Attachment #2: signature.asc --]
[-- Type: application/pgp-signature, Size: 828 bytes --]

      reply	other threads:[~2012-03-27  2:18 UTC|newest]

Thread overview: 2+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2012-03-23  2:30 md/raid1: If md_integrity_register() failed,run() must free the mem majianpeng
2012-03-27  2:18 ` NeilBrown [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=20120327131842.707f6c44@notabene.brown \
    --to=neilb@suse.de \
    --cc=linux-raid@vger.kernel.org \
    --cc=majianpeng@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 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).