drm/radeon: check the alloc_workqueue return value in radeon_crtc_init()
authorYang Yingliang <yangyingliang@huawei.com>
Thu, 30 Nov 2023 07:50:16 +0000 (15:50 +0800)
committerAlex Deucher <alexander.deucher@amd.com>
Wed, 6 Dec 2023 20:22:36 +0000 (15:22 -0500)
check the alloc_workqueue return value in radeon_crtc_init()
to avoid null-ptr-deref.

Fixes: fa7f517cb26e ("drm/radeon: rework page flip handling v4")
Signed-off-by: Yang Yingliang <yangyingliang@huawei.com>
Signed-off-by: Alex Deucher <alexander.deucher@amd.com>
drivers/gpu/drm/radeon/radeon_display.c

index 901e75ec70ff41797aed8a5fdb92d5e4beadb4b9..efd18c8d84c8330a810692ab98b6dfa935cfdb31 100644 (file)
@@ -687,11 +687,16 @@ static void radeon_crtc_init(struct drm_device *dev, int index)
        if (radeon_crtc == NULL)
                return;
 
+       radeon_crtc->flip_queue = alloc_workqueue("radeon-crtc", WQ_HIGHPRI, 0);
+       if (!radeon_crtc->flip_queue) {
+               kfree(radeon_crtc);
+               return;
+       }
+
        drm_crtc_init(dev, &radeon_crtc->base, &radeon_crtc_funcs);
 
        drm_mode_crtc_set_gamma_size(&radeon_crtc->base, 256);
        radeon_crtc->crtc_id = index;
-       radeon_crtc->flip_queue = alloc_workqueue("radeon-crtc", WQ_HIGHPRI, 0);
        rdev->mode_info.crtcs[index] = radeon_crtc;
 
        if (rdev->family >= CHIP_BONAIRE) {