public inbox for linux-kernel@vger.kernel.org
 help / color / mirror / Atom feed
* [PATCH] node: put_device after failing to device_register
@ 2022-06-14 14:30 Zhi Song
  2022-06-14 14:37 ` Greg KH
  0 siblings, 1 reply; 5+ messages in thread
From: Zhi Song @ 2022-06-14 14:30 UTC (permalink / raw)
  To: gregkh, rafael; +Cc: linux-kernel, Zhi Song

device_register() is used to register a device with the system.

We cannot directly free dev after calling this function,
even if it returns an error.

We should use put_device() to give up the reference
initialized in this function instead.

Signed-off-by: Zhi Song <zhi.song@bytedance.com>
---
 drivers/base/node.c | 1 +
 1 file changed, 1 insertion(+)

diff --git a/drivers/base/node.c b/drivers/base/node.c
index 0ac6376ef7a1..88a3337c546e 100644
--- a/drivers/base/node.c
+++ b/drivers/base/node.c
@@ -154,6 +154,7 @@ static struct node_access_nodes *node_init_node_access(struct node *node,
 	list_add_tail(&access_node->list_node, &node->access_list);
 	return access_node;
 free_name:
+	put_device(dev);
 	kfree_const(dev->kobj.name);
 free:
 	kfree(access_node);
-- 
2.30.2


^ permalink raw reply related	[flat|nested] 5+ messages in thread
* [PATCH] node: put_device after failing to device_register
@ 2022-06-14 16:00 Zhi Song
  2022-06-14 16:07 ` Greg KH
  0 siblings, 1 reply; 5+ messages in thread
From: Zhi Song @ 2022-06-14 16:00 UTC (permalink / raw)
  To: gregkh, rafael; +Cc: linux-kernel, Zhi Song

device_register() is used to register a device with the system.
We need to call put_device() to give up the reference initialized
in device_register() when it returns an error and this will clean
up correctly.

Signed-off-by: Zhi Song <zhi.song@bytedance.com>
---
 drivers/base/node.c | 1 +
 1 file changed, 1 insertion(+)

diff --git a/drivers/base/node.c b/drivers/base/node.c
index 0ac6376ef7a1..88a3337c546e 100644
--- a/drivers/base/node.c
+++ b/drivers/base/node.c
@@ -154,6 +154,7 @@ static struct node_access_nodes *node_init_node_access(struct node *node,
 	list_add_tail(&access_node->list_node, &node->access_list);
 	return access_node;
 free_name:
+	put_device(dev);
 	kfree_const(dev->kobj.name);
 free:
 	kfree(access_node);
-- 
2.30.2


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

end of thread, other threads:[~2022-06-22 17:12 UTC | newest]

Thread overview: 5+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2022-06-14 14:30 [PATCH] node: put_device after failing to device_register Zhi Song
2022-06-14 14:37 ` Greg KH
2022-06-22 17:12   ` [External] " Zhi Song
  -- strict thread matches above, loose matches on Subject: below --
2022-06-14 16:00 Zhi Song
2022-06-14 16:07 ` Greg KH

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox