projects
/
linux.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
3b054a1
)
drm/i915: Switch kunmap() to take the page not vaddr
author
Chris Wilson
<chris@chris-wilson.co.uk>
Mon, 25 Nov 2019 09:14:09 +0000
(09:14 +0000)
committer
Chris Wilson
<chris@chris-wilson.co.uk>
Mon, 25 Nov 2019 09:24:31 +0000
(09:24 +0000)
On converting from kunmap_atomic() to kunamp() one must remember the
latter takes the struct page, the former the vaddr.
Fixes: 48715f700174 ("drm/i915: Avoid atomic context for error capture")
Signed-off-by: Chris Wilson <chris@chris-wilson.co.uk>
Reviewed-by: Mika Kuoppala <mika.kuoppala@linux.intel.com>
Link:
https://patchwork.freedesktop.org/patch/msgid/20191125091409.1630385-1-chris@chris-wilson.co.uk
drivers/gpu/drm/i915/i915_gpu_error.c
patch
|
blob
|
history
diff --git
a/drivers/gpu/drm/i915/i915_gpu_error.c
b/drivers/gpu/drm/i915/i915_gpu_error.c
index 7118ecb7f1442526a0893c55c7ef15a11c1022c1..2b30a45fa25c483c352ebab5438edb550d768911 100644
(file)
--- a/
drivers/gpu/drm/i915/i915_gpu_error.c
+++ b/
drivers/gpu/drm/i915/i915_gpu_error.c
@@
-1045,7
+1045,7
@@
i915_error_object_create(struct drm_i915_private *i915,
s = kmap(page);
ret = compress_page(compress, s, dst);
- kunmap(
s
);
+ kunmap(
page
);
drm_clflush_pages(&page, 1);