Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit d2933a5b authored by Damien Lespiau's avatar Damien Lespiau Committed by Daniel Vetter
Browse files

drm/i915: Don't call sg_free_table() if sg_alloc_table() fails



One needs to call __sg_free_table() if __sg_alloc_table() fails, but
sg_alloc_table() does that for us already.

Signed-off-by: default avatarDamien Lespiau <damien.lespiau@intel.com>
Reviewd-by: default avatarChris Wilson <chris@chris-wilson.co.uk>
Signed-off-by: default avatarDaniel Vetter <daniel.vetter@ffwll.ch>
parent 81b5c7bc
Loading
Loading
Loading
Loading
+0 −1
Original line number Diff line number Diff line
@@ -1774,7 +1774,6 @@ i915_gem_object_get_pages_gtt(struct drm_i915_gem_object *obj)

	page_count = obj->base.size / PAGE_SIZE;
	if (sg_alloc_table(st, page_count, GFP_KERNEL)) {
		sg_free_table(st);
		kfree(st);
		return -ENOMEM;
	}