fuse_lowlevel: Add max_pages support (#384)
authorscosu <mpargmann@allfex.org>
Thu, 13 Jun 2019 11:59:10 +0000 (13:59 +0200)
committerNikolaus Rath <Nikolaus@rath.org>
Thu, 13 Jun 2019 11:59:10 +0000 (12:59 +0100)
commit027d0d17c8a4605109f09d9c988e255b64a2c19a
treecbf486cc5b25a2ffe7659071fc010df045cd7a79
parent63c11456d48b156b33b8b16cd47759c0d406f5b9
fuse_lowlevel: Add max_pages support (#384)

Starting with kernel version 4.20 fuse supports a new property
'max_pages' which is the maximum number of pages that can be used per
request. This can be set via an argument during initialization.
This new property allows writes to be larger than 128k.

This patch sets the property if the matching capability is set
(FUSE_MAX_PAGES). It will also set max_write to 1MiB. Filesystems have
the possibility to decrease this size by setting max_write to a smaller
size. The max_pages and bufsize fields are adjusted accordingly.

Cc: Constantine Shulyupin <const@MakeLinux.com>
Signed-off-by: Markus Pargmann <scosu@quobyte.com>
ChangeLog.rst
lib/fuse_i.h
lib/fuse_lowlevel.c