From df888905abb3855627ea460047b9201f5de5a117 Mon Sep 17 00:00:00 2001 From: Aaron Jacobs Date: Tue, 11 Aug 2015 05:54:41 +0000 Subject: [PATCH] Set InitWritebackCache. --- connection.go | 3 +++ 1 file changed, 3 insertions(+) diff --git a/connection.go b/connection.go index 7dfd29f..5ae345d 100644 --- a/connection.go +++ b/connection.go @@ -165,6 +165,9 @@ func (c *Connection) Init() (err error) { // Tell the kernel not to use pitifully small 4 KiB writes. initOp.Flags |= fusekernel.InitBigWrites + // TODO(jacobsa): Add comments motivating this. + initOp.Flags |= fusekernel.InitWritebackCache + c.Reply(ctx, nil) return }