From 12003cad3ec526f6f409c0d3af9cafe16562be90 Mon Sep 17 00:00:00 2001 From: Aaron Jacobs Date: Fri, 27 Feb 2015 13:32:44 +1100 Subject: [PATCH] Added more context. --- file_system.go | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/file_system.go b/file_system.go index 5943dd2..d416e9a 100644 --- a/file_system.go +++ b/file_system.go @@ -27,7 +27,9 @@ type FileSystem interface { req *LookUpInodeRequest) (*LookUpInodeResponse, error) // Refresh the attributes for an inode whose ID was previously returned by - // LookUpInode. + // LookUpInode. The kernel calls this when the FUSE VFS layer's cache of + // inode attributes is stale. This is controlled by the AttributesExpiration + // field of responses to LookUp, etc. GetInodeAttributes( ctx context.Context, req *GetInodeAttributesRequest) (*GetInodeAttributesResponse, error)