diff options
author | NeilBrown <neilb@suse.com> | 2018-12-03 11:30:30 +1100 |
---|---|---|
committer | Anna Schumaker <Anna.Schumaker@Netapp.com> | 2018-12-19 13:52:44 -0500 |
commit | a6d8e7637faac93f362b694311bff64d5a8c701e (patch) | |
tree | 56e0fcf4e26bb2abe78e26f319042a711e18d0c7 /kernel/cred.c | |
parent | 97d0fb239c041f5f99655af74812c3ab75cc4346 (diff) | |
download | linux-a6d8e7637faac93f362b694311bff64d5a8c701e.tar.gz linux-a6d8e7637faac93f362b694311bff64d5a8c701e.tar.bz2 linux-a6d8e7637faac93f362b694311bff64d5a8c701e.zip |
cred: export get_task_cred().
There is no reason that modules should not be able
to use this, and NFS will need it when converted to
use 'struct cred'.
Signed-off-by: NeilBrown <neilb@suse.com>
Signed-off-by: Anna Schumaker <Anna.Schumaker@Netapp.com>
Diffstat (limited to 'kernel/cred.c')
-rw-r--r-- | kernel/cred.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/kernel/cred.c b/kernel/cred.c index ba60162249e8..21f4a97085b4 100644 --- a/kernel/cred.c +++ b/kernel/cred.c @@ -200,6 +200,7 @@ const struct cred *get_task_cred(struct task_struct *task) rcu_read_unlock(); return cred; } +EXPORT_SYMBOL(get_task_cred); /* * Allocate blank credentials, such that the credentials can be filled in at a |