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

Commit 985b823b authored by Linus Torvalds's avatar Linus Torvalds
Browse files

drm/i915: fix hibernation since i915 self-reclaim fixes

Since commit 4bdadb97 ("drm/i915:
Selectively enable self-reclaim"), we've been passing GFP_MOVABLE to the
i915 page allocator where we weren't before due to some over-eager
removal of the page mapping gfp_flags games the code used to play.

This caused hibernate on Intel hardware to result in a lot of memory
corruptions on resume.  See for example

  http://bugzilla.kernel.org/show_bug.cgi?id=13811



Reported-by: Evengi Golov (in bugzilla)
Signed-off-by: default avatarDave Airlie <airlied@redhat.com>
Tested-by: default avatarM. Vefa Bicakci <bicave@superonline.com>
Cc: stable@kernel.org
Cc: Chris Wilson <chris@chris-wilson.co.uk>
Cc: KOSAKI Motohiro <kosaki.motohiro@jp.fujitsu.com>
Cc: Hugh Dickins <hugh.dickins@tiscali.co.uk>
Signed-off-by: default avatarLinus Torvalds <torvalds@linux-foundation.org>
parent 9fbd7f9d
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -2239,7 +2239,7 @@ i915_gem_object_get_pages(struct drm_gem_object *obj,
	mapping = inode->i_mapping;
	for (i = 0; i < page_count; i++) {
		page = read_cache_page_gfp(mapping, i,
					   mapping_gfp_mask (mapping) |
					   GFP_HIGHUSER |
					   __GFP_COLD |
					   gfpmask);
		if (IS_ERR(page))