RE: [PATCH] drm/amdgpu: add error handle to avoid out-of-bounds

2024-04-24 Thread Ma, Le
cher, Alexander ; Koenig, Christian > ; Zhou, Bob > Subject: [PATCH] drm/amdgpu: add error handle to avoid out-of-bounds > > if the sdma_v4_0_irq_id_to_seq return -EINVAL, the process should be stop to > avoid out-of-bounds read, so directly return -EINVAL. > > Signed-off-by: Bo

Re: [PATCH] drm/amdgpu: add error handle to avoid out-of-bounds

2024-04-23 Thread Christian König
Am 23.04.24 um 11:15 schrieb Bob Zhou: if the sdma_v4_0_irq_id_to_seq return -EINVAL, the process should be stop to avoid out-of-bounds read, so directly return -EINVAL. Signed-off-by: Bob Zhou Acked-by: Christian König --- drivers/gpu/drm/amd/amdgpu/sdma_v4_0.c | 3 +++ 1 file changed,

[PATCH] drm/amdgpu: add error handle to avoid out-of-bounds

2024-04-23 Thread Bob Zhou
if the sdma_v4_0_irq_id_to_seq return -EINVAL, the process should be stop to avoid out-of-bounds read, so directly return -EINVAL. Signed-off-by: Bob Zhou --- drivers/gpu/drm/amd/amdgpu/sdma_v4_0.c | 3 +++ 1 file changed, 3 insertions(+) diff --git a/drivers/gpu/drm/amd/amdgpu/sdma_v4_0.c b/d