ocfs2/dlm: clear DROPPING_REF flag when the master goes down
[platform/kernel/linux-starfive.git] / fs / ocfs2 / dlm / dlmrecovery.c
index b94a425..1eee96e 100644 (file)
@@ -2377,14 +2377,16 @@ static void dlm_do_local_recovery_cleanup(struct dlm_ctxt *dlm, u8 dead_node)
                        dlm_revalidate_lvb(dlm, res, dead_node);
                        if (res->owner == dead_node) {
                                if (res->state & DLM_LOCK_RES_DROPPING_REF) {
-                                       mlog(ML_NOTICE, "%s: res %.*s, Skip "
-                                            "recovery as it is being freed\n",
-                                            dlm->name, res->lockname.len,
-                                            res->lockname.name);
-                               } else
-                                       dlm_move_lockres_to_recovery_list(dlm,
-                                                                         res);
-
+                                       mlog(0, "%s:%.*s: owned by "
+                                               "dead node %u, this node was "
+                                               "dropping its ref when it died. "
+                                               "continue, dropping the flag.\n",
+                                               dlm->name, res->lockname.len,
+                                               res->lockname.name, dead_node);
+                               }
+                               res->state &= ~DLM_LOCK_RES_DROPPING_REF;
+                               dlm_move_lockres_to_recovery_list(dlm,
+                                               res);
                        } else if (res->owner == dlm->node_num) {
                                dlm_free_dead_locks(dlm, res, dead_node);
                                __dlm_lockres_calc_usage(dlm, res);