linux-kernel.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* [PATCH] misc: ocxl: fix possible double free in ocxl_file_register_afu
@ 2022-04-18  8:57 Hangyu Hua
  2022-04-19  9:09 ` Frederic Barrat
                   ` (2 more replies)
  0 siblings, 3 replies; 8+ messages in thread
From: Hangyu Hua @ 2022-04-18  8:57 UTC (permalink / raw)
  To: fbarrat, ajd, arnd, gregkh, mpe, alastair
  Cc: linuxppc-dev, linux-kernel, Hangyu Hua

info_release() will be called in device_unregister() when info->dev's
reference count is 0. So there is no need to call ocxl_afu_put() and
kfree() again.

Fix this by adding free_minor() and return to err_unregister error path.

Fixes: 75ca758adbaf ("ocxl: Create a clear delineation between ocxl backend & frontend")
Signed-off-by: Hangyu Hua <hbh25y@gmail.com>
---
 drivers/misc/ocxl/file.c | 2 ++
 1 file changed, 2 insertions(+)

diff --git a/drivers/misc/ocxl/file.c b/drivers/misc/ocxl/file.c
index d881f5e40ad9..6777c419a8da 100644
--- a/drivers/misc/ocxl/file.c
+++ b/drivers/misc/ocxl/file.c
@@ -556,7 +556,9 @@ int ocxl_file_register_afu(struct ocxl_afu *afu)
 
 err_unregister:
 	ocxl_sysfs_unregister_afu(info); // safe to call even if register failed
+	free_minor(info);
 	device_unregister(&info->dev);
+	return rc;
 err_put:
 	ocxl_afu_put(afu);
 	free_minor(info);
-- 
2.25.1


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

end of thread, other threads:[~2022-05-15 10:14 UTC | newest]

Thread overview: 8+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2022-04-18  8:57 [PATCH] misc: ocxl: fix possible double free in ocxl_file_register_afu Hangyu Hua
2022-04-19  9:09 ` Frederic Barrat
2022-04-19 11:02   ` Hangyu Hua
2022-04-20 22:54 ` Michael Ellerman
2022-04-21  2:35   ` Hangyu Hua
2022-04-21  7:51   ` Frederic Barrat
2022-04-22  9:36     ` Michael Ellerman
2022-05-15 10:12 ` Michael Ellerman

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).