From 97685957d7bb45fd78beda5b175585d69ad04814 Mon Sep 17 00:00:00 2001 From: Nikolaus Rath Date: Thu, 27 Oct 2016 20:50:16 -0700 Subject: Removed some more "Changed in version x.py" comments. --- include/fuse.h | 15 --------------- include/fuse_common.h | 2 -- include/fuse_lowlevel.h | 3 --- 3 files changed, 20 deletions(-) diff --git a/include/fuse.h b/include/fuse.h index ff1475d..4e7d46e 100644 --- a/include/fuse.h +++ b/include/fuse.h @@ -372,8 +372,6 @@ struct fuse_operations { * given flags. Optionally open may also return an arbitrary * filehandle in the fuse_file_info structure, which will be * passed to all file operations. - * - * Changed in version 2.2 */ int (*open) (const char *, struct fuse_file_info *); @@ -385,8 +383,6 @@ struct fuse_operations { * 'direct_io' mount option is specified, in which case the return * value of the read system call will reflect the return value of * this operation. - * - * Changed in version 2.2 */ int (*read) (const char *, char *, size_t, off_t, struct fuse_file_info *); @@ -396,8 +392,6 @@ struct fuse_operations { * Write should return exactly the number of bytes requested * except on error. An exception to this is when the 'direct_io' * mount option is specified (see read operation). - * - * Changed in version 2.2 */ int (*write) (const char *, const char *, size_t, off_t, struct fuse_file_info *); @@ -405,9 +399,6 @@ struct fuse_operations { /** Get file system statistics * * The 'f_favail', 'f_fsid' and 'f_flag' fields are ignored - * - * Replaced 'struct statfs' parameter with 'struct statvfs' in - * version 2.5 */ int (*statfs) (const char *, struct statvfs *); @@ -431,8 +422,6 @@ struct fuse_operations { * * Filesystems shouldn't assume that flush will always be called * after some writes, or that if will be called at all. - * - * Changed in version 2.2 */ int (*flush) (const char *, struct fuse_file_info *); @@ -447,8 +436,6 @@ struct fuse_operations { * have a file opened more than once, in which case only the last * release will mean, that no more reads/writes will happen on the * file. The return value of release is ignored. - * - * Changed in version 2.2 */ int (*release) (const char *, struct fuse_file_info *); @@ -456,8 +443,6 @@ struct fuse_operations { * * If the datasync parameter is non-zero, then only the user data * should be flushed, not the meta data. - * - * Changed in version 2.2 */ int (*fsync) (const char *, int, struct fuse_file_info *); diff --git a/include/fuse_common.h b/include/fuse_common.h index 6a9b34c..c3636b8 100644 --- a/include/fuse_common.h +++ b/include/fuse_common.h @@ -33,8 +33,6 @@ extern "C" { /** * Information about open files - * - * Changed in version 3.0 */ struct fuse_file_info { /** Open flags. Available in open() and release() */ diff --git a/include/fuse_lowlevel.h b/include/fuse_lowlevel.h index 503b682..aa59ec8 100644 --- a/include/fuse_lowlevel.h +++ b/include/fuse_lowlevel.h @@ -284,9 +284,6 @@ struct fuse_lowlevel_ops { * @param attr the attributes * @param to_set bit mask of attributes which should be set * @param fi file information, or NULL - * - * Changed in version 2.5: - * file information filled in for ftruncate */ void (*setattr) (fuse_req_t req, fuse_ino_t ino, struct stat *attr, int to_set, struct fuse_file_info *fi); -- cgit v1.2.3