]> git.ipfire.org Git - thirdparty/kernel/linux.git/commitdiff
NFSv4: Fix a nfs4_state_manager() race
authorTrond Myklebust <trond.myklebust@hammerspace.com>
Sun, 17 Sep 2023 23:05:50 +0000 (19:05 -0400)
committerAnna Schumaker <Anna.Schumaker@Netapp.com>
Wed, 27 Sep 2023 19:16:40 +0000 (15:16 -0400)
If the NFS4CLNT_RUN_MANAGER flag got set just before we cleared
NFS4CLNT_MANAGER_RUNNING, then we might have won the race against
nfs4_schedule_state_manager(), and are responsible for handling the
recovery situation.

Fixes: aeabb3c96186 ("NFSv4: Fix a NFSv4 state manager deadlock")
Signed-off-by: Trond Myklebust <trond.myklebust@hammerspace.com>
Signed-off-by: Anna Schumaker <Anna.Schumaker@Netapp.com>
fs/nfs/nfs4state.c

index e079987af4a3e41a5589e84f6f19853b5b5bc402..0bc160fbabec3c05f8971a44b2fb2d0bbfa1cebc 100644 (file)
@@ -2703,6 +2703,13 @@ static void nfs4_state_manager(struct nfs_client *clp)
                nfs4_end_drain_session(clp);
                nfs4_clear_state_manager_bit(clp);
 
+               if (test_bit(NFS4CLNT_RUN_MANAGER, &clp->cl_state) &&
+                   !test_and_set_bit(NFS4CLNT_MANAGER_RUNNING,
+                                     &clp->cl_state)) {
+                       memflags = memalloc_nofs_save();
+                       continue;
+               }
+
                if (!test_and_set_bit(NFS4CLNT_RECALL_RUNNING, &clp->cl_state)) {
                        if (test_and_clear_bit(NFS4CLNT_DELEGRETURN, &clp->cl_state)) {
                                nfs_client_return_marked_delegations(clp);