diff options
author | Anna Schumaker <Anna.Schumaker@Netapp.com> | 2015-05-14 10:56:10 -0400 |
---|---|---|
committer | Anna Schumaker <Anna.Schumaker@Netapp.com> | 2017-01-30 13:14:50 -0500 |
commit | 172d9de15a0da9b6d52d2bae21a362689d82d35a (patch) | |
tree | 22a10d771dcbc619c60308f0bb55c560da5dc425 /fs/nfs/nfs42proc.c | |
parent | efc6f4aa742d7e8a67e44d11ab18b1c865880b4c (diff) | |
download | op-kernel-dev-172d9de15a0da9b6d52d2bae21a362689d82d35a.zip op-kernel-dev-172d9de15a0da9b6d52d2bae21a362689d82d35a.tar.gz |
NFS: Change nfs4_get_session() to take an nfs_client structure
pNFS only has access to the nfs_client structure, and not the
nfs_server, so we need to make this change so the function can be used
by pNFS as well.
Signed-off-by: Anna Schumaker <Anna.Schumaker@Netapp.com>
Diffstat (limited to 'fs/nfs/nfs42proc.c')
-rw-r--r-- | fs/nfs/nfs42proc.c | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/fs/nfs/nfs42proc.c b/fs/nfs/nfs42proc.c index b752d85..b03010e 100644 --- a/fs/nfs/nfs42proc.c +++ b/fs/nfs/nfs42proc.c @@ -332,9 +332,8 @@ nfs42_layoutstat_prepare(struct rpc_task *task, void *calldata) } nfs4_stateid_copy(&data->args.stateid, &lo->plh_stateid); spin_unlock(&inode->i_lock); - nfs41_setup_sequence(nfs4_get_session(server), &data->args.seq_args, - &data->res.seq_res, task); - + nfs41_setup_sequence(nfs4_get_session(server->nfs_client), + &data->args.seq_args, &data->res.seq_res, task); } static void |