All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH v2] ndctl: fix libdaxctl memory leak
@ 2018-04-10 17:17 Dave Jiang
  2018-04-10 17:38 ` Plewa, Lukasz
  0 siblings, 1 reply; 8+ messages in thread
From: Dave Jiang @ 2018-04-10 17:17 UTC (permalink / raw)
  To: vishal.l.verma, dan.j.williams; +Cc: linux-nvdimm

When daxctl_unref is releasing the context, we should make sure that the
regions and devices are also being released. free_region() will free
all the devices under the region.

Signed-off-by: Dave Jiang <dave.jiang@intel.com>
---

v2: Use list_for_each_safe() for region removal. (Dan)

 daxctl/lib/libdaxctl.c |    8 ++++++++
 1 file changed, 8 insertions(+)

diff --git a/daxctl/lib/libdaxctl.c b/daxctl/lib/libdaxctl.c
index 9e503201..22f4210a 100644
--- a/daxctl/lib/libdaxctl.c
+++ b/daxctl/lib/libdaxctl.c
@@ -29,6 +29,8 @@
 
 static const char *attrs = "dax_region";
 
+static void free_region(struct daxctl_region *region, struct list_head *head);
+
 /**
  * struct daxctl_ctx - library user context to find "nd" instances
  *
@@ -119,11 +121,17 @@ DAXCTL_EXPORT struct daxctl_ctx *daxctl_ref(struct daxctl_ctx *ctx)
  */
 DAXCTL_EXPORT void daxctl_unref(struct daxctl_ctx *ctx)
 {
+	struct daxctl_region *region, *_r;
+
 	if (ctx == NULL)
 		return;
 	ctx->refcount--;
 	if (ctx->refcount > 0)
 		return;
+
+	list_for_each_safe(&ctx->regions, region, _r, list)
+		free_region(region, &ctx->regions);
+
 	info(ctx, "context %p released\n", ctx);
 	free(ctx);
 }

_______________________________________________
Linux-nvdimm mailing list
Linux-nvdimm@lists.01.org
https://lists.01.org/mailman/listinfo/linux-nvdimm

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

end of thread, other threads:[~2018-04-16  7:37 UTC | newest]

Thread overview: 8+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2018-04-10 17:17 [PATCH v2] ndctl: fix libdaxctl memory leak Dave Jiang
2018-04-10 17:38 ` Plewa, Lukasz
2018-04-10 17:43   ` Dave Jiang
2018-04-13  2:30     ` Verma, Vishal L
2018-04-13  2:39       ` Jiang, Dave
2018-04-13  6:57         ` Plewa, Lukasz
2018-04-13 15:09           ` Dave Jiang
2018-04-16  7:37             ` Plewa, Lukasz

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.