Skip to content

Commit

Permalink
drm/amdkfd: Fix reference count leaks.
Browse files Browse the repository at this point in the history
[ Upstream commit 20eca01 ]

kobject_init_and_add() takes reference even when it fails.
If this function returns an error, kobject_put() must be called to
properly clean up the memory associated with the object.

Signed-off-by: Qiushi Wu <wu000273@umn.edu>
Reviewed-by: Felix Kuehling <Felix.Kuehling@amd.com>
Signed-off-by: Felix Kuehling <Felix.Kuehling@amd.com>
Signed-off-by: Alex Deucher <alexander.deucher@amd.com>
Signed-off-by: Sasha Levin <sashal@kernel.org>
  • Loading branch information
QiushiWu authored and gregkh committed Sep 3, 2020
1 parent 1174ed7 commit 9c88b27
Showing 1 changed file with 15 additions and 5 deletions.
20 changes: 15 additions & 5 deletions drivers/gpu/drm/amd/amdkfd/kfd_topology.c
Expand Up @@ -612,8 +612,10 @@ static int kfd_build_sysfs_node_entry(struct kfd_topology_device *dev,

ret = kobject_init_and_add(dev->kobj_node, &node_type,
sys_props.kobj_nodes, "%d", id);
if (ret < 0)
if (ret < 0) {
kobject_put(dev->kobj_node);
return ret;
}

dev->kobj_mem = kobject_create_and_add("mem_banks", dev->kobj_node);
if (!dev->kobj_mem)
Expand Down Expand Up @@ -660,8 +662,10 @@ static int kfd_build_sysfs_node_entry(struct kfd_topology_device *dev,
return -ENOMEM;
ret = kobject_init_and_add(mem->kobj, &mem_type,
dev->kobj_mem, "%d", i);
if (ret < 0)
if (ret < 0) {
kobject_put(mem->kobj);
return ret;
}

mem->attr.name = "properties";
mem->attr.mode = KFD_SYSFS_FILE_MODE;
Expand All @@ -679,8 +683,10 @@ static int kfd_build_sysfs_node_entry(struct kfd_topology_device *dev,
return -ENOMEM;
ret = kobject_init_and_add(cache->kobj, &cache_type,
dev->kobj_cache, "%d", i);
if (ret < 0)
if (ret < 0) {
kobject_put(cache->kobj);
return ret;
}

cache->attr.name = "properties";
cache->attr.mode = KFD_SYSFS_FILE_MODE;
Expand All @@ -698,8 +704,10 @@ static int kfd_build_sysfs_node_entry(struct kfd_topology_device *dev,
return -ENOMEM;
ret = kobject_init_and_add(iolink->kobj, &iolink_type,
dev->kobj_iolink, "%d", i);
if (ret < 0)
if (ret < 0) {
kobject_put(iolink->kobj);
return ret;
}

iolink->attr.name = "properties";
iolink->attr.mode = KFD_SYSFS_FILE_MODE;
Expand Down Expand Up @@ -779,8 +787,10 @@ static int kfd_topology_update_sysfs(void)
ret = kobject_init_and_add(sys_props.kobj_topology,
&sysprops_type, &kfd_device->kobj,
"topology");
if (ret < 0)
if (ret < 0) {
kobject_put(sys_props.kobj_topology);
return ret;
}

sys_props.kobj_nodes = kobject_create_and_add("nodes",
sys_props.kobj_topology);
Expand Down

0 comments on commit 9c88b27

Please sign in to comment.