fuse_session_process_buf(): improve documentation
authorNikolaus Rath <Nikolaus@rath.org>
Tue, 4 Oct 2016 04:24:23 +0000 (21:24 -0700)
committerNikolaus Rath <Nikolaus@rath.org>
Tue, 4 Oct 2016 06:01:46 +0000 (23:01 -0700)
include/fuse_lowlevel.h

index 9d57144066deb3c592e83de0502f34eebbd7140e..f2d9caa2b922014025aa3ba3ede282fa8146729b 100644 (file)
@@ -1760,10 +1760,11 @@ void fuse_session_process_buf(struct fuse_session *se,
                              const struct fuse_buf *buf);
 
 /**
- * Receive a raw request supplied in a generic buffer
+ * Read a raw request from the kernel into the supplied buffer.
  *
- * The fuse_buf supplied to this function contains a suitably allocated memory
- * buffer.  This may be overwritten with a file descriptor buffer.
+ * Depending on file system options, system capabilities, and request
+ * size the request is either read into a memory buffer or spliced
+ * into a temporary pipe.
  *
  * @param se the session
  * @param buf the fuse_buf to store the request in