aboutsummaryrefslogtreecommitdiff
path: root/include/fuse_common.h
diff options
context:
space:
mode:
authorNikolaus Rath <Nikolaus@rath.org>2016-10-17 21:22:47 -0700
committerNikolaus Rath <Nikolaus@rath.org>2016-10-20 14:04:37 -0700
commitbcb8568a46a4522d85f9eed626468d98b542e8d8 (patch)
tree23b994c838c878b21edc06e5fa6a325b6fb6ce47 /include/fuse_common.h
parente869f7cc8ee2b0372da42cf31d08fc21c9f4d862 (diff)
downloadlibfuse-bcb8568a46a4522d85f9eed626468d98b542e8d8.tar.gz
Removed all "Introduced in..." comments
Since FUSE 3 is breaking backwards compatibility, this really does not matter.
Diffstat (limited to 'include/fuse_common.h')
-rw-r--r--include/fuse_common.h15
1 files changed, 6 insertions, 9 deletions
diff --git a/include/fuse_common.h b/include/fuse_common.h
index 2a0db73..bdd4a6b 100644
--- a/include/fuse_common.h
+++ b/include/fuse_common.h
@@ -44,27 +44,25 @@ struct fuse_file_info {
writepage */
unsigned int writepage : 1;
- /** Can be filled in by open, to use direct I/O on this file.
- Introduced in version 2.4 */
+ /** 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, to indicate, that cached file data
- need not be invalidated. Introduced in version 2.4 */
+ need not be invalidated. */
unsigned int keep_cache : 1;
/** Indicates a flush operation. Set in flush operation, also
maybe set in highlevel lock operation and lowlevel release
- operation. Introduced in version 2.6 */
+ operation. */
unsigned int flush : 1;
/** Can be filled in by open, to indicate that the file is not
- seekable. Introduced in version 2.8 */
+ seekable. */
unsigned int nonseekable : 1;
/* Indicates that flock locks for this file should be
released. If set, lock_owner shall contain a valid value.
- May only be set in ->release(). Introduced in version
- 2.9 */
+ May only be set in ->release(). */
unsigned int flock_release : 1;
/** Padding. Do not use*/
@@ -78,8 +76,7 @@ struct fuse_file_info {
uint64_t lock_owner;
/** Requested poll events. Available in ->poll. Only set on kernels
- which support it. If unsupported, this field is set to zero.
- Introduced in version 3.0 */
+ which support it. If unsupported, this field is set to zero. */
uint32_t poll_events;
};