Commit b552ae44 authored by Tvrtko Ursulin's avatar Tvrtko Ursulin

drm/i915/pmu: Drop I915_ENGINE_SAMPLE_MAX from uapi headers

We have agreed during the engine classes discussion that fields marked as
non-ABI are better left out altogether from uapi headers.

v2: Use a local define for maintanability. (Chris Wilson)
Signed-off-by: default avatarTvrtko Ursulin <tvrtko.ursulin@intel.com>
Reviewed-by: default avatarChris Wilson <chris@chris-wilson.co.uk>
Link: https://patchwork.freedesktop.org/patch/msgid/20171123100701.18430-1-tvrtko.ursulin@linux.intel.com
parent 4f0aa1fa
...@@ -358,6 +358,7 @@ struct intel_engine_cs { ...@@ -358,6 +358,7 @@ struct intel_engine_cs {
* *
* Our internal timer stores the current counters in this field. * Our internal timer stores the current counters in this field.
*/ */
#define I915_ENGINE_SAMPLE_MAX (I915_SAMPLE_SEMA + 1)
struct i915_pmu_sample sample[I915_ENGINE_SAMPLE_MAX]; struct i915_pmu_sample sample[I915_ENGINE_SAMPLE_MAX];
/** /**
* @busy_stats: Has enablement of engine stats tracking been * @busy_stats: Has enablement of engine stats tracking been
......
...@@ -110,8 +110,7 @@ enum drm_i915_gem_engine_class { ...@@ -110,8 +110,7 @@ enum drm_i915_gem_engine_class {
enum drm_i915_pmu_engine_sample { enum drm_i915_pmu_engine_sample {
I915_SAMPLE_BUSY = 0, I915_SAMPLE_BUSY = 0,
I915_SAMPLE_WAIT = 1, I915_SAMPLE_WAIT = 1,
I915_SAMPLE_SEMA = 2, I915_SAMPLE_SEMA = 2
I915_ENGINE_SAMPLE_MAX /* non-ABI */
}; };
#define I915_PMU_SAMPLE_BITS (4) #define I915_PMU_SAMPLE_BITS (4)
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment