All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH v2] lib/string_helpers: fix not adding strarray to device's resource list.
@ 2022-05-06  7:36 Puyou Lu
  2022-05-06  8:12 ` Andy Shevchenko
  2022-05-07 18:45 ` Andrew Morton
  0 siblings, 2 replies; 4+ messages in thread
From: Puyou Lu @ 2022-05-06  7:36 UTC (permalink / raw)
  Cc: Puyou Lu, Andy Shevchenko, Andrew Morton, Kees Cook, Petr Mladek,
	Linus Walleij, Guenter Roeck, Chris Down, linux-kernel

Add allocated strarray to device's resource list. This is a must to
automatically release strarray when the device disappears.

Fixes: acdb89b6c87a ("lib/string_helpers: Introduce managed variant of kasprintf_strarray()")
Signed-off-by: Puyou Lu <puyou.lu@gmail.com>

---

Change since v1:
also set 'n' of strarray https://lore.kernel.org/lkml/20220506022845.26750-1-puyou.lu@gmail.com/

---
 lib/string_helpers.c | 3 +++
 1 file changed, 3 insertions(+)

diff --git a/lib/string_helpers.c b/lib/string_helpers.c
index 4f877e9551d5..5ed3beb066e6 100644
--- a/lib/string_helpers.c
+++ b/lib/string_helpers.c
@@ -757,6 +757,9 @@ char **devm_kasprintf_strarray(struct device *dev, const char *prefix, size_t n)
 		return ERR_PTR(-ENOMEM);
 	}
 
+	ptr->n = n;
+	devres_add(dev, ptr);
+
 	return ptr->array;
 }
 EXPORT_SYMBOL_GPL(devm_kasprintf_strarray);
-- 
2.17.1


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

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

Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2022-05-06  7:36 [PATCH v2] lib/string_helpers: fix not adding strarray to device's resource list Puyou Lu
2022-05-06  8:12 ` Andy Shevchenko
2022-05-07 18:45 ` Andrew Morton
2022-05-08 10:20   ` Andy Shevchenko

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.