|
@@ -80,6 +80,7 @@ int drm_clients_info(struct seq_file *m, void *data)
|
|
|
struct drm_info_node *node = (struct drm_info_node *) m->private;
|
|
|
struct drm_device *dev = node->minor->dev;
|
|
|
struct drm_file *priv;
|
|
|
+ kuid_t uid;
|
|
|
|
|
|
seq_printf(m,
|
|
|
"%20s %5s %3s master a %5s %10s\n",
|
|
@@ -98,13 +99,14 @@ int drm_clients_info(struct seq_file *m, void *data)
|
|
|
|
|
|
rcu_read_lock(); /* locks pid_task()->comm */
|
|
|
task = pid_task(priv->pid, PIDTYPE_PID);
|
|
|
+ uid = task ? __task_cred(task)->euid : GLOBAL_ROOT_UID;
|
|
|
seq_printf(m, "%20s %5d %3d %c %c %5d %10u\n",
|
|
|
task ? task->comm : "<unknown>",
|
|
|
pid_vnr(priv->pid),
|
|
|
priv->minor->index,
|
|
|
drm_is_current_master(priv) ? 'y' : 'n',
|
|
|
priv->authenticated ? 'y' : 'n',
|
|
|
- from_kuid_munged(seq_user_ns(m), priv->uid),
|
|
|
+ from_kuid_munged(seq_user_ns(m), uid),
|
|
|
priv->magic);
|
|
|
rcu_read_unlock();
|
|
|
}
|