dlm: fix pending remove if msg allocation fails
authorAlexander Aring <aahringo@redhat.com>
Wed, 6 Apr 2022 17:34:16 +0000 (13:34 -0400)
committerDavid Teigland <teigland@redhat.com>
Wed, 6 Apr 2022 19:03:09 +0000 (14:03 -0500)
This patch unsets ls_remove_len and ls_remove_name if a message
allocation of a remove messages fails. In this case we never send a
remove message out but set the per ls ls_remove_len ls_remove_name
variable for a pending remove. Unset those variable should indicate
possible waiters in wait_pending_remove() that no pending remove is
going on at this moment.

Cc: stable@vger.kernel.org
Signed-off-by: Alexander Aring <aahringo@redhat.com>
Signed-off-by: David Teigland <teigland@redhat.com>
fs/dlm/lock.c

index 137cf09b51e59b4775e51bf6efb4e6a3a69d5666..f5330e58d1fcbf1bb8e6b9f78224bf2faf1e3cf1 100644 (file)
@@ -4100,13 +4100,14 @@ static void send_repeat_remove(struct dlm_ls *ls, char *ms_name, int len)
        rv = _create_message(ls, sizeof(struct dlm_message) + len,
                             dir_nodeid, DLM_MSG_REMOVE, &ms, &mh);
        if (rv)
-               return;
+               goto out;
 
        memcpy(ms->m_extra, name, len);
        ms->m_hash = cpu_to_le32(hash);
 
        send_message(mh, ms);
 
+out:
        spin_lock(&ls->ls_remove_spin);
        ls->ls_remove_len = 0;
        memset(ls->ls_remove_name, 0, DLM_RESNAME_MAXLEN);