提交 f24e74a7 编写于 作者: T Tvrtko Ursulin

drm/i915/trace: Remove engine out of the context sandwich

In the string tracepoint representation we ended up with the engine
sandwiched between context hardware id and context fence id.

Move the two pieces of context data together for redability.

Binary records are left as is, that is both fields remaing under the
existing name and ordering.

v2:
 * Do not consolidate the printk format, just reorder. (Lionel)
Signed-off-by: NTvrtko Ursulin <tvrtko.ursulin@intel.com>
Cc: Lionel Landwerlin <lionel.g.landwerlin@intel.com>
Reviewed-by: NLionel Landwerlin <lionel.g.landwerlin@intel.com>
Link: https://patchwork.freedesktop.org/patch/msgid/20180525082642.18246-2-tvrtko.ursulin@linux.intel.com
上级 2956e970
...@@ -638,9 +638,9 @@ TRACE_EVENT(i915_request_queue, ...@@ -638,9 +638,9 @@ TRACE_EVENT(i915_request_queue,
__entry->flags = flags; __entry->flags = flags;
), ),
TP_printk("dev=%u, hw_id=%u, engine=%u:%u, ctx=%u, seqno=%u, flags=0x%x", TP_printk("dev=%u, engine=%u:%u, hw_id=%u, ctx=%u, seqno=%u, flags=0x%x",
__entry->dev, __entry->hw_id, __entry->class, __entry->dev, __entry->class, __entry->instance,
__entry->instance, __entry->ctx, __entry->seqno, __entry->hw_id, __entry->ctx, __entry->seqno,
__entry->flags) __entry->flags)
); );
...@@ -668,9 +668,9 @@ DECLARE_EVENT_CLASS(i915_request, ...@@ -668,9 +668,9 @@ DECLARE_EVENT_CLASS(i915_request,
__entry->global = rq->global_seqno; __entry->global = rq->global_seqno;
), ),
TP_printk("dev=%u, hw_id=%u, engine=%u:%u, ctx=%u, seqno=%u, global=%u", TP_printk("dev=%u, engine=%u:%u, hw_id=%u, ctx=%u, seqno=%u, global=%u",
__entry->dev, __entry->hw_id, __entry->class, __entry->dev, __entry->class, __entry->instance,
__entry->instance, __entry->ctx, __entry->seqno, __entry->hw_id, __entry->ctx, __entry->seqno,
__entry->global) __entry->global)
); );
...@@ -718,9 +718,9 @@ TRACE_EVENT(i915_request_in, ...@@ -718,9 +718,9 @@ TRACE_EVENT(i915_request_in,
__entry->port = port; __entry->port = port;
), ),
TP_printk("dev=%u, hw_id=%u, engine=%u:%u, ctx=%u, seqno=%u, prio=%u, global=%u, port=%u", TP_printk("dev=%u, engine=%u:%u, hw_id=%u, ctx=%u, seqno=%u, prio=%u, global=%u, port=%u",
__entry->dev, __entry->hw_id, __entry->class, __entry->dev, __entry->class, __entry->instance,
__entry->instance, __entry->ctx, __entry->seqno, __entry->hw_id, __entry->ctx, __entry->seqno,
__entry->prio, __entry->global_seqno, __entry->port) __entry->prio, __entry->global_seqno, __entry->port)
); );
...@@ -750,9 +750,9 @@ TRACE_EVENT(i915_request_out, ...@@ -750,9 +750,9 @@ TRACE_EVENT(i915_request_out,
__entry->completed = i915_request_completed(rq); __entry->completed = i915_request_completed(rq);
), ),
TP_printk("dev=%u, hw_id=%u, engine=%u:%u, ctx=%u, seqno=%u, global=%u, completed?=%u", TP_printk("dev=%u, engine=%u:%u, hw_id=%u, ctx=%u, seqno=%u, global=%u, completed?=%u",
__entry->dev, __entry->hw_id, __entry->class, __entry->dev, __entry->class, __entry->instance,
__entry->instance, __entry->ctx, __entry->seqno, __entry->hw_id, __entry->ctx, __entry->seqno,
__entry->global_seqno, __entry->completed) __entry->global_seqno, __entry->completed)
); );
...@@ -842,9 +842,9 @@ TRACE_EVENT(i915_request_wait_begin, ...@@ -842,9 +842,9 @@ TRACE_EVENT(i915_request_wait_begin,
__entry->flags = flags; __entry->flags = flags;
), ),
TP_printk("dev=%u, hw_id=%u, engine=%u:%u, ctx=%u, seqno=%u, global=%u, blocking=%u, flags=0x%x", TP_printk("dev=%u, engine=%u:%u, hw_id=%u, ctx=%u, seqno=%u, global=%u, blocking=%u, flags=0x%x",
__entry->dev, __entry->hw_id, __entry->class, __entry->dev, __entry->class, __entry->instance,
__entry->instance, __entry->ctx, __entry->seqno, __entry->hw_id, __entry->ctx, __entry->seqno,
__entry->global, !!(__entry->flags & I915_WAIT_LOCKED), __entry->global, !!(__entry->flags & I915_WAIT_LOCKED),
__entry->flags) __entry->flags)
); );
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册