mirror of
https://github.com/torvalds/linux.git
synced 2026-05-24 07:03:03 +02:00
drm/file: add client id to drm_file_error
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 <sunil.khatri@amd.com> Reviewed-by: Christian König <christian.koenig@amd.com> Link: https://lore.kernel.org/r/20250530062929.1954784-1-sunil.khatri@amd.com Signed-off-by: Christian König <christian.koenig@amd.com>
This commit is contained in:
parent
c5ae936db7
commit
c5b4393c54
|
|
@ -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();
|
||||
|
|
|
|||
Loading…
Reference in New Issue
Block a user