diff options
Diffstat (limited to 'include/fuse_common.h')
-rw-r--r-- | include/fuse_common.h | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/include/fuse_common.h b/include/fuse_common.h index 2110946..bb120d2 100644 --- a/include/fuse_common.h +++ b/include/fuse_common.h @@ -26,11 +26,12 @@ struct fuse_file_info { writepage */ int writepage; - /** Can be filled in by open, to use direct I/O on this file */ + /** Can be filled in by open, to use direct I/O on this file. + Introduced in version 2.4 */ unsigned int direct_io : 1; /** Can be filled in by open, to indicate, that cached file data - need not be invalidated */ + need not be invalidated. Introduced in version 2.4 */ unsigned int keep_cache : 1; }; |