diff options
author | David Howells <dhowells@redhat.com> | 2008-11-14 10:38:44 +1100 |
---|---|---|
committer | James Morris <jmorris@namei.org> | 2008-11-14 10:38:44 +1100 |
commit | f8b9d53a31dca2c1185232c5fe2731d99cc963c8 (patch) | |
tree | 7725eafec2f04595e439feb94c3b5ae04cf478c6 /fs/9p/fid.c | |
parent | cd80ca8a03fd712b046028c1f66e10f3aec43eee (diff) | |
download | linux-3.10-f8b9d53a31dca2c1185232c5fe2731d99cc963c8.tar.gz linux-3.10-f8b9d53a31dca2c1185232c5fe2731d99cc963c8.tar.bz2 linux-3.10-f8b9d53a31dca2c1185232c5fe2731d99cc963c8.zip |
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 'fs/9p/fid.c')
-rw-r--r-- | fs/9p/fid.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/fs/9p/fid.c b/fs/9p/fid.c index 3031e3233dd..a43e4ab7c6c 100644 --- a/fs/9p/fid.c +++ b/fs/9p/fid.c @@ -120,7 +120,7 @@ struct p9_fid *v9fs_fid_lookup(struct dentry *dentry) switch (access) { case V9FS_ACCESS_SINGLE: case V9FS_ACCESS_USER: - uid = current->fsuid; + uid = current_fsuid(); any = 0; break; |