aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/gpu/drm/i915/intel_ringbuffer.h
diff options
context:
space:
mode:
authorChris Wilson <chris@chris-wilson.co.uk>2017-04-11 08:43:06 -0400
committerChris Wilson <chris@chris-wilson.co.uk>2017-04-11 09:31:39 -0400
commit1d39f28170cb95e8b9eb9833d1c17528f400f9c4 (patch)
tree31c4a58b80a2ddc9fdbf8c1ec60780a187ec9f5d /drivers/gpu/drm/i915/intel_ringbuffer.h
parentb8400f01fcbbacec274d89a1c41340d0409529bb (diff)
drm/i915: Rename intel_engine_cs.exec_id to uabi_id
We want to refer to the index of the engine consistently throughout the userspace ABI. We already have such an index through the execbuffer engine specifier, that needs to be able to refer to each engine specifically, so rename it the index to uabi_id to reflect its generality beyond execbuf. Signed-off-by: Chris Wilson <chris@chris-wilson.co.uk> Reviewed-by: Joonas Lahtinen <joonas.lahtinen@linux.intel.com> Link: http://patchwork.freedesktop.org/patch/msgid/20170411124306.15448-1-chris@chris-wilson.co.uk
Diffstat (limited to 'drivers/gpu/drm/i915/intel_ringbuffer.h')
-rw-r--r--drivers/gpu/drm/i915/intel_ringbuffer.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/gpu/drm/i915/intel_ringbuffer.h b/drivers/gpu/drm/i915/intel_ringbuffer.h
index fd8994b5688c..00d36aa4e26d 100644
--- a/drivers/gpu/drm/i915/intel_ringbuffer.h
+++ b/drivers/gpu/drm/i915/intel_ringbuffer.h
@@ -193,7 +193,7 @@ struct intel_engine_cs {
193 struct drm_i915_private *i915; 193 struct drm_i915_private *i915;
194 char name[INTEL_ENGINE_CS_MAX_NAME]; 194 char name[INTEL_ENGINE_CS_MAX_NAME];
195 enum intel_engine_id id; 195 enum intel_engine_id id;
196 unsigned int exec_id; 196 unsigned int uabi_id;
197 unsigned int hw_id; 197 unsigned int hw_id;
198 198
199 u8 class; 199 u8 class;