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:
aa34a6f
)
drm/i915/guc: Tidy ELSP port assignment
author
Chris Wilson
<
[email protected]
>
Fri, 24 Nov 2017 13:00:29 +0000
(13:00 +0000)
committer
Chris Wilson
<
[email protected]
>
Fri, 24 Nov 2017 16:09:51 +0000
(16:09 +0000)
Since we know that the port is empty, we do not need to extract the
count from the old request it and copy it over to the new request, or
attempt to unref the NULL old request pointer.
Signed-off-by: Chris Wilson <
[email protected]
>
Cc: Mika Kuoppala <
[email protected]
>
Cc: Michał Winiarski <
[email protected]
>
Reviewed-by: Michał Winiarski <
[email protected]
>
Link:
https://patchwork.freedesktop.org/patch/msgid/
[email protected]
drivers/gpu/drm/i915/intel_guc_submission.c
patch
|
blob
|
history
diff --git
a/drivers/gpu/drm/i915/intel_guc_submission.c
b/drivers/gpu/drm/i915/intel_guc_submission.c
index 70e64bdb73dd2f47b25c6727423fc6ce3ad6e32a..cf1cc2cb6722589eb6bc98daa55dc39636457764 100644
(file)
--- a/
drivers/gpu/drm/i915/intel_guc_submission.c
+++ b/
drivers/gpu/drm/i915/intel_guc_submission.c
@@
-718,12
+718,9
@@
static void guc_submit(struct intel_engine_cs *engine)
static void port_assign(struct execlist_port *port,
struct drm_i915_gem_request *rq)
{
- GEM_BUG_ON(rq == port_request(port));
-
- if (port_isset(port))
- i915_gem_request_put(port_request(port));
+ GEM_BUG_ON(port_isset(port));
- port_set(port,
port_pack(i915_gem_request_get(rq), port_count(port)
));
+ port_set(port,
i915_gem_request_get(rq
));
}
static void guc_dequeue(struct intel_engine_cs *engine)