From: Andrew Morton <akpm@linux-foundation.org>
To: ocfs2-devel@oss.oracle.com
Subject: [Ocfs2-devel] [PATCH v2] ocfs2: retry once dlm_dispatch_assert_master failed with ENOMEM
Date: Thu, 10 Apr 2014 15:14:23 -0700 [thread overview]
Message-ID: <20140410151423.2e8280458f6f5564dcc2aa0a@linux-foundation.org> (raw)
In-Reply-To: <5345F0DD.3050800@oracle.com>
On Thu, 10 Apr 2014 09:16:13 +0800 Wengang <wen.gang.wang@oracle.com> wrote:
> >> @@ -1685,18 +1688,30 @@ int dlm_master_requery_handler(struct o2net_msg *msg, u32 len, void *data,
> >>
> >> hash = dlm_lockid_hash(req->name, req->namelen);
> >>
> >> +retry:
> >> spin_lock(&dlm->spinlock);
> >> res = __dlm_lookup_lockres(dlm, req->name, req->namelen, hash);
> >> if (res) {
> >> spin_lock(&res->spinlock);
> >> master = res->owner;
> >> if (master == dlm->node_num) {
> >> - int ret = dlm_dispatch_assert_master(dlm, res,
> >> - 0, 0, flags);
> >> + ret = dlm_dispatch_assert_master(dlm, res,
> >> + 0, 0, flags);
> >> if (ret < 0) {
> >> - mlog_errno(-ENOMEM);
> >> - /* retry!? */
> >> - BUG();
> >> + mlog_errno(ret);
> >> +
> >> + /* ENOMEM returns, retry until
> >> + * DISPATCH_ASSERT_RETRY_TIMES reached */
> >> + if (retries < DISPATCH_ASSERT_RETRY_TIMES) {
> >> + spin_unlock(&res->spinlock);
> >> + dlm_lockres_put(res);
> >> + spin_unlock(&dlm->spinlock);
> >> + msleep(50);
> >> + retries++;
> >> + goto retry;
> >> + } else {
> >> + BUG();
> >> + }
> > urgh, this is not good. dlm_dispatch_assert_master() uses GFP_ATOMIC
> > and the chances of that failing are relatively high. The msleep()
> > might save us, but what happens if we cannot get more memory until some
> > writeback occurs to this filesystem?
> >
> > It would be much better to use GFP_KERNEL in
> > dlm_dispatch_assert_master(). That means preallocating the
> > dlm_work_item in the caller before taking the spinlock.
> >
> Though to use GFP_KERNEL is safe, it may block the whole o2cb network
> message processing(I detailed this in a separated thread).
The code you're proposing can stall for 100ms. Does GFP_KERNEL ever
take longer than that?
> I think the original GFP_ATOMIC is for that purpose.
Well. We shouldn't "think" - we should know. And the way we know is
by adding code comments. The comments in your proposed patch don't
improve things because they describe "what" the code is doing (which
was obvious anyway) but they do not explain "why".
> So I still persist we find a
> way to return a EAGAIN-like error code to peer in case of no-mem, and
> peer retries on receiving the EAGAIN-like error.
There are all sorts of ways around this. For example, try the
allocation with GFP_ATOMIC|__GFP_NOWARN. In the very rare case where
this fails, fall back to GFP_KERNEL. This is probably equivalent to
using GFP_KERNEL|__GFP_HIGH.
next prev parent reply other threads:[~2014-04-10 22:14 UTC|newest]
Thread overview: 5+ messages / expand[flat|nested] mbox.gz Atom feed top
2014-04-08 10:47 [Ocfs2-devel] [PATCH v2] ocfs2: retry once dlm_dispatch_assert_master failed with ENOMEM Joseph Qi
2014-04-09 21:44 ` Andrew Morton
2014-04-10 1:16 ` Wengang
2014-04-10 22:14 ` Andrew Morton [this message]
2014-04-11 1:32 ` Wengang
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=20140410151423.2e8280458f6f5564dcc2aa0a@linux-foundation.org \
--to=akpm@linux-foundation.org \
--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;
as well as URLs for NNTP newsgroup(s).