Commit 4f74c87d authored by Aaron Jacobs's avatar Aaron Jacobs

Updated a redundant code walk.

parent 308cf97f
...@@ -509,17 +509,8 @@ type ReadFileOp struct { ...@@ -509,17 +509,8 @@ type ReadFileOp struct {
// //
// Note that the kernel *will* ensure that writes are received and acknowledged // Note that the kernel *will* ensure that writes are received and acknowledged
// by the file system before sending a FlushFileOp when closing the file // by the file system before sending a FlushFileOp when closing the file
// descriptor to which they were written: // descriptor to which they were written. Cf. the notes on
// // fuse.MountConfig.DisableWritebackCaching.
// * (http://goo.gl/PheZjf) fuse_flush calls write_inode_now, which appears
// to start a writeback in the background (it talks about a "flusher
// thread").
//
// * (http://goo.gl/1IiepM) fuse_flush then calls fuse_sync_writes, which
// "[waits] for all pending writepages on the inode to finish".
//
// * (http://goo.gl/zzvxWv) Only then does fuse_flush finally send the
// flush request.
// //
// (See also http://goo.gl/ocdTdM, fuse-devel thread "Fuse guarantees on // (See also http://goo.gl/ocdTdM, fuse-devel thread "Fuse guarantees on
// concurrent requests".) // concurrent requests".)
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment