mirror of
https://github.com/AuxXxilium/linux_dsm_epyc7002.git
synced 2024-12-28 11:18:45 +07:00
drm/i915: Add spaces before compound GEM_TRACE
Add a space between the prefixed format and the users format so that the
join are not mistakenly combined into one long word.
Fixes: 639f2f2489
("drm/i915: Introduce new macros for tracing")
Signed-off-by: Chris Wilson <chris@chris-wilson.co.uk>
Cc: Venkata Sandeep Dhanalakota <venkata.s.dhanalakota@intel.com>
Reviewed-by: Lucas De Marchi <lucas.demarchi@intel.com>
Link: https://patchwork.freedesktop.org/patch/msgid/20191223204411.2355304-1-chris@chris-wilson.co.uk
This commit is contained in:
parent
c100777cc0
commit
41d329e287
@ -19,7 +19,7 @@
|
||||
|
||||
#define CE_TRACE(ce, fmt, ...) do { \
|
||||
const struct intel_context *ce__ = (ce); \
|
||||
ENGINE_TRACE(ce__->engine, "context:%llx" fmt, \
|
||||
ENGINE_TRACE(ce__->engine, "context:%llx " fmt, \
|
||||
ce__->timeline->fence_context, \
|
||||
##__VA_ARGS__); \
|
||||
} while (0)
|
||||
|
@ -51,7 +51,7 @@ struct i915_capture_list {
|
||||
|
||||
#define RQ_TRACE(rq, fmt, ...) do { \
|
||||
const struct i915_request *rq__ = (rq); \
|
||||
ENGINE_TRACE(rq__->engine, "fence %llx:%lld, current %d" fmt, \
|
||||
ENGINE_TRACE(rq__->engine, "fence %llx:%lld, current %d " fmt, \
|
||||
rq__->fence.context, rq__->fence.seqno, \
|
||||
hwsp_seqno(rq__), ##__VA_ARGS__); \
|
||||
} while (0)
|
||||
|
Loading…
Reference in New Issue
Block a user