From c5b4393c5492555e35c08677a326c9c53b275abd Mon Sep 17 00:00:00 2001 From: Sunil Khatri Date: Fri, 30 May 2025 11:59:29 +0530 Subject: [PATCH] drm/file: add client id to drm_file_error MIME-Version: 1.0 Content-Type: text/plain; charset=utf8 Content-Transfer-Encoding: 8bit Add client id to the drm_file_error api, client id is a unique id for each drm fd and is quite useful for debugging. v2: Swapped client id and client name order [Chrisitan] Signed-off-by: Sunil Khatri Reviewed-by: Christian König Link: https://lore.kernel.org/r/20250530062929.1954784-1-sunil.khatri@amd.com Signed-off-by: Christian König --- drivers/gpu/drm/drm_file.c | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/drivers/gpu/drm/drm_file.c b/drivers/gpu/drm/drm_file.c index 246cf845e2c9c..818630ba6e0d0 100644 --- a/drivers/gpu/drm/drm_file.c +++ b/drivers/gpu/drm/drm_file.c @@ -1017,8 +1017,10 @@ void drm_file_err(struct drm_file *file_priv, const char *fmt, ...) pid = rcu_dereference(file_priv->pid); task = pid_task(pid, PIDTYPE_TGID); - drm_err(dev, "comm: %s pid: %d client: %s ... %pV", task ? task->comm : "Unset", - task ? task->pid : 0, file_priv->client_name ?: "Unset", &vaf); + drm_err(dev, "comm: %s pid: %d client-id:%llu client: %s ... %pV", + task ? task->comm : "Unset", + task ? task->pid : 0, file_priv->client_id, + file_priv->client_name ?: "Unset", &vaf); va_end(args); rcu_read_unlock(); -- 2.47.2