diff options
Diffstat (limited to 'fs/nfs/nfs3proc.c')
| -rw-r--r-- | fs/nfs/nfs3proc.c | 5 | 
1 files changed, 3 insertions, 2 deletions
| diff --git a/fs/nfs/nfs3proc.c b/fs/nfs/nfs3proc.c index 7100514d306b..1597eef40d54 100644 --- a/fs/nfs/nfs3proc.c +++ b/fs/nfs/nfs3proc.c @@ -220,7 +220,8 @@ static int nfs3_proc_lookupp(struct inode *inode, struct nfs_fh *fhandle,  				  task_flags);  } -static int nfs3_proc_access(struct inode *inode, struct nfs_access_entry *entry) +static int nfs3_proc_access(struct inode *inode, struct nfs_access_entry *entry, +			    const struct cred *cred)  {  	struct nfs3_accessargs	arg = {  		.fh		= NFS_FH(inode), @@ -231,7 +232,7 @@ static int nfs3_proc_access(struct inode *inode, struct nfs_access_entry *entry)  		.rpc_proc	= &nfs3_procedures[NFS3PROC_ACCESS],  		.rpc_argp	= &arg,  		.rpc_resp	= &res, -		.rpc_cred	= entry->cred, +		.rpc_cred	= cred,  	};  	int status = -ENOMEM; |