aboutsummaryrefslogtreecommitdiff
path: root/internal/fusefrontend/dircache.go
diff options
context:
space:
mode:
authorJakob Unterwurzacher2019-01-04 23:50:01 +0100
committerJakob Unterwurzacher2019-01-04 23:50:01 +0100
commit65eded4a229c52258054f7d4e710beb02aedfe93 (patch)
tree347653f4da7a9d0b93a371f2e0c103f682dd1e31 /internal/fusefrontend/dircache.go
parentc32066c5b0ae716ba43999bf808c5baa7e08edd0 (diff)
tests: bump maxCacheFds to 3
As the dirCache now has 3 entries, the tests should accept up to 3 extra fds without declaring an fd leak.
Diffstat (limited to 'internal/fusefrontend/dircache.go')
-rw-r--r--internal/fusefrontend/dircache.go2
1 files changed, 2 insertions, 0 deletions
diff --git a/internal/fusefrontend/dircache.go b/internal/fusefrontend/dircache.go
index 7e80ddc..5c8b760 100644
--- a/internal/fusefrontend/dircache.go
+++ b/internal/fusefrontend/dircache.go
@@ -14,6 +14,8 @@ import (
const (
// Number of entries in the dirCache. Three entries work well for two
// (probably also three) parallel tar extracts (hit rate around 92%).
+ // Keen in sync with test_helpers.maxCacheFds !
+ // TODO: How to share this constant without causing in import cycle?
dirCacheSize = 3
// Enable Lookup/Store/Clear debug messages
enableDebugMessages = false