]> git.ipfire.org Git - thirdparty/kernel/stable.git/commitdiff
drm/panthor: Handle errors returned by drm_sched_entity_init()
authorBoris Brezillon <boris.brezillon@collabora.com>
Fri, 31 Oct 2025 16:03:17 +0000 (17:03 +0100)
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>
Thu, 18 Dec 2025 12:54:53 +0000 (13:54 +0100)
[ Upstream commit bb7939e332c64c4ef33974a0eae4f3841acfa8eb ]

In practice it's not going to fail because we're passing the current
sanity checks done by drm_sched_entity_init(), and that's the only
reason it would return an error, but better safe than sorry.

Fixes: de8548813824 ("drm/panthor: Add the scheduler logical block")
Reviewed-by: Liviu Dudau <liviu.dudau@arm.com>
Signed-off-by: Boris Brezillon <boris.brezillon@collabora.com>
Link: https://patch.msgid.link/20251031160318.832427-1-boris.brezillon@collabora.com
Signed-off-by: Liviu Dudau <liviu.dudau@arm.com>
Signed-off-by: Sasha Levin <sashal@kernel.org>
drivers/gpu/drm/panthor/panthor_sched.c

index 0bc5b69ec636b44b515280cadde667fc8bc54d6f..875b9a78d34bc60ce5f2859d8b63259ff69a6781 100644 (file)
@@ -3307,6 +3307,8 @@ group_create_queue(struct panthor_group *group,
 
        drm_sched = &queue->scheduler;
        ret = drm_sched_entity_init(&queue->entity, 0, &drm_sched, 1, NULL);
+       if (ret)
+               goto err_free_queue;
 
        return queue;