mirror of https://gitee.com/openkylin/linux.git
drm/msm/disp/dpu: fix early dereference of physical encoder
This change validates the physical encoder before it is dereferenced. Signed-off-by: Jeykumar Sankaran <jsanka@codeaurora.org> Signed-off-by: Rob Clark <robdclark@gmail.com>
This commit is contained in:
parent
bec2dd6969
commit
77a209cd71
|
@ -2444,6 +2444,8 @@ int dpu_encoder_wait_for_event(struct drm_encoder *drm_enc,
|
||||||
|
|
||||||
for (i = 0; i < dpu_enc->num_phys_encs; i++) {
|
for (i = 0; i < dpu_enc->num_phys_encs; i++) {
|
||||||
struct dpu_encoder_phys *phys = dpu_enc->phys_encs[i];
|
struct dpu_encoder_phys *phys = dpu_enc->phys_encs[i];
|
||||||
|
if (!phys)
|
||||||
|
continue;
|
||||||
|
|
||||||
switch (event) {
|
switch (event) {
|
||||||
case MSM_ENC_COMMIT_DONE:
|
case MSM_ENC_COMMIT_DONE:
|
||||||
|
@ -2461,7 +2463,7 @@ int dpu_encoder_wait_for_event(struct drm_encoder *drm_enc,
|
||||||
return -EINVAL;
|
return -EINVAL;
|
||||||
};
|
};
|
||||||
|
|
||||||
if (phys && fn_wait) {
|
if (fn_wait) {
|
||||||
DPU_ATRACE_BEGIN("wait_for_completion_event");
|
DPU_ATRACE_BEGIN("wait_for_completion_event");
|
||||||
ret = fn_wait(phys);
|
ret = fn_wait(phys);
|
||||||
DPU_ATRACE_END("wait_for_completion_event");
|
DPU_ATRACE_END("wait_for_completion_event");
|
||||||
|
|
Loading…
Reference in New Issue