From d49f2e77b4741706ec125cc62ea913ed5d39bd39 Mon Sep 17 00:00:00 2001 From: Nikolaus Rath Date: Sat, 15 Oct 2016 16:09:16 -0700 Subject: Unify handling of fuse_conn_info options Instead of using command line options to modify struct fuse_conn_info before and after calling the init() handler, we now give the file system explicit control over this. --- lib/fuse_i.h | 23 ----------------------- 1 file changed, 23 deletions(-) (limited to 'lib/fuse_i.h') diff --git a/lib/fuse_i.h b/lib/fuse_i.h index 5ed23c7..e612b3f 100644 --- a/lib/fuse_i.h +++ b/lib/fuse_i.h @@ -41,34 +41,11 @@ struct fuse_notify_req { struct fuse_notify_req *prev; }; -struct session_opts { - int atomic_o_trunc; - int no_remote_posix_lock; - int no_remote_flock; - int splice_write; - int splice_move; - int splice_read; - int no_splice_write; - int no_splice_move; - int no_splice_read; - int auto_inval_data; - int no_auto_inval_data; - int no_readdirplus; - int no_readdirplus_auto; - int async_dio; - int no_async_dio; - int writeback_cache; - int no_writeback_cache; - int async_read; - int sync_read; -}; - struct fuse_session { char *mountpoint; volatile int exited; int fd; struct mount_opts *mo; - struct session_opts opts; int debug; int allow_root; struct fuse_lowlevel_ops op; -- cgit v1.2.3