From f6141f515bda9e7f61628f6ed3d32dcc2b8c160c Mon Sep 17 00:00:00 2001 From: Sebastian Messmer Date: Sat, 16 Jul 2016 17:08:53 +0200 Subject: [PATCH] TODOs --- src/fspp/fuse/Fuse.cpp | 1 + 1 file changed, 1 insertion(+) diff --git a/src/fspp/fuse/Fuse.cpp b/src/fspp/fuse/Fuse.cpp index 3bd172e9..d62d1c72 100644 --- a/src/fspp/fuse/Fuse.cpp +++ b/src/fspp/fuse/Fuse.cpp @@ -249,6 +249,7 @@ vector Fuse::_build_argv(const bf::path &mountdir, const vector } _add_fuse_option_if_not_exists(&argv, "subtype", _fstype); _add_fuse_option_if_not_exists(&argv, "fsname", _fsname.get_value_or(_fstype)); + // TODO Also set read/write size for osxfuse. The options there are called differently. argv.push_back(_create_c_string("-o")); argv.push_back(_create_c_string("large_read")); // large_read possibly not necessary because reads are large anyhow, but it doesn't hurt. argv.push_back(_create_c_string("-o"));