aboutsummaryrefslogtreecommitdiffstats
path: root/include/fuse_common.h
diff options
context:
space:
mode:
authorMiklos Szeredi <miklos@szeredi.hu>2005-08-01 12:48:30 +0000
committerMiklos Szeredi <miklos@szeredi.hu>2005-08-01 12:48:30 +0000
commit7b28eaeac5f2d8d591b1b0c94e10b64644017869 (patch)
treeb59344f5b9261da640b0e21ac398093755fdfbae /include/fuse_common.h
parente77cc07e755c1e360455e707653f705d0bd25622 (diff)
downloadlibfuse-7b28eaeac5f2d8d591b1b0c94e10b64644017869.tar.gz
fix
Diffstat (limited to 'include/fuse_common.h')
-rw-r--r--include/fuse_common.h5
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;
};