Commit 803033c1 authored by Cong Liu's avatar Cong Liu Committed by Joonas Lahtinen
Browse files

drm/i915: Fix memory leaks in i915 selftests



This patch fixes memory leaks on error escapes in function fake_get_pages

Fixes: c3bfba9a ("drm/i915: Check for integer truncation on scatterlist creation")
Signed-off-by: default avatarCong Liu <liucong2@kylinos.cn>
Reviewed-by: default avatarAndrzej Hajda <andrzej.hajda@intel.com>
Reviewed-by: default avatarAndi Shyti <andi.shyti@linux.intel.com>
Signed-off-by: default avatarAndi Shyti <andi.shyti@linux.intel.com>
Link: https://patchwork.freedesktop.org/patch/msgid/20230414224109.1051922-1-andi.shyti@linux.intel.com


(cherry picked from commit 8bfbdadc)
Signed-off-by: default avatarJoonas Lahtinen <joonas.lahtinen@linux.intel.com>
parent 631420b0
Loading
Loading
Loading
Loading
+3 −1
Original line number Diff line number Diff line
@@ -69,8 +69,10 @@ static int fake_get_pages(struct drm_i915_gem_object *obj)

	rem = round_up(obj->base.size, BIT(31)) >> 31;
	/* restricted by sg_alloc_table */
	if (overflows_type(rem, unsigned int))
	if (overflows_type(rem, unsigned int)) {
		kfree(pages);
		return -E2BIG;
	}

	if (sg_alloc_table(pages, rem, GFP)) {
		kfree(pages);