Re: [PATCH] md/bitmap: call bitmap_destroy in case bitmap_create failed

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

 



On Mon, Mar 28, 2016 at 11:27:26AM +0800, Guoqing Jiang wrote:
> 
> 
> On 03/26/2016 06:02 AM, Shaohua Li wrote:
> >On Fri, Mar 25, 2016 at 07:00:14PM +0800, Guoqing Jiang wrote:
> >>If bitmap_create returns an error, bitmap_destroy must be
> >>called to do clean up.
> >>
> >>Signed-off-by: Guoqing Jiang <gqjiang@xxxxxxxx>
> >>---
> >>  drivers/md/bitmap.c | 14 ++++++++------
> >>  1 file changed, 8 insertions(+), 6 deletions(-)
> >>
> >>diff --git a/drivers/md/bitmap.c b/drivers/md/bitmap.c
> >>index 7df6b4f..ba908e7 100644
> >>--- a/drivers/md/bitmap.c
> >>+++ b/drivers/md/bitmap.c
> >>@@ -1865,8 +1865,10 @@ int bitmap_copy_from_slot(struct mddev *mddev, int slot,
> >>  	struct bitmap_counts *counts;
> >>  	struct bitmap *bitmap = bitmap_create(mddev, slot);
> >>-	if (IS_ERR(bitmap))
> >>+	if (IS_ERR(bitmap)) {
> >>+		bitmap_destroy(mddev);
> >>  		return PTR_ERR(bitmap);
> >>+	}
> >bitmap_create doesn't set mddev->bitmap, so bitmap_destroy will do nothing.
> >is this because of reference leak of sysfs_can_clear?
> 
> Yes, use bitmap_free should be ok here since mddev->bitmap is not set.
> 
> >can we move sysfs_put(bitmap->sysfs_can_clear); to bitmap_free?
> 
> Do you mean move sysfs_put from bitmap_destroy to bitmap_free?
> I guess it could be ok. Also we need make minor change to the comment.

right. Just free the reference of sysfs_can_clear and set it to NULL. I think
that will fix your issue.

> /*
>   * initialize the bitmap structure
>   * if this returns an error, bitmap_destroy must be called to do clean up
> + * once mddev->bitmap is set
>   */
>  struct bitmap *bitmap_create(struct mddev *mddev, int slot)

please also fix the comment.

Thanks,
Shaohua
--
To unsubscribe from this list: send the line "unsubscribe linux-raid" in
the body of a message to majordomo@xxxxxxxxxxxxxxx
More majordomo info at  http://vger.kernel.org/majordomo-info.html



[Index of Archives]     [Linux RAID Wiki]     [ATA RAID]     [Linux SCSI Target Infrastructure]     [Linux Block]     [Linux IDE]     [Linux SCSI]     [Linux Hams]     [Device Mapper]     [Device Mapper Cryptographics]     [Kernel]     [Linux Admin]     [Linux Net]     [GFS]     [RPM]     [git]     [Yosemite Forum]


  Powered by Linux