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

Commit ff75b9bc authored by Chris Wilson's avatar Chris Wilson
Browse files

drm/i915: Fix typo from e5281ccd in i915_gem_attach_phys_object()



Accessing the uninitialised obj->pages instead of the local page lead to
an OOPs.

Reported-by: default avatarXavier Chantry <chantry.xavier@gmail.com>
Signed-off-by: default avatarChris Wilson <chris@chris-wilson.co.uk>
parent add354dd
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -4925,7 +4925,7 @@ i915_gem_attach_phys_object(struct drm_device *dev,
		if (IS_ERR(page))
			return PTR_ERR(page);

		src = kmap_atomic(obj_priv->pages[i]);
		src = kmap_atomic(page);
		dst = obj_priv->phys_obj->handle->vaddr + (i * PAGE_SIZE);
		memcpy(dst, src, PAGE_SIZE);
		kunmap_atomic(src);