Update description of keep_cache.
authorNikolaus Rath <Nikolaus@rath.org>
Wed, 1 Mar 2023 09:46:10 +0000 (09:46 +0000)
committerNikolaus Rath <Nikolaus@rath.org>
Wed, 1 Mar 2023 09:46:10 +0000 (09:46 +0000)
include/fuse_common.h

index ca15be8da325a75b2493c7ca89e1add2703287ec..06ee365a9eed414f257c8ed7883b6b3e72098365 100644 (file)
@@ -62,11 +62,10 @@ struct fuse_file_info {
        /** Can be filled in by open, to use direct I/O on this file. */
        unsigned int direct_io : 1;
 
-       /** Can be filled in by open. It signals the kernel that any
-           currently cached file data (ie., data that the filesystem
-           provided the last time the file was open) need not be
-           invalidated. Has no effect when set in other contexts (in
-           particular it does nothing when set by opendir()). */
+       /** Can be filled in by open and opendir. It signals the kernel that any
+           currently cached data (ie., data that the filesystem provided the
+           last time the file/directory was open) need not be invalidated when
+           the file/directory is closed. */
        unsigned int keep_cache : 1;
 
        /** Indicates a flush operation.  Set in flush operation, also