fix
authorMiklos Szeredi <miklos@szeredi.hu>
Mon, 13 Oct 2003 10:08:06 +0000 (10:08 +0000)
committerMiklos Szeredi <miklos@szeredi.hu>
Mon, 13 Oct 2003 10:08:06 +0000 (10:08 +0000)
ChangeLog
Filesystems
include/fuse.h
kernel/dev.c
lib/fuse.c

index 43960944c329960248f5ccde1ec9d1c523a6bc81..78180c3efb63ec0cf4602fbc75fb76b21f6248e9 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,7 @@
+2003-10-13  Miklos Szeredi <mszeredi@inf.bme.hu>
+
+       * Error code fixes in kernel module
+       
 2003-10-04  Miklos Szeredi <mszeredi@inf.bme.hu>
 
        * kernel version detection fix
index 3d51d3b55734a571e49e56d007c373dfe0948750..347e1f77a734b20f12aa1684b30409e10fa821e8 100644 (file)
@@ -10,7 +10,7 @@ Description:
   files in a directory. 
 
 ==============================================================================
-Name: FunFS
+Name: FunFS (status: alpha)
 
 Author: Michael Grigoriev (Net Integration Technologies) <mag at
 luminal org>
index 30d5f80a982207e0979f9aa6b6644c991c637962..b54cb47b5b697fb03a4be003cf5c4b226420de3b 100644 (file)
@@ -120,6 +120,31 @@ struct fuse_context {
 extern "C" {
 #endif
 
+/*
+ * Main function of FUSE.
+ *
+ * This is for the lazy.  This is all that has to be called from the
+ * main() function.
+ * 
+ * This function does the following:
+ *   - mounts the filesystem
+ *   - installs signal handlers for INT, HUP, TERM and PIPE
+ *   - registers an exit handler to unmount the filesystem on program exit
+ *   - parses command line options (-d -s and -h)
+ *   - creates a fuse handle
+ *   - registers the operations
+ *   - calls either the single-threaded or the multi-threaded event loop
+ *
+ * @param argc the argument counter passed to the main() function
+ * @param argv the argument vector passed to the main() function
+ * @param op the file system operation 
+ */
+void fuse_main(int argc, char *argv[], const struct fuse_operations *op);
+
+/* ----------------------------------------------------------- *
+ * More detailed API                                           *
+ * ----------------------------------------------------------- */
+
 /*
  * Create a FUSE mountpoint
  *
@@ -169,7 +194,6 @@ void fuse_destroy(struct fuse *f);
  */
 void fuse_loop(struct fuse *f);
 
-
 /**
  * Exit from event loop
  *
@@ -202,31 +226,6 @@ void fuse_loop_mt(struct fuse *f);
  */
 struct fuse_context *fuse_get_context(struct fuse *f);
 
-/* ----------------------------------------------------------- *
- * Miscellaneous helper fuctions                               *
- * ----------------------------------------------------------- */
-
-/*
- * Main function of FUSE.
- *
- * This is for the lazy.  This is all that has to be called from the
- * main() function.
- * 
- * This function does the following:
- *   - mounts the filesystem
- *   - installs signal handlers for INT, HUP, TERM and PIPE
- *   - registers an exit handler to unmount the filesystem on program exit
- *   - parses command line options (-d -s and -h)
- *   - creates a fuse handle
- *   - registers the operations
- *   - calls either the single-threaded or the multi-threaded event loop
- *
- * @param argc the argument counter passed to the main() function
- * @param argv the argument vector passed to the main() function
- * @param op the file system operation 
- */
-void fuse_main(int argc, char *argv[], const struct fuse_operations *op);
-
 /* ----------------------------------------------------------- *
  * Advanced API for event handling, don't worry about this...  *
  * ----------------------------------------------------------- */
index cdc4b6c1490570bd37b5af1a1597cfc377ea1a24..e34bee57fcdd65e5ced74b4d89e059f6c55c80fb 100644 (file)
@@ -192,7 +192,7 @@ static inline int copy_in_one(const void *src, size_t srclen, char **dstp,
 {
        if(*dstlenp < srclen) {
                printk("fuse_dev_read: buffer too small\n");
-               return -EIO;
+               return -EINVAL;
        }
                        
        if(copy_to_user(*dstp, src, srclen))
@@ -298,7 +298,7 @@ static inline int copy_out_one(struct fuse_out_arg *arg, const char **srcp,
        if(*srclenp < dstlen) {
                if(!allowvar) {
                        printk("fuse_dev_write: write is short\n");
-                       return -EIO;
+                       return -EINVAL;
                }
                dstlen = *srclenp;
        }
@@ -342,7 +342,7 @@ static inline int copy_out_args(struct fuse_out *out, const char *buf,
 
        if(nbytes != 0) {
                printk("fuse_dev_write: write is long\n");
-               return -EIO;
+               return -EINVAL;
        }
 
        return 0;
@@ -353,7 +353,7 @@ static inline int copy_out_header(struct fuse_out_header *oh, const char *buf,
 {
        if(nbytes < sizeof(struct fuse_out_header)) {
                printk("fuse_dev_write: write is short\n");
-               return -EIO;
+               return -EINVAL;
        }
        
        if(copy_from_user(oh, buf, sizeof(struct fuse_out_header)))
@@ -381,7 +381,7 @@ static int fuse_user_request(struct fuse_conn *fc, const char *buf,
 
        if (nbytes < sizeof(struct fuse_user_header)) {
                printk("fuse_dev_write: write is short\n");
-               return -EIO;
+               return -EINVAL;
        }
 
        if(copy_from_user(&uh, buf, sizeof(struct fuse_out_header)))
@@ -421,7 +421,7 @@ static ssize_t fuse_dev_write(struct file *file, const char *buf,
 
         if (oh.error <= -512 || oh.error > 0) {
                 printk("fuse_dev_write: bad error value\n");
-                return -EIO;
+                return -EINVAL;
         }
 
        spin_lock(&fuse_lock);
@@ -560,7 +560,7 @@ int fuse_dev_init()
        if(!fuse_req_cachep)
                return -ENOMEM;
 
-       ret = -EIO;
+       ret = -ENOMEM;
        proc_fs_fuse = proc_mkdir("fuse", proc_root_fs);
        if(!proc_fs_fuse) {
                printk("fuse: failed to create directory in /proc/fs\n");
index efe9e9706a4766b889f53176fd04ce040e357f3a..d0537fc11022b4c6620336d3b0965d3a54adc621 100644 (file)
@@ -843,7 +843,7 @@ static void do_write(struct fuse *f, struct fuse_in_header *in,
         if((size_t) res != arg->size) {
             fprintf(stderr, "short write: %u (should be %u)\n", res,
                     arg->size);
-            res = -EIO;
+            res = -EINVAL;
         }
         else 
             res = 0;