From: Joseph Qi <joseph.qi@linux.alibaba.com>
To: Gang He <ghe@suse.com>, mark@fasheh.com, jlbec@evilplan.org
Cc: linux-kernel@vger.kernel.org, ocfs2-devel@oss.oracle.com,
akpm@linux-foundation.org
Subject: Re: [PATCH] ocfs2: ocfs2_downconvert_lock failure results in deadlock
Date: Thu, 26 Aug 2021 16:23:13 +0800 [thread overview]
Message-ID: <b3f498eb-7de5-8a7f-0f52-01c1e2caa5d8@linux.alibaba.com> (raw)
In-Reply-To: <20210826061038.22295-1-ghe@suse.com>
On 8/26/21 2:10 PM, Gang He wrote:
> Usually, ocfs2_downconvert_lock() function always downconverts
> dlm lock to the expected level for satisfy dlm bast requests
s/for/to
> from the other nodes.
> But there is a rare situation. When dlm lock conversion is being
> canceled, ocfs2_downconvert_lock() function will return -EBUSY.
> You need to be aware that ocfs2_cancel_convert() function is
> asynchronous in fsdlm implementation.
> If we does not requeue this lockres entry, ocfs2 downconvert
> thread no longer handles this dlm lock bast request. Then, the
> other nodes will not get the dlm lock again, the current node's
> process will be blocked when acquire this dlm lock again.
>
> Signed-off-by: Gang He <ghe@suse.com>
> ---
> fs/ocfs2/dlmglue.c | 13 +++++++++----
> 1 file changed, 9 insertions(+), 4 deletions(-)
>
> diff --git a/fs/ocfs2/dlmglue.c b/fs/ocfs2/dlmglue.c
> index 48fd369c29a4..c454c218fbfe 100644
> --- a/fs/ocfs2/dlmglue.c
> +++ b/fs/ocfs2/dlmglue.c
> @@ -3671,13 +3671,11 @@ static int ocfs2_downconvert_lock(struct ocfs2_super *osb,
> OCFS2_LOCK_ID_MAX_LEN - 1);
> lockres_clear_pending(lockres, generation, osb);
> if (ret) {
> - ocfs2_log_dlm_error("ocfs2_dlm_lock", ret, lockres);
> + if (ret != -EBUSY)
> + ocfs2_log_dlm_error("ocfs2_dlm_lock", ret, lockres);
Do we have to treat EBUSY as a normal case?
> ocfs2_recover_from_dlm_error(lockres, 1);
> - goto bail;
> }
>
> - ret = 0;
> -bail:
> return ret;
> }
>
> @@ -3912,6 +3910,13 @@ static int ocfs2_unblock_lock(struct ocfs2_super *osb,
> spin_unlock_irqrestore(&lockres->l_lock, flags);
> ret = ocfs2_downconvert_lock(osb, lockres, new_level, set_lvb,
> gen);
> + /* ocfs2_cancel_convert() is in progress, try again later */
> + if (ret == -EBUSY) {
> + ctl->requeue = 1;
> + mlog(ML_BASTS, "lockres %s, ReQ: Downconvert busy\n",
> + lockres->l_name);
> + ret = 0;
Ditto. If EBUSY is not a normal case, I'd like just requeue it but not
change it to normal return code.
You know ML_BASTS is always switched off in production environment.
Thanks,
Joseph
> + }
>
> leave:
> if (ret)
>
next prev parent reply other threads:[~2021-08-26 8:23 UTC|newest]
Thread overview: 5+ messages / expand[flat|nested] mbox.gz Atom feed top
2021-08-26 6:10 Gang He
2021-08-26 8:23 ` Joseph Qi [this message]
2021-08-26 8:45 ` Gang He
2021-08-26 9:55 ` Joseph Qi
2021-08-27 5:50 ` Gang He
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=b3f498eb-7de5-8a7f-0f52-01c1e2caa5d8@linux.alibaba.com \
--to=joseph.qi@linux.alibaba.com \
--cc=akpm@linux-foundation.org \
--cc=ghe@suse.com \
--cc=jlbec@evilplan.org \
--cc=linux-kernel@vger.kernel.org \
--cc=mark@fasheh.com \
--cc=ocfs2-devel@oss.oracle.com \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox
all inboxes | Powered by JetHome®