From: Vivek Goyal <vgoyal@redhat.com>
To: Stefan Hajnoczi <stefanha@redhat.com>
Cc: virtio-fs@redhat.com, linux-fsdevel@vger.kernel.org,
linux-kernel@vger.kernel.org, dgilbert@redhat.com,
miklos@szeredi.hu
Subject: Re: [PATCH 4/4] virtiofs: Support blocking posix locks (fcntl(F_SETLKW))
Date: Fri, 22 Nov 2019 08:00:42 -0500 [thread overview]
Message-ID: <20191122130042.GB8636@redhat.com> (raw)
In-Reply-To: <20191121170020.GE445244@stefanha-x1.localdomain>
On Thu, Nov 21, 2019 at 05:00:20PM +0000, Stefan Hajnoczi wrote:
[..]
> > +static int virtio_fs_handle_notify(struct virtio_fs *vfs,
> > + struct virtio_fs_notify *notify)
> > +{
> > + int ret = 0;
> > + struct fuse_out_header *oh = ¬ify->out_hdr;
> > + struct fuse_notify_lock_out *lo;
> > +
> > + /*
> > + * For notifications, oh.unique is 0 and oh->error contains code
> > + * for which notification as arrived.
> > + */
> > + switch(oh->error) {
> > + case FUSE_NOTIFY_LOCK:
> > + lo = (struct fuse_notify_lock_out *) ¬ify->outarg;
> > + notify_complete_waiting_req(vfs, lo);
> > + break;
> > + default:
> > + printk("virtio-fs: Unexpected notification %d\n", oh->error);
> > + }
> > + return ret;
> > +}
>
> Is this specific to virtio or can be it handled in common code?
This is not specific to virtio_fs. In principle, regular fuse daemon could
implement something similar. Though they might not have to because client
can just block without introducing deadlock possibilities.
Anyway, I will look into moving this code into fuse common.
[..]
> > diff --git a/include/uapi/linux/fuse.h b/include/uapi/linux/fuse.h
> > index 373cada89815..45f0c4efec8e 100644
> > --- a/include/uapi/linux/fuse.h
> > +++ b/include/uapi/linux/fuse.h
> > @@ -481,6 +481,7 @@ enum fuse_notify_code {
> > FUSE_NOTIFY_STORE = 4,
> > FUSE_NOTIFY_RETRIEVE = 5,
> > FUSE_NOTIFY_DELETE = 6,
> > + FUSE_NOTIFY_LOCK = 7,
> > FUSE_NOTIFY_CODE_MAX,
> > };
> >
> > @@ -868,6 +869,12 @@ struct fuse_notify_retrieve_in {
> > uint64_t dummy4;
> > };
> >
> > +struct fuse_notify_lock_out {
> > + uint64_t id;
>
> Please call this field "unique" or "lock_unique" so it's clear this
> identifier is the fuse_header_in->unique value of the lock request.
Ok, will do.
Vivek
prev parent reply other threads:[~2019-11-22 13:00 UTC|newest]
Thread overview: 9+ messages / expand[flat|nested] mbox.gz Atom feed top
2019-11-15 20:57 [PATCH 0/4] [RFC] virtiofs: Add a notification queue Vivek Goyal
2019-11-15 20:57 ` [PATCH 1/4] virtiofs: Provide a helper function for virtqueue initialization Vivek Goyal
2019-11-15 20:57 ` [PATCH 2/4] virtiofs: Add an index to keep track of first request queue Vivek Goyal
2019-11-21 16:00 ` Stefan Hajnoczi
2019-11-21 16:00 ` Stefan Hajnoczi
2019-11-15 20:57 ` [PATCH 3/4] virtiofs: Add a virtqueue for notifications Vivek Goyal
2019-11-15 20:57 ` [PATCH 4/4] virtiofs: Support blocking posix locks (fcntl(F_SETLKW)) Vivek Goyal
2019-11-21 17:00 ` Stefan Hajnoczi
2019-11-22 13:00 ` Vivek Goyal [this message]
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=20191122130042.GB8636@redhat.com \
--to=vgoyal@redhat.com \
--cc=dgilbert@redhat.com \
--cc=linux-fsdevel@vger.kernel.org \
--cc=linux-kernel@vger.kernel.org \
--cc=miklos@szeredi.hu \
--cc=stefanha@redhat.com \
--cc=virtio-fs@redhat.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).