All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH] md: Ensure mddev object is cleaned up with kobject_put on error path
@ 2022-07-13 21:06 Logan Gunthorpe
  2022-07-14  5:06 ` Christoph Hellwig
  0 siblings, 1 reply; 2+ messages in thread
From: Logan Gunthorpe @ 2022-07-13 21:06 UTC (permalink / raw)
  To: Song Liu; +Cc: Christoph Hellwig, linux-raid, linux-block, Logan Gunthorpe

The documentation for kobject_init() clearly states that the new
object must be cleaned up with a call to kobject_put(), not a
kfree() call directly.

However, the error path in mddev_alloc() frees the newly allocated
mddev object directly with kfree() after kobject_init() is called
in mddev_init().

Fix this by changing the kfree() call to a kobject_put().

Signed-off-by: Logan Gunthorpe <logang@deltatee.com>
---
 drivers/md/md.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/drivers/md/md.c b/drivers/md/md.c
index 198d4ceae55a..d9e0e38be38c 100644
--- a/drivers/md/md.c
+++ b/drivers/md/md.c
@@ -769,7 +769,7 @@ static struct mddev *mddev_alloc(dev_t unit)
 	return new;
 out_free_new:
 	spin_unlock(&all_mddevs_lock);
-	kfree(new);
+	kobject_put(&new->kobj);
 	return ERR_PTR(error);
 }
 

base-commit: 922f4b5c75aa13532382ffb4964d2d12ad98747e
-- 
2.30.2


^ permalink raw reply related	[flat|nested] 2+ messages in thread

* Re: [PATCH] md: Ensure mddev object is cleaned up with kobject_put on error path
  2022-07-13 21:06 [PATCH] md: Ensure mddev object is cleaned up with kobject_put on error path Logan Gunthorpe
@ 2022-07-14  5:06 ` Christoph Hellwig
  0 siblings, 0 replies; 2+ messages in thread
From: Christoph Hellwig @ 2022-07-14  5:06 UTC (permalink / raw)
  To: Logan Gunthorpe; +Cc: Song Liu, Christoph Hellwig, linux-raid, linux-block

On Wed, Jul 13, 2022 at 03:06:23PM -0600, Logan Gunthorpe wrote:
> The documentation for kobject_init() clearly states that the new
> object must be cleaned up with a call to kobject_put(), not a
> kfree() call directly.
> 
> However, the error path in mddev_alloc() frees the newly allocated
> mddev object directly with kfree() after kobject_init() is called
> in mddev_init().
> 
> Fix this by changing the kfree() call to a kobject_put().

I think the right answer is to only initialize the kobject just
before we add it.  I'll send an updated patch for that in a bit.

^ permalink raw reply	[flat|nested] 2+ messages in thread

end of thread, other threads:[~2022-07-14  5:08 UTC | newest]

Thread overview: 2+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2022-07-13 21:06 [PATCH] md: Ensure mddev object is cleaned up with kobject_put on error path Logan Gunthorpe
2022-07-14  5:06 ` Christoph Hellwig

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.