From: Jeff Layton <jlayton@kernel.org>
To: Alexander Aring <aahringo@redhat.com>
Cc: linux-nfs@vger.kernel.org, cluster-devel@redhat.com,
ocfs2-devel@lists.linux.dev, linux-fsdevel@vger.kernel.org,
teigland@redhat.com, rpeterso@redhat.com, agruenba@redhat.com,
trond.myklebust@hammerspace.com, anna@kernel.org,
chuck.lever@oracle.com
Subject: Re: [RFCv2 6/7] dlm: use FL_SLEEP to check if blocking request
Date: Thu, 17 Aug 2023 07:27:04 -0400 [thread overview]
Message-ID: <bb8806020ade39f6db9d209b0a4a34dc4d69bdb8.camel@kernel.org> (raw)
In-Reply-To: <CAK-6q+i3oKN3M_kdoQ99hMnzSZyRH1sPdxZ0MQMwp+vSixUhwg@mail.gmail.com>
On Wed, 2023-08-16 at 21:19 -0400, Alexander Aring wrote:
> Hi,
>
> On Wed, Aug 16, 2023 at 9:07 AM Jeff Layton <jlayton@kernel.org> wrote:
> >
> > On Mon, 2023-08-14 at 17:11 -0400, Alexander Aring wrote:
> > > This patch uses the FL_SLEEP flag in struct file_lock to check if it's a
> > > blocking request in case if the request coming from nfs lockd process
> > > indicated by lm_grant() is set.
> > >
> > > IF FL_SLEEP is set a asynchronous blocking request is being made and
> > > it's waiting for lm_grant() callback being called to signal the lock was
> > > granted. If it's not set a synchronous non-blocking request is being made.
> > >
> > > Signed-off-by: Alexander Aring <aahringo@redhat.com>
> > > ---
> > > fs/dlm/plock.c | 38 ++++++++++++++++++++++----------------
> > > 1 file changed, 22 insertions(+), 16 deletions(-)
> > >
> > > diff --git a/fs/dlm/plock.c b/fs/dlm/plock.c
> > > index 0094fa4004cc..524771002a2f 100644
> > > --- a/fs/dlm/plock.c
> > > +++ b/fs/dlm/plock.c
> > > @@ -140,7 +140,6 @@ int dlm_posix_lock(dlm_lockspace_t *lockspace, u64 number, struct file *file,
> > > op->info.optype = DLM_PLOCK_OP_LOCK;
> > > op->info.pid = fl->fl_pid;
> > > op->info.ex = (fl->fl_type == F_WRLCK);
> > > - op->info.wait = IS_SETLKW(cmd);
> > > op->info.fsid = ls->ls_global_id;
> > > op->info.number = number;
> > > op->info.start = fl->fl_start;
> > > @@ -148,24 +147,31 @@ int dlm_posix_lock(dlm_lockspace_t *lockspace, u64 number, struct file *file,
> > > op->info.owner = (__u64)(long)fl->fl_owner;
> > > /* async handling */
> > > if (fl->fl_lmops && fl->fl_lmops->lm_grant) {
> > > - op_data = kzalloc(sizeof(*op_data), GFP_NOFS);
> > > - if (!op_data) {
> > > - dlm_release_plock_op(op);
> > > - rv = -ENOMEM;
> > > - goto out;
> > > - }
> > > + if (fl->fl_flags & FL_SLEEP) {
> > > + op_data = kzalloc(sizeof(*op_data), GFP_NOFS);
> > > + if (!op_data) {
> > > + dlm_release_plock_op(op);
> > > + rv = -ENOMEM;
> > > + goto out;
> > > + }
> > >
> > > - op_data->callback = fl->fl_lmops->lm_grant;
> > > - locks_init_lock(&op_data->flc);
> > > - locks_copy_lock(&op_data->flc, fl);
> > > - op_data->fl = fl;
> > > - op_data->file = file;
> > > + op->info.wait = 1;
> > > + op_data->callback = fl->fl_lmops->lm_grant;
> > > + locks_init_lock(&op_data->flc);
> > > + locks_copy_lock(&op_data->flc, fl);
> > > + op_data->fl = fl;
> > > + op_data->file = file;
> > >
> > > - op->data = op_data;
> > > + op->data = op_data;
> > >
> > > - send_op(op);
> > > - rv = FILE_LOCK_DEFERRED;
> > > - goto out;
> > > + send_op(op);
> > > + rv = FILE_LOCK_DEFERRED;
> > > + goto out;
> >
> > A question...we're returning FILE_LOCK_DEFERRED after the DLM request is
> > sent. If it ends up being blocked, what happens? Does it do a lm_grant
> > downcall with -EAGAIN or something as the result?
> >
>
> no, when info->wait is set then it is a blocked lock request, which
> means lm_grant() will be called when the lock request is granted.
>
Ok, that's probably problematic with the current code too. lockd will
time out the block after 7s, so if the lock isn't granted in that time
it'll give up on it.
> >
> > > + } else {
> > > + op->info.wait = 0;
> > > + }
> > > + } else {
> > > + op->info.wait = IS_SETLKW(cmd);
> > > }
> > >
> > > send_op(op);
> >
> > Looks reasonable overall.
> >
> > Now that I look, we have quite a number of places in the kernel that
> > seem to check for F_SETLKW, when what they really want is to check
> > FL_SLEEP.
>
> Yes, so far I understand FL_SLEEP is F_SETLKW when you get only
> F_SETLK in case of fl->fl_lmops && fl->fl_lmops->lm_grant is true. It
> is confusing but this is how it works... if it's not set we will get
> F_SETLKW and this should imply FL_SLEEP is set.
>
>
Yeah. Might be good to consider how to make this more consistent across
the kernel.
--
Jeff Layton <jlayton@kernel.org>
next prev parent reply other threads:[~2023-08-17 11:29 UTC|newest]
Thread overview: 22+ messages / expand[flat|nested] mbox.gz Atom feed top
2023-08-14 21:11 [RFCv2 0/7] fs: nfs: async lock request changes Alexander Aring
2023-08-14 21:11 ` [RFCv2 1/7] lockd: fix race in async lock request handling Alexander Aring
2023-08-15 17:49 ` Jeff Layton
2023-08-15 18:21 ` Jeff Layton
2023-08-17 18:39 ` Alexander Aring
2023-08-17 18:36 ` Alexander Aring
2023-08-14 21:11 ` [RFCv2 2/7] lockd: FILE_LOCK_DEFERRED only on FL_SLEEP Alexander Aring
2023-08-16 11:37 ` Jeff Layton
2023-08-17 1:40 ` Alexander Aring
2023-08-14 21:11 ` [RFCv2 3/7] lockd: introduce safe async lock op Alexander Aring
2023-08-16 11:43 ` Jeff Layton
2023-08-14 21:11 ` [RFCv2 4/7] locks: update lock callback documentation Alexander Aring
2023-08-16 12:01 ` Jeff Layton
2023-08-17 1:23 ` Alexander Aring
2023-08-14 21:11 ` [RFCv2 5/7] dlm: use fl_owner from lockd Alexander Aring
2023-08-16 12:02 ` Jeff Layton
2023-08-14 21:11 ` [RFCv2 6/7] dlm: use FL_SLEEP to check if blocking request Alexander Aring
2023-08-16 13:07 ` Jeff Layton
2023-08-17 1:19 ` Alexander Aring
2023-08-17 11:27 ` Jeff Layton [this message]
2023-08-17 13:02 ` Alexander Aring
2023-08-14 21:11 ` [RFCv2 7/7] dlm: implement EXPORT_OP_SAFE_ASYNC_LOCK Alexander Aring
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=bb8806020ade39f6db9d209b0a4a34dc4d69bdb8.camel@kernel.org \
--to=jlayton@kernel.org \
--cc=aahringo@redhat.com \
--cc=agruenba@redhat.com \
--cc=anna@kernel.org \
--cc=chuck.lever@oracle.com \
--cc=cluster-devel@redhat.com \
--cc=linux-fsdevel@vger.kernel.org \
--cc=linux-nfs@vger.kernel.org \
--cc=ocfs2-devel@lists.linux.dev \
--cc=rpeterso@redhat.com \
--cc=teigland@redhat.com \
--cc=trond.myklebust@hammerspace.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).