projects
/
openwrt
/
staging
/
blogic.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
e16f4c3
)
drm/i915/selftests: Skip all request selftests when wedged
author
Chris Wilson
<
[email protected]
>
Fri, 6 Jul 2018 06:53:10 +0000
(07:53 +0100)
committer
Chris Wilson
<
[email protected]
>
Fri, 6 Jul 2018 10:24:42 +0000
(11:24 +0100)
If the GPU is irrecoverably wedge, we cannot submit any request and so
all of the request selftests will expectedly fail. Skip over them.
Signed-off-by: Chris Wilson <
[email protected]
>
Reviewed-by: Matthew Auld <
[email protected]
>
Link:
https://patchwork.freedesktop.org/patch/msgid/
[email protected]
drivers/gpu/drm/i915/selftests/i915_request.c
patch
|
blob
|
history
diff --git
a/drivers/gpu/drm/i915/selftests/i915_request.c
b/drivers/gpu/drm/i915/selftests/i915_request.c
index e44aa3335d9edeaf6c2406b01b228ed2ec56794d..cc27edc40356c6cd0a202eef2976854bdbfa4d25 100644
(file)
--- a/
drivers/gpu/drm/i915/selftests/i915_request.c
+++ b/
drivers/gpu/drm/i915/selftests/i915_request.c
@@
-859,5
+859,9
@@
int i915_request_live_selftests(struct drm_i915_private *i915)
SUBTEST(live_sequential_engines),
SUBTEST(live_empty_request),
};
+
+ if (i915_terminally_wedged(&i915->gpu_error))
+ return 0;
+
return i915_subtests(tests, i915);
}