aboutsummaryrefslogtreecommitdiffstats
path: root/net
diff options
context:
space:
mode:
authorDavid Howells <dhowells@redhat.com>2008-11-13 18:38:44 -0500
committerJames Morris <jmorris@namei.org>2008-11-13 18:38:44 -0500
commitf8b9d53a31dca2c1185232c5fe2731d99cc963c8 (patch)
tree7725eafec2f04595e439feb94c3b5ae04cf478c6 /net
parentcd80ca8a03fd712b046028c1f66e10f3aec43eee (diff)
CRED: Wrap task credential accesses in 9P2000 filesystem
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: David Howells <dhowells@redhat.com> Reviewed-by: James Morris <jmorris@namei.org> Acked-by: Serge Hallyn <serue@us.ibm.com> Reviewed-by: Eric Van Hensbergen <ericvh@gmail.com> Cc: Ron Minnich <rminnich@sandia.gov> Cc: Latchesar Ionkov <lucho@ionkov.net> Cc: v9fs-developer@lists.sourceforge.net Signed-off-by: James Morris <jmorris@namei.org>
Diffstat (limited to 'net')
-rw-r--r--net/9p/client.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/net/9p/client.c b/net/9p/client.c
index 67717f69412e..c3fb6f8bfa92 100644
--- a/net/9p/client.c
+++ b/net/9p/client.c
@@ -628,7 +628,7 @@ static struct p9_fid *p9_fid_create(struct p9_client *clnt)
628 memset(&fid->qid, 0, sizeof(struct p9_qid)); 628 memset(&fid->qid, 0, sizeof(struct p9_qid));
629 fid->mode = -1; 629 fid->mode = -1;
630 fid->rdir_fpos = 0; 630 fid->rdir_fpos = 0;
631 fid->uid = current->fsuid; 631 fid->uid = current_fsuid();
632 fid->clnt = clnt; 632 fid->clnt = clnt;
633 fid->aux = NULL; 633 fid->aux = NULL;
634 634