diff options
author | 2023-04-20 12:17:35 -0400 | |
---|---|---|
committer | 2023-04-21 17:00:55 -0400 | |
commit | e025f0a73f6acb920d86549b2177a5883535421d (patch) | |
tree | 6d1518a9950f895ca9df8e376f26126bde3b8cc8 | |
parent | NFS: set varaiable nfs_netfs_debug_id storage-class-specifier to static (diff) | |
download | wireguard-linux-e025f0a73f6acb920d86549b2177a5883535421d.tar.xz wireguard-linux-e025f0a73f6acb920d86549b2177a5883535421d.zip |
NFS: Cleanup unused rpc_clnt variable
The root rpc_clnt is not used here, clean it up.
Fixes: 4dc73c679114 ("NFSv4: keep state manager thread active if swap is enabled")
Signed-off-by: Benjamin Coddington <bcodding@redhat.com>
Reviewed-by: NeilBrown <neilb@suse.de>
Signed-off-by: Anna Schumaker <Anna.Schumaker@Netapp.com>
Diffstat (limited to '')
-rw-r--r-- | fs/nfs/nfs4state.c | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/fs/nfs/nfs4state.c b/fs/nfs/nfs4state.c index 660ccfaf463e..bbe49315d99e 100644 --- a/fs/nfs/nfs4state.c +++ b/fs/nfs/nfs4state.c @@ -1209,10 +1209,6 @@ void nfs4_schedule_state_manager(struct nfs_client *clp) { struct task_struct *task; char buf[INET6_ADDRSTRLEN + sizeof("-manager") + 1]; - struct rpc_clnt *cl = clp->cl_rpcclient; - - while (cl != cl->cl_parent) - cl = cl->cl_parent; set_bit(NFS4CLNT_RUN_MANAGER, &clp->cl_state); if (test_and_set_bit(NFS4CLNT_MANAGER_AVAILABLE, &clp->cl_state) != 0) { |