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
*
*/
void fuse_loop(struct fuse *f);
-
/**
* Exit from event loop
*
*/
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... *
* ----------------------------------------------------------- */
{
if(*dstlenp < srclen) {
printk("fuse_dev_read: buffer too small\n");
- return -EIO;
+ return -EINVAL;
}
if(copy_to_user(*dstp, src, srclen))
if(*srclenp < dstlen) {
if(!allowvar) {
printk("fuse_dev_write: write is short\n");
- return -EIO;
+ return -EINVAL;
}
dstlen = *srclenp;
}
if(nbytes != 0) {
printk("fuse_dev_write: write is long\n");
- return -EIO;
+ return -EINVAL;
}
return 0;
{
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)))
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)))
if (oh.error <= -512 || oh.error > 0) {
printk("fuse_dev_write: bad error value\n");
- return -EIO;
+ return -EINVAL;
}
spin_lock(&fuse_lock);
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");