Update the context.name on closing so that the persistent requests are
clear in debug prints.

Signed-off-by: Chris Wilson <[email protected]>
---
 drivers/gpu/drm/i915/gem/i915_gem_context.c | 18 ++++++++++++++++++
 1 file changed, 18 insertions(+)

diff --git a/drivers/gpu/drm/i915/gem/i915_gem_context.c 
b/drivers/gpu/drm/i915/gem/i915_gem_context.c
index 982770e8163d..72d389afa28a 100644
--- a/drivers/gpu/drm/i915/gem/i915_gem_context.c
+++ b/drivers/gpu/drm/i915/gem/i915_gem_context.c
@@ -461,11 +461,29 @@ static void kill_context(struct i915_gem_context *ctx)
        }
 }
 
+static void set_closed_name(struct i915_gem_context *ctx)
+{
+       char *s;
+
+       /* Replace '[]' with '<>' to indicate closed in debug prints */
+
+       s = strrchr(ctx->name, '[');
+       if (!s)
+               return;
+
+       *s = '<';
+
+       s = strchr(s + 1, ']');
+       if (s)
+               *s = '>';
+}
+
 static void context_close(struct i915_gem_context *ctx)
 {
        struct i915_address_space *vm;
 
        i915_gem_context_set_closed(ctx);
+       set_closed_name(ctx);
 
        mutex_lock(&ctx->mutex);
 
-- 
2.24.0

_______________________________________________
Intel-gfx mailing list
[email protected]
https://lists.freedesktop.org/mailman/listinfo/intel-gfx

Reply via email to