Unreleased Changes
==================
+* The `fuse_session_new` function no longer accepts the ``-o
+ clone_fd`` option. Instead, this has become a parameter of the
+ `fuse_session_loop_mt` and ``fuse_loop_mt` functions.
+
* For low-level file systems that implement the `write_buf` handler,
the `splice_read` option is now enabled by default. As usual, this
can be changed in the file system's `init` handler.
if (opts.singlethread)
ret = fuse_session_loop(se);
else
- ret = fuse_session_loop_mt(se);
+ ret = fuse_session_loop_mt(se, opts.clone_fd);
fuse_session_unmount(se);
err_out3:
if (opts.singlethread)
ret = fuse_session_loop(se);
else
- ret = fuse_session_loop_mt(se);
+ ret = fuse_session_loop_mt(se, opts.clone_fd);
fuse_session_unmount(se);
err_out3:
if (opts.singlethread)
ret = fuse_session_loop(se);
else
- ret = fuse_session_loop_mt(se);
+ ret = fuse_session_loop_mt(se, opts.clone_fd);
fuse_session_unmount(se);
err_out3:
if (opts.singlethread)
ret = fuse_session_loop(se);
else
- ret = fuse_session_loop_mt(se);
+ ret = fuse_session_loop_mt(se, opts.clone_fd);
assert(retrieve_status != 1);
fuse_session_unmount(se);
if (opts.singlethread)
ret = fuse_session_loop(se);
else
- ret = fuse_session_loop_mt(se);
+ ret = fuse_session_loop_mt(se, opts.clone_fd);
fuse_session_unmount(se);
err_out3:
* in the callback function of fuse_operations is also thread-safe.
*
* @param f the FUSE handle
+ * @param clone_fd whether to use separate device fds for each thread
+ * (may increase performance)
* @return 0 if no error occurred, -1 otherwise
*
* See also: fuse_loop()
*/
-int fuse_loop_mt(struct fuse *f);
+int fuse_loop_mt(struct fuse *f, int clone_fd);
/**
* Get the current context
char *mountpoint;
int show_version;
int show_help;
+ int clone_fd;
};
/**
* Enter a multi-threaded event loop
*
* @param se the session
+ * @param clone_fd whether to use separate device fds for each thread
+ * (may increase performance)
* @return 0 on success, -1 on error
*/
-int fuse_session_loop_mt(struct fuse_session *se);
+int fuse_session_loop_mt(struct fuse_session *se, int clone_fd);
/**
* Flag a session as terminated.
return 1;
if (multithreaded)
- res = fuse_session_loop_mt(se);
+ res = fuse_session_loop_mt(se, 0);
else
res = fuse_session_loop(se);
return fuse_session_loop(f->se);
}
-int fuse_loop_mt(struct fuse *f)
+int fuse_loop_mt(struct fuse *f, int clone_fd)
{
if (f == NULL)
return -1;
if (res)
return -1;
- res = fuse_session_loop_mt(fuse_get_session(f));
+ res = fuse_session_loop_mt(fuse_get_session(f), clone_fd);
fuse_stop_cleanup_thread(f);
return res;
}
uint64_t notify_ctr;
struct fuse_notify_req notify_list;
size_t bufsize;
- int clone_fd;
};
struct fuse_chan {
sem_t finish;
int exit;
int error;
+ int clone_fd;
};
static struct fuse_chan *fuse_chan_new(int fd)
w->mt = mt;
w->ch = NULL;
- if (mt->se->clone_fd) {
+ if (mt->clone_fd) {
w->ch = fuse_clone_chan(mt);
if(!w->ch) {
/* Don't attempt this again */
fprintf(stderr, "fuse: trying to continue "
"without -o clone_fd.\n");
- mt->se->clone_fd = 0;
+ mt->clone_fd = 0;
}
}
free(w);
}
-int fuse_session_loop_mt(struct fuse_session *se)
+int fuse_session_loop_mt(struct fuse_session *se, int clone_fd)
{
int err;
struct fuse_mt mt;
memset(&mt, 0, sizeof(struct fuse_mt));
mt.se = se;
+ mt.clone_fd = clone_fd;
mt.error = 0;
mt.numworker = 0;
mt.numavail = 0;
LL_OPTION("writeback_cache", opts.writeback_cache, 1),
LL_OPTION("no_writeback_cache", opts.no_writeback_cache, 1),
LL_OPTION("time_gran=%u", conn.time_gran, 0),
- LL_OPTION("clone_fd", clone_fd, 1),
FUSE_OPT_END
};
" -o readdirplus=S control readdirplus use (yes|no|auto)\n"
" -o [no_]async_dio asynchronous direct I/O\n"
" -o [no_]writeback_cache asynchronous, buffered writes\n"
-" -o time_gran=N time granularity in nsec\n"
-" -o clone_fd clone fuse device file descriptors\n\n");
+" -o time_gran=N time granularity in nsec\n\n");
}
void fuse_session_destroy(struct fuse_session *se)
FUSE_HELPER_OPT("subtype=", nodefault_subtype),
FUSE_OPT_KEY("fsname=", FUSE_OPT_KEY_KEEP),
FUSE_OPT_KEY("subtype=", FUSE_OPT_KEY_KEEP),
+ FUSE_HELPER_OPT("clone_fd", clone_fd),
FUSE_OPT_END
};
" -d -o debug enable debug output (implies -f)\n"
" -f foreground operation\n"
" -s disable multi-threaded operation\n"
+ " -o clone_fd use separate fuse device fd for each thread\n"
"\n");
}
if (opts.singlethread)
res = fuse_loop(fuse);
else
- res = fuse_loop_mt(fuse);
+ res = fuse_loop_mt(fuse, opts.clone_fd);
if (res)
res = 1;