diff options
Diffstat (limited to 'internal/fusefrontend')
-rw-r--r-- | internal/fusefrontend/dircache.go | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/internal/fusefrontend/dircache.go b/internal/fusefrontend/dircache.go index 5c8b760..6d0d570 100644 --- a/internal/fusefrontend/dircache.go +++ b/internal/fusefrontend/dircache.go @@ -14,8 +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? + // Keep in sync with test_helpers.maxCacheFds ! + // TODO: How to share this constant without causing an import cycle? dirCacheSize = 3 // Enable Lookup/Store/Clear debug messages enableDebugMessages = false @@ -52,7 +52,7 @@ type dirCacheStruct struct { entries [dirCacheSize]dirCacheEntryStruct // Where to store the next entry (index into entries) nextIndex int - // On the first Lookup(), the expire thread is stared, and this flag is set + // On the first Lookup(), the expire thread is started, and this flag is set // to true. expireThreadRunning bool // Hit rate stats. Evaluated and reset by the expire thread. |