Hi Linus, Please pull from: git://git.kernel.org/pub/scm/linux/kernel/git/mszeredi/fuse.git tags/fuse-update-5.17 - Fix a regression introduced in 5.15. - Extend the size of the FUSE_INIT request to accommodate for more flags. There's a slight possibility of a regression for obscure fuse servers; if this happens, then more complexity will need to be added to the protocol. - Allow the DAX property to be controlled by the server on a per-inode basis in virtiofs. - Allow sending security context to the server when creating a file or directory. Thanks, Miklos --- Jeffle Xu (7): fuse: add fuse_should_enable_dax() helper fuse: make DAX mount option a tri-state fuse: support per inode DAX in fuse protocol fuse: enable per inode DAX fuse: negotiate per inode DAX in FUSE_INIT fuse: mark inode DONT_CACHE when per inode DAX hint changes Documentation/filesystem/dax: DAX on virtiofs Miklos Szeredi (1): fuse: extend init flags Vivek Goyal (1): fuse: send security context of inode on file Xie Yongji (1): fuse: Pass correct lend value to filemap_write_and_wait_range() --- Documentation/filesystems/dax.rst | 20 ++++++++- fs/fuse/dax.c | 36 +++++++++++++++- fs/fuse/dir.c | 91 +++++++++++++++++++++++++++++++++++++++ fs/fuse/file.c | 6 +-- fs/fuse/fuse_i.h | 31 +++++++++++-- fs/fuse/inode.c | 89 +++++++++++++++++++++++--------------- fs/fuse/virtio_fs.c | 18 ++++++-- include/uapi/linux/fuse.h | 55 +++++++++++++++++++++-- 8 files changed, 294 insertions(+), 52 deletions(-)