]> git.ipfire.org Git - thirdparty/kernel/linux.git/commitdiff
drm/gud: Use kmalloc_array() instead of kmalloc()
authorMehdi Ben Hadj Khelifa <mehdi.benhadjkhelifa@gmail.com>
Tue, 7 Oct 2025 08:32:40 +0000 (09:32 +0100)
committerThomas Zimmermann <tzimmermann@suse.de>
Fri, 10 Oct 2025 07:28:30 +0000 (09:28 +0200)
Replace kmalloc with kmalloc array in drm/gud/gud_pipe.c since the
calculation inside kmalloc is dynamic 'width * height'

Signed-off-by: Mehdi Ben Hadj Khelifa <mehdi.benhadjkhelifa@gmail.com>
Acked-by: Ruben Wauters <rubenru09@aol.com>
Acked-by: Thomas Zimmermann <tzimmermann@suse.de>
Signed-off-by: Thomas Zimmermann <tzimmermann@suse.de>
Link: https://lore.kernel.org/r/20251007083320.29018-1-mehdi.benhadjkhelifa@gmail.com
drivers/gpu/drm/gud/gud_pipe.c

index 3a208e956dff76cf4dce6d1857b2ec57c0ac2a03..76d77a736d84a8e7ec77256d08133dd6826c2da0 100644 (file)
@@ -69,7 +69,7 @@ static size_t gud_xrgb8888_to_r124(u8 *dst, const struct drm_format_info *format
        height = drm_rect_height(rect);
        len = drm_format_info_min_pitch(format, 0, width) * height;
 
-       buf = kmalloc(width * height, GFP_KERNEL);
+       buf = kmalloc_array(height, width, GFP_KERNEL);
        if (!buf)
                return 0;