Re: [RFC PATCH 44/68] vfs: Convert fuse to use the new mount API

2019-04-24 Thread Miklos Szeredi
On Wed, Apr 24, 2019 at 5:22 PM David Howells wrote: > > Miklos Szeredi wrote: > > > Should I be applying this, together with the vfs dependencies? Or > > will you take care of these? > > I'm hoping Al will take the entire series. > > > One minor comment is that fuse conventionally uses "struct

Re: [RFC PATCH 44/68] vfs: Convert fuse to use the new mount API

2019-04-24 Thread David Howells
Miklos Szeredi wrote: > Should I be applying this, together with the vfs dependencies? Or > will you take care of these? I'm hoping Al will take the entire series. > One minor comment is that fuse conventionally uses "struct fuse_conn > *fc", so "struct fs_context *fc" is confusing here.

Re: [RFC PATCH 44/68] vfs: Convert fuse to use the new mount API

2019-04-24 Thread Miklos Szeredi
On Thu, Mar 28, 2019 at 12:46 AM David Howells wrote: > > Convert the fuse filesystem to the new internal mount API as the old > one will be obsoleted and removed. This allows greater flexibility in > communication of mount parameters between userspace, the VFS and the > filesystem. > > See

[RFC PATCH 44/68] vfs: Convert fuse to use the new mount API

2019-03-27 Thread David Howells
Convert the fuse filesystem to the new internal mount API as the old one will be obsoleted and removed. This allows greater flexibility in communication of mount parameters between userspace, the VFS and the filesystem. See Documentation/filesystems/mount_api.txt for more information. ---