Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 2df68b43 authored by David Howells's avatar David Howells Committed by Dave Airlie
Browse files

drm/cred: wrap task credential accesses in the drm driver.



Wrap access to task credentials so that they can be separated more easily from
the task_struct during the introduction of COW creds.

Change most current->(|e|s|fs)[ug]id to current_(|e|s|fs)[ug]id().

Change some task->e?[ug]id to task_e?[ug]id().  In some places it makes more
sense to use RCU directly rather than a convenient wrapper; these will be
addressed by later patches.

Signed-off-by: default avatarDavid Howells <dhowells@redhat.com>
Reviewed-by: default avatarJames Morris <jmorris@namei.org>
Acked-by: default avatarSerge Hallyn <serue@us.ibm.com>
Signed-off-by: default avatarDavid Airlie <airlied@redhat.com>
parent b9bfdfe6
Loading
Loading
Loading
Loading
+1 −1
Original line number Original line Diff line number Diff line
@@ -246,7 +246,7 @@ static int drm_open_helper(struct inode *inode, struct file *filp,
	memset(priv, 0, sizeof(*priv));
	memset(priv, 0, sizeof(*priv));
	filp->private_data = priv;
	filp->private_data = priv;
	priv->filp = filp;
	priv->filp = filp;
	priv->uid = current->euid;
	priv->uid = current_euid();
	priv->pid = task_pid_nr(current);
	priv->pid = task_pid_nr(current);
	priv->minor = idr_find(&drm_minors_idr, minor_id);
	priv->minor = idr_find(&drm_minors_idr, minor_id);
	priv->ioctl_count = 0;
	priv->ioctl_count = 0;