summaryrefslogtreecommitdiff
path: root/overlay
diff options
context:
space:
mode:
authorTvrtko Ursulin <tvrtko.ursulin@intel.com>2018-03-15 10:01:22 +0000
committerTvrtko Ursulin <tvrtko.ursulin@intel.com>2018-03-16 16:17:14 +0000
commit6bfb2ee9d47b45a979c53d0431fe4ef6828f6171 (patch)
treea0cbc4ec5598f9f0d76c59f8b9fd44853748026f /overlay
parent2e92134b4e4f754239f9721b8781ce2fc0aab07c (diff)
intel-gpu-overlay: Update for renamed tracepoints
Request tracepoints have been renames so update the tool to be able to find them. v2: Only support new names. Signed-off-by: Tvrtko Ursulin <tvrtko.ursulin@intel.com> Reviewed-by: Chris Wilson <chris@chris-wilson.co.uk>
Diffstat (limited to 'overlay')
-rw-r--r--overlay/gpu-perf.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/overlay/gpu-perf.c b/overlay/gpu-perf.c
index 0abd937e..ea348005 100644
--- a/overlay/gpu-perf.c
+++ b/overlay/gpu-perf.c
@@ -90,9 +90,9 @@ struct tracepoint {
int global_seqno_field;
int plane_field;
} tracepoints[TP_NB] = {
- [TP_GEM_REQUEST_ADD] = { .name = "i915/i915_gem_request_add", },
- [TP_GEM_REQUEST_WAIT_BEGIN] = { .name = "i915/i915_gem_request_wait_begin", },
- [TP_GEM_REQUEST_WAIT_END] = { .name = "i915/i915_gem_request_wait_end", },
+ [TP_GEM_REQUEST_ADD] = { .name = "i915/i915_request_add", },
+ [TP_GEM_REQUEST_WAIT_BEGIN] = { .name = "i915/i915_request_wait_begin", },
+ [TP_GEM_REQUEST_WAIT_END] = { .name = "i915/i915_request_wait_end", },
[TP_FLIP_COMPLETE] = { .name = "i915/flip_complete", },
[TP_GEM_RING_SYNC_TO] = { .name = "i915/gem_ring_sync_to", },
[TP_GEM_RING_SWITCH_CONTEXT] = { .name = "i915/gem_ring_switch_context", },