diff options
author | Tvrtko Ursulin <tvrtko.ursulin@intel.com> | 2016-04-28 11:56:57 +0300 |
---|---|---|
committer | Chris Wilson <chris@chris-wilson.co.uk> | 2016-04-28 14:17:32 +0300 |
commit | a3d127616eef78d0e4a677b6634dbc914ff4fd0a (patch) | |
tree | eda4261caa82e14e2c96983bf8fcb20a02445ec1 /drivers/gpu/drm/i915/i915_drv.h | |
parent | a16a405259b3648bda4c6732020b5fdf5ab01526 (diff) | |
download | linux-a3d127616eef78d0e4a677b6634dbc914ff4fd0a.tar.xz |
drm/i915: Store LRC hardware id in the request
This way in the following patch we can disconnect requests
from contexts.
Signed-off-by: Tvrtko Ursulin <tvrtko.ursulin@intel.com>
Reviewed-by: Chris Wilson <chris@chris-wilson.co.uk>
Signed-off-by: Chris Wilson <chris@chris-wilson.co.uk>
Link: http://patchwork.freedesktop.org/patch/msgid/1461833819-3991-23-git-send-email-chris@chris-wilson.co.uk
Diffstat (limited to 'drivers/gpu/drm/i915/i915_drv.h')
-rw-r--r-- | drivers/gpu/drm/i915/i915_drv.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/drivers/gpu/drm/i915/i915_drv.h b/drivers/gpu/drm/i915/i915_drv.h index eb4a95b853dd..e2abbcc27f2c 100644 --- a/drivers/gpu/drm/i915/i915_drv.h +++ b/drivers/gpu/drm/i915/i915_drv.h @@ -2352,6 +2352,8 @@ struct drm_i915_gem_request { /** Execlists no. of times this request has been sent to the ELSP */ int elsp_submitted; + /** Execlists context hardware id. */ + unsigned ctx_hw_id; }; struct drm_i915_gem_request * __must_check |