Patch "drm/msm/dpu: check for null return of devm_kzalloc() in dpu_writeback_init()" has been added to the 6.2-stable tree

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

 



This is a note to let you know that I've just added the patch titled

    drm/msm/dpu: check for null return of devm_kzalloc() in dpu_writeback_init()

to the 6.2-stable tree which can be found at:
    http://www.kernel.org/git/?p=linux/kernel/git/stable/stable-queue.git;a=summary

The filename of the patch is:
     drm-msm-dpu-check-for-null-return-of-devm_kzalloc-in.patch
and it can be found in the queue-6.2 subdirectory.

If you, or anyone else, feels it should not be added to the stable tree,
please let <stable@xxxxxxxxxxxxxxx> know about it.



commit 37b9100fe529f9678d4bcf0e4cb208d84bce57bd
Author: Hui Tang <tanghui20@xxxxxxxxxx>
Date:   Sat Nov 19 13:55:18 2022 +0800

    drm/msm/dpu: check for null return of devm_kzalloc() in dpu_writeback_init()
    
    [ Upstream commit 21e9a838f505178e109ccb3bf19d7808eb0326f4 ]
    
    Because of the possilble failure of devm_kzalloc(), dpu_wb_conn might
    be NULL and will cause null pointer dereference later.
    
    Therefore, it might be better to check it and directly return -ENOMEM.
    
    Fixes: 77b001acdcfe ("drm/msm/dpu: add the writeback connector layer")
    Signed-off-by: Hui Tang <tanghui20@xxxxxxxxxx>
    Reviewed-by: Abhinav Kumar <quic_abhinavk@xxxxxxxxxxx>
    Patchwork: https://patchwork.freedesktop.org/patch/512277/
    Link: https://lore.kernel.org/r/20221119055518.179937-1-tanghui20@xxxxxxxxxx
    [DB: fixed typo in commit message]
    Signed-off-by: Dmitry Baryshkov <dmitry.baryshkov@xxxxxxxxxx>
    Signed-off-by: Sasha Levin <sashal@xxxxxxxxxx>

diff --git a/drivers/gpu/drm/msm/disp/dpu1/dpu_writeback.c b/drivers/gpu/drm/msm/disp/dpu1/dpu_writeback.c
index 088ec990a2f26..2a5a68366582b 100644
--- a/drivers/gpu/drm/msm/disp/dpu1/dpu_writeback.c
+++ b/drivers/gpu/drm/msm/disp/dpu1/dpu_writeback.c
@@ -70,6 +70,8 @@ int dpu_writeback_init(struct drm_device *dev, struct drm_encoder *enc,
 	int rc = 0;
 
 	dpu_wb_conn = devm_kzalloc(dev->dev, sizeof(*dpu_wb_conn), GFP_KERNEL);
+	if (!dpu_wb_conn)
+		return -ENOMEM;
 
 	drm_connector_helper_add(&dpu_wb_conn->base.base, &dpu_wb_conn_helper_funcs);
 



[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[Index of Archives]     [Linux USB Devel]     [Linux Audio Users]     [Yosemite News]     [Linux Kernel]     [Linux SCSI]

  Powered by Linux