added flush() call
authorMiklos Szeredi <miklos@szeredi.hu>
Tue, 18 May 2004 08:45:28 +0000 (08:45 +0000)
committerMiklos Szeredi <miklos@szeredi.hu>
Tue, 18 May 2004 08:45:28 +0000 (08:45 +0000)
ChangeLog
include/fuse.h
include/linux/fuse.h
kernel/file.c
lib/fuse.c

index 5631b3c206a3aea4b7d0bed253ee05cacd8f9101..c5c5a5a01b60d8a32728e8162857b5e98bc6cac1 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,7 @@
+2004-05-18  Miklos Szeredi <mszeredi@inf.bme.hu>
+
+       * Added flush() call
+       
 2004-05-04  Miklos Szeredi <mszeredi@inf.bme.hu>
 
        * Extended attributes support for 2.4 (patch by Cody Pisto)
index 1cb7bbf4634ea4428c7c9c0a50c130640d5fd4e5..3babaf6fbdc8301bc489fb2b27fb2271a42c6f9b 100644 (file)
@@ -86,15 +86,25 @@ typedef int (*fuse_dirfil_t) (fuse_dirh_t h, const char *name, int type);
  *  - release() is called when an open file has:
  *       1) all file descriptors closed
  *       2) all memory mappings unmapped
- *    For every open() call there will be exactly one release() call
- *    with the same flags.  It is possible to 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.  This call need
- *    only be implemented if this information is required, otherwise
- *    set this function to NULL.
+ *  For every open() call there will be exactly one release() call
+ *  with the same flags.  It is possible to 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.  This call need only be implemented if this
+ *  information is required, otherwise set this function to NULL.
+ * 
+ *  - flush() is called when close() has been called on an open file.
+ *  NOTE: this does not mean that the file is released (e.g. after
+ *  fork() an open file will have two references which both must be
+ *  closed before the file is released).  The flush() method can be
+ *  called more than once for each open().  The return value of
+ *  flush() is passed on to the close() system call.  Implementing
+ *  this call is optional.  If it is not needed by the filesystem,
+ *  then set the callback pointer to NULL.
  * 
  *  - fsync() has a boolean 'datasync' parameter which if TRUE then do
- * an fdatasync() operation.  */
+ *  an fdatasync() operation.  
+ */
 struct fuse_operations {
     int (*getattr)     (const char *, struct stat *);
     int (*readlink)    (const char *, char *, size_t);
@@ -114,6 +124,7 @@ struct fuse_operations {
     int (*read)        (const char *, char *, size_t, off_t);
     int (*write)       (const char *, const char *, size_t, off_t);
     int (*statfs)      (const char *, struct statfs *);
+    int (*flush)       (const char *);
     int (*release)     (const char *, int);
     int (*fsync)       (const char *, int);
     int (*setxattr)    (const char *, const char *, const char *, size_t, int);
index 63cf16707d5db28dbde7b0cf55e950730c102cd9..027cb5e246ffafdb477b0a8aeb7b9ca1f8f561d6 100644 (file)
@@ -82,6 +82,7 @@ enum fuse_opcode {
        FUSE_GETXATTR      = 22,
        FUSE_LISTXATTR     = 23,
        FUSE_REMOVEXATTR   = 24,
+       FUSE_FLUSH         = 25,
 };
 
 /* Conservative buffer size for the client */
index 2c9473f3873d3cf936208184a7419ee53b91a35c..c9a44fda2684d3af88a0e57cd3a63d9d07df54f2 100644 (file)
@@ -92,6 +92,22 @@ static int fuse_release(struct inode *inode, struct file *file)
        return 0;
 }
 
+static int fuse_flush(struct file *file)
+{
+       struct inode *inode = file->f_dentry->d_inode;
+       struct fuse_conn *fc = INO_FC(inode);
+       struct fuse_in in = FUSE_IN_INIT;
+       struct fuse_out out = FUSE_OUT_INIT;
+       
+       in.h.opcode = FUSE_FLUSH;
+       in.h.ino = inode->i_ino;
+       request_send(fc, &in, &out);
+       if (out.h.error == -ENOSYS)
+               return 0;
+       else
+               return out.h.error;
+}
+
 static int fuse_fsync(struct file *file, struct dentry *de, int datasync)
 {
        struct inode *inode = de->d_inode;
@@ -470,6 +486,7 @@ static struct file_operations fuse_file_operations = {
        .write          = generic_file_write,
        .mmap           = generic_file_mmap,
        .open           = fuse_open,
+       .flush          = fuse_flush,
        .release        = fuse_release,
        .fsync          = fuse_fsync,
 #ifdef KERNEL_2_6
index fddcc332ae5b818940b57a573eef41fcefcdc931..9f5e8a9d3613283b8c9d7ebdf4282e13a9ffe6ae 100644 (file)
@@ -829,6 +829,22 @@ static void do_open(struct fuse *f, struct fuse_in_header *in,
     }
 }
 
+static void do_flush(struct fuse *f, struct fuse_in_header *in)
+{
+    char *path;
+    int res;
+
+    res = -ENOENT;
+    path = get_path(f, in->ino);
+    if(path != NULL) {
+        res = -ENOSYS;
+        if(f->op.flush)
+            res = f->op.flush(path);
+        free(path);
+    }
+    send_reply(f, in, res, NULL, 0);
+}
+
 static void do_release(struct fuse *f, struct fuse_in_header *in,
                        struct fuse_open_in *arg)
 {
@@ -1215,6 +1231,10 @@ void __fuse_process_cmd(struct fuse *f, struct fuse_cmd *cmd)
         do_open(f, in, (struct fuse_open_in *) inarg);
         break;
 
+    case FUSE_FLUSH:
+        do_flush(f, in);
+        break;
+
     case FUSE_RELEASE:
         do_release(f, in, (struct fuse_open_in *) inarg);
         break;