Oh, no, not specifically. My codebase is running its own event loop
(calling fuse_chan_recv), and I was planning to do disk io in
different threads. I might not understand what the async_read option
is (but seeing as how it's the Linux-side default), I assumed what is
happening is that I might read a fuse_chan_recv request for a read
operation off the channel before I had sent a fuse_reply_buf for a
previous one. If my assumption is correct, this is nice so I can
handle requests simultaneously.
I suppose it's no real loss if they get serialized. Or perhaps I'm
just confused about what the async_read option is.
-JT