All of lore.kernel.org
 help / color / mirror / Atom feed
From: Vivek Goyal <vgoyal@redhat.com>
To: Jeffle Xu <jefflexu@linux.alibaba.com>
Cc: virtio-fs@redhat.com, joseph.qi@linux.alibaba.com, miklos@szeredi.hu
Subject: Re: [Virtio-fs] [virtiofsd PATCH v6 6/6] virtiofsd: implement persistent inode attribute based dax policy
Date: Wed, 20 Oct 2021 13:55:45 -0400	[thread overview]
Message-ID: <YXBYIU7lC5Hi6pog@redhat.com> (raw)
In-Reply-To: <20211011030938.109206-7-jefflexu@linux.alibaba.com>

On Mon, Oct 11, 2021 at 11:09:38AM +0800, Jeffle Xu wrote:
> The per-file DAX feature in ext4/xfs uses the persistent inode
> attribute, i.e. FS_DAX_FL/FS_XFLAG_DAX, to indicate if DAX shall be
> enable for this file or not when filesystem is mounted in per-file DAX
> mode.
> 
> To keep compatible with this feature in ext4/xfs, virtiofs also supports
> enabling DAX depending on the persistent inode attribute, which may be
> set/cleared by users inside guest or admin on host.
> 
> This policy is used when '-o dax=attr' option is specified for
> virtiofsd.

I guess keep this patch higher up in the patch series as we want to make
sure this behavior works first. And then implement server specific policy.
Just a minor nit. 

Once you post new patch series with kernel changes, I will spend some time
testing these patches.

Vivek
> 
> Signed-off-by: Jeffle Xu <jefflexu@linux.alibaba.com>
> ---
>  tools/virtiofsd/passthrough_ll.c | 22 ++++++++++++++++++++--
>  1 file changed, 20 insertions(+), 2 deletions(-)
> 
> diff --git a/tools/virtiofsd/passthrough_ll.c b/tools/virtiofsd/passthrough_ll.c
> index a5a5061906..6f75cd6d92 100644
> --- a/tools/virtiofsd/passthrough_ll.c
> +++ b/tools/virtiofsd/passthrough_ll.c
> @@ -1000,7 +1000,7 @@ static int do_statx(struct lo_data *lo, int dirfd, const char *pathname,
>      return 0;
>  }
>  
> -static bool lo_should_enable_dax(struct lo_data *lo,
> +static bool lo_should_enable_dax(struct lo_data *lo, struct lo_inode *inode,
>                                   struct fuse_entry_param *e)
>  {
>      if (lo->dax == DAX_NONE || !S_ISREG(e->attr.st_mode)) {
> @@ -1011,6 +1011,24 @@ static bool lo_should_enable_dax(struct lo_data *lo,
>          return e->attr.st_size > FUSE_PERFILE_DAX_POINT;
>      }
>  
> +    if (lo->dax & DAX_ATTR) {
> +        int res, fd;
> +        int ret = false;;
> +        unsigned int attr;
> +
> +        fd = lo_inode_open(lo, inode, O_RDONLY);
> +        if (fd == -1) {
> +            return false;
> +        }
> +
> +        res = ioctl(fd, FS_IOC_GETFLAGS, &attr);
> +        if (!res && (attr & FS_DAX_FL))
> +            ret = true;
> +
> +        close(fd);
> +        return ret;
> +    }
> +
>      return false;
>  }
>  
> @@ -1104,7 +1122,7 @@ static int lo_do_lookup(fuse_req_t req, fuse_ino_t parent, const char *name,
>      }
>      e->ino = inode->fuse_ino;
>  
> -    if (lo_should_enable_dax(lo, e)) {
> +    if (lo_should_enable_dax(lo, inode, e)) {
>          e->attr_flags |= FUSE_ATTR_DAX;
>      }
>  
> -- 
> 2.27.0
> 


      reply	other threads:[~2021-10-20 17:55 UTC|newest]

Thread overview: 14+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2021-10-11  3:09 [Virtio-fs] [virtiofsd PATCH v6 0/6] virtiofsd: support per-file DAX Jeffle Xu
2021-10-11  3:09 ` [Virtio-fs] [virtiofsd PATCH v6 1/6] virtiofsd: add .ioctl() support Jeffle Xu
2021-10-15  2:49   ` [Virtio-fs] [virtiofsd PATCH v7 " Jeffle Xu
2021-10-20 17:36   ` [Virtio-fs] [virtiofsd PATCH v6 " Vivek Goyal
2021-10-21  2:32     ` JeffleXu
2021-10-11  3:09 ` [Virtio-fs] [virtiofsd PATCH v6 2/6] virtiofsd: support per-file DAX in fuse protocol Jeffle Xu
2021-10-11  3:09 ` [Virtio-fs] [virtiofsd PATCH v6 3/6] virtiofsd: negotiate per-file DAX in FUSE_INIT Jeffle Xu
2021-10-11  3:09 ` [Virtio-fs] [virtiofsd PATCH v6 4/6] virtiofsd: add 'dax=' option Jeffle Xu
2021-10-11  3:09 ` [Virtio-fs] [virtiofsd PATCH v6 5/6] virtiofsd: implement file size based dax policy Jeffle Xu
2021-10-20 17:54   ` Vivek Goyal
2021-11-01  8:59     ` JeffleXu
2021-11-01 13:18       ` Vivek Goyal
2021-10-11  3:09 ` [Virtio-fs] [virtiofsd PATCH v6 6/6] virtiofsd: implement persistent inode attribute " Jeffle Xu
2021-10-20 17:55   ` 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=YXBYIU7lC5Hi6pog@redhat.com \
    --to=vgoyal@redhat.com \
    --cc=jefflexu@linux.alibaba.com \
    --cc=joseph.qi@linux.alibaba.com \
    --cc=miklos@szeredi.hu \
    --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 an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.