diff options
author | Bryan Schumaker <bjschuma@netapp.com> | 2012-04-27 13:27:46 -0400 |
---|---|---|
committer | Trond Myklebust <Trond.Myklebust@netapp.com> | 2012-04-27 14:10:39 -0400 |
commit | 80a16b21a81eb639f0b726549f4c46c0e9aff92e (patch) | |
tree | 5095cb05498d16e64976b03c38b3fcdaa83e4ecb /include/linux/nfs_xdr.h | |
parent | 281cad46b34db4dbb1d1e603f7b9cfe25d1ae7c9 (diff) | |
download | talos-obmc-linux-80a16b21a81eb639f0b726549f4c46c0e9aff92e.tar.gz talos-obmc-linux-80a16b21a81eb639f0b726549f4c46c0e9aff92e.zip |
NFS: Remove extra rpc_clnt argument to proc_lookup
Now that I'm doing secinfo automatically in the v4 code this extra
argument isn't needed.
Signed-off-by: Bryan Schumaker <bjschuma@netapp.com>
Signed-off-by: Trond Myklebust <Trond.Myklebust@netapp.com>
Diffstat (limited to 'include/linux/nfs_xdr.h')
-rw-r--r-- | include/linux/nfs_xdr.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/linux/nfs_xdr.h b/include/linux/nfs_xdr.h index 4dada94eba7d..c940d46eb423 100644 --- a/include/linux/nfs_xdr.h +++ b/include/linux/nfs_xdr.h @@ -1347,7 +1347,7 @@ struct nfs_rpc_ops { struct nfs_fattr *); int (*setattr) (struct dentry *, struct nfs_fattr *, struct iattr *); - int (*lookup) (struct rpc_clnt *clnt, struct inode *, struct qstr *, + int (*lookup) (struct inode *, struct qstr *, struct nfs_fh *, struct nfs_fattr *); int (*access) (struct inode *, struct nfs_access_entry *); int (*readlink)(struct inode *, struct page *, unsigned int, |