Re: [PATCH] fuse: Allow to align reads/writes

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

 



On Tue, Jul 02, 2024 at 06:31:08PM +0200, Bernd Schubert wrote:
> Read/writes IOs should be page aligned as fuse server
> might need to copy data to another buffer otherwise in
> order to fulfill network or device storage requirements.
> 
> Simple reproducer is with libfuse, example/passthrough*
> and opening a file with O_DIRECT - without this change
> writing to that file failed with -EINVAL if the underlying
> file system was using ext4 (for passthrough_hp the
> 'passthrough' feature has to be disabled).
> 
> Given this needs server side changes as new feature flag is
> introduced.
> 
> Disadvantage of aligned writes is that server side needs
> needs another splice syscall (when splice is used) to seek
> over the unaligned area - i.e. syscall and memory copy overhead.
> 
> Signed-off-by: Bernd Schubert <bschubert@xxxxxxx>
> 
> ---
> From implementation point of view 'struct fuse_in_arg' /
> 'struct fuse_arg' gets another parameter 'align_size', which has to
> be set by fuse_write_args_fill. For all other fuse operations this
> parameter has to be 0, which is guranteed by the existing
> initialization via FUSE_ARGS and C99 style
> initialization { .size = 0, .value = NULL }, i.e. other members are
> zero.
> Another choice would have been to extend fuse_write_in to
> PAGE_SIZE - sizeof(fuse_in_header), but then would be an
> arch/PAGE_SIZE depending struct size and would also require
> lots of stack usage.

Can I see the libfuse side of this?  I'm confused why we need the align_size at
all?  Is it enough to just say that this connection is aligned, negotiate what
the alignment is up front, and then avoid sending it along on every write?
Thanks,

Josef




[Index of Archives]     [Linux Ext4 Filesystem]     [Union Filesystem]     [Filesystem Testing]     [Ceph Users]     [Ecryptfs]     [NTFS 3]     [AutoFS]     [Kernel Newbies]     [Share Photos]     [Security]     [Netfilter]     [Bugtraq]     [Yosemite News]     [MIPS Linux]     [ARM Linux]     [Linux Security]     [Linux Cachefs]     [Reiser Filesystem]     [Linux RAID]     [NTFS 3]     [Samba]     [Device Mapper]     [CEPH Development]

  Powered by Linux