diff options
author | Jeffle Xu <jefflexu@linux.alibaba.com> | 2021-11-25 15:05:28 +0800 |
---|---|---|
committer | Miklos Szeredi <mszeredi@redhat.com> | 2021-12-14 11:09:37 +0100 |
commit | 2ee019fadcca343c3deea6a1767965bdf23fc3d0 (patch) | |
tree | f167c77e4cef2465e4fcff4e2931abebfddabee4 /fs/fuse/fuse_i.h | |
parent | 93a497b9ad695bb2f38a302c5b29dbc9b555ff3f (diff) |
fuse: negotiate per inode DAX in FUSE_INIT
Among the FUSE_INIT phase, client shall advertise per inode DAX if it's
mounted with "dax=inode". Then server is aware that client is in per
inode DAX mode, and will construct per-inode DAX attribute accordingly.
Server shall also advertise support for per inode DAX. If server doesn't
support it while client is mounted with "dax=inode", client will
silently fallback to "dax=never" since "dax=inode" is advisory only.
Signed-off-by: Jeffle Xu <jefflexu@linux.alibaba.com>
Reviewed-by: Vivek Goyal <vgoyal@redhat.com>
Signed-off-by: Miklos Szeredi <mszeredi@redhat.com>
Diffstat (limited to 'fs/fuse/fuse_i.h')
-rw-r--r-- | fs/fuse/fuse_i.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/fs/fuse/fuse_i.h b/fs/fuse/fuse_i.h index ccbc4de7870b..6d63bd403a43 100644 --- a/fs/fuse/fuse_i.h +++ b/fs/fuse/fuse_i.h @@ -780,6 +780,9 @@ struct fuse_conn { /* Initialize security xattrs when creating a new inode */ unsigned int init_security:1; + /* Does the filesystem support per inode DAX? */ + unsigned int inode_dax:1; + /** The number of requests waiting for completion */ atomic_t num_waiting; |