[<prev] [next>] [day] [month] [year] [list]
Message-Id: <20250922185635.50828-1-smokthar925@gmail.com>
Date: Mon, 22 Sep 2025 19:56:35 +0100
From: Moktar SELLAMI <smokthar925@...il.com>
To: alexander.deucher@....com,
christian.koenig@....com,
airlied@...il.com,
simona@...ll.ch,
Hawking.Zhang@....com,
tao.zhou1@....com,
lijo.lazar@....com,
ganglxie@....com,
victor.skvortsov@....com,
candice.li@....com,
amd-gfx@...ts.freedesktop.org,
dri-devel@...ts.freedesktop.org,
linux-kernel@...r.kernel.org,
linux-kernel-mentees@...ts.linuxfoundation.org,
skhan@...uxfoundation.org,
david.hunter.linux@...il.com
Cc: Moktar SELLAMI <smokthar925@...il.com>
Subject: [PATCH] drm/amd/amdgpu: use kmalloc_array instead of kmalloc
Replace kmalloc -> kmalloc_array in drm/amd/amdgpu/amdgpu_ras.c .
As per said in the Documentation/process/deprecated.rst, dynamic size
calculation should not be performed in memory allocator function
arguments due to the risk of overflow.
Signed-off-by: Moktar SELLAMI <smokthar925@...il.com>
---
drivers/gpu/drm/amd/amdgpu/amdgpu_ras.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/drivers/gpu/drm/amd/amdgpu/amdgpu_ras.c b/drivers/gpu/drm/amd/amdgpu/amdgpu_ras.c
index 540817e296da..8dbb9e349a8e 100644
--- a/drivers/gpu/drm/amd/amdgpu/amdgpu_ras.c
+++ b/drivers/gpu/drm/amd/amdgpu/amdgpu_ras.c
@@ -2566,7 +2566,7 @@ static int amdgpu_ras_badpages_read(struct amdgpu_device *adev,
goto out;
}
- *bps = kmalloc(sizeof(struct ras_badpage) * data->count, GFP_KERNEL);
+ *bps = kmalloc_array(data->count, sizeof(struct ras_badpage), GFP_KERNEL);
if (!*bps) {
ret = -ENOMEM;
goto out;
--
2.34.1
Powered by blists - more mailing lists