Enabled parallel direct IO writes for passthrough examples
authorBernd Schubert <bschubert@ddn.com>
Tue, 10 Oct 2023 11:18:36 +0000 (13:18 +0200)
committerNikolaus Rath <Nikolaus@rath.org>
Wed, 11 Oct 2023 07:39:11 +0000 (08:39 +0100)
commit063ef8e03ff669579d3a441bece702283b7654e3
tree7dc4b2ba6bae6e4c4de91f16a1e327bfdc901ff0
parentef11cf9eace3cf5f529a23899ae850c09aaf64bc
Enabled parallel direct IO writes for passthrough examples

All these passthrough examples don't need writes to be serialized.

Actually, most file systems probably handle non serialized parallel
direct writes - the FOPEN_PARALLEL_DIRECT_WRITES flag is just
to avoid a regression for those file system that rely on serialized
DIO writes in fuse kernel. Passthrough file system forward the IO
to another file system, which actually handles that internally -
serialized in fuser kernel is not needed.
example/passthrough.c
example/passthrough_fh.c
example/passthrough_hp.cc
example/passthrough_ll.c