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:
d51dafa
)
drm/i915: Assert that we do create the deferred context
author
Chris Wilson
<chris@chris-wilson.co.uk>
Thu, 5 Jan 2017 15:30:20 +0000
(15:30 +0000)
committer
Chris Wilson
<chris@chris-wilson.co.uk>
Thu, 5 Jan 2017 15:34:41 +0000
(15:34 +0000)
In order to convince static analyzers that the allocation function
returns an error or sets ce->state, assert that it is set afterwards.
Signed-off-by: Chris Wilson <chris@chris-wilson.co.uk>
Reviewed-by: Tvrtko Ursulin <tvrtko.ursulin@intel.com>
Link:
http://patchwork.freedesktop.org/patch/msgid/20170105153023.30575-2-chris@chris-wilson.co.uk
drivers/gpu/drm/i915/intel_lrc.c
patch
|
blob
|
history
diff --git
a/drivers/gpu/drm/i915/intel_lrc.c
b/drivers/gpu/drm/i915/intel_lrc.c
index 22797882032046aac43e8c661dfcdfd121453d98..51ecb395551b98a058d6981905aef85bafdc4fa6 100644
(file)
--- a/
drivers/gpu/drm/i915/intel_lrc.c
+++ b/
drivers/gpu/drm/i915/intel_lrc.c
@@
-781,6
+781,7
@@
static int execlists_context_pin(struct intel_engine_cs *engine,
if (ret)
goto err;
}
+ GEM_BUG_ON(!ce->state);
flags = PIN_GLOBAL;
if (ctx->ggtt_offset_bias)