diff options
author | David Howells | 2006-08-23 02:06:12 +0200 |
---|---|---|
committer | Trond Myklebust | 2006-09-23 05:24:35 +0200 |
commit | 8fa5c000d7f986ef9cdc6d95f9f7fcee20e0a7d6 (patch) | |
tree | 356b811803db9775fd9c870d189a9ff75885ae6c /fs/nfs/dir.c | |
parent | NFS: Make better use of inode* dereferencing macros (diff) | |
download | kernel-qcow2-linux-8fa5c000d7f986ef9cdc6d95f9f7fcee20e0a7d6.tar.gz kernel-qcow2-linux-8fa5c000d7f986ef9cdc6d95f9f7fcee20e0a7d6.tar.xz kernel-qcow2-linux-8fa5c000d7f986ef9cdc6d95f9f7fcee20e0a7d6.zip |
NFS: Move rpc_ops from nfs_server to nfs_client
Move the rpc_ops from the nfs_server struct to the nfs_client struct as they're
common to all server records of a particular NFS protocol version.
Signed-Off-By: David Howells <dhowells@redhat.com>
Signed-off-by: Trond Myklebust <Trond.Myklebust@netapp.com>
Diffstat (limited to 'fs/nfs/dir.c')
-rw-r--r-- | fs/nfs/dir.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/fs/nfs/dir.c b/fs/nfs/dir.c index 067d144d141b..19362712452f 100644 --- a/fs/nfs/dir.c +++ b/fs/nfs/dir.c @@ -1147,7 +1147,7 @@ int nfs_instantiate(struct dentry *dentry, struct nfs_fh *fhandle, } if (!(fattr->valid & NFS_ATTR_FATTR)) { struct nfs_server *server = NFS_SB(dentry->d_sb); - error = server->rpc_ops->getattr(server, fhandle, fattr); + error = server->nfs_client->rpc_ops->getattr(server, fhandle, fattr); if (error < 0) goto out_err; } |