diff options
author | izxl007 <zeng.zheng@zte.com.cn> | 2025-06-09 23:19:14 +0800 |
---|---|---|
committer | Bernd Schubert <bernd@bsbernd.com> | 2025-06-12 14:39:10 +0200 |
commit | e64a6164ff71911e4c3bd492ceb0532705c1e733 (patch) | |
tree | d9f82ab23ff7d019bec082ca9c92c8dc24766e22 /lib/helper.c | |
parent | 324f1c7f4aa3f5ad0f88a56794fa3db9e55da430 (diff) | |
download | libfuse-e64a6164ff71911e4c3bd492ceb0532705c1e733.tar.gz |
help: Remove duplicate io_uring options from fuse_cmdline_help
The io_uring options are currently shown in both fuse_cmdline_help()
and fuse_lowlevel_help(), which creates unnecessary duplication. Since
io_uring is a low-level I/O feature, it makes more sense to only show
these options in fuse_lowlevel_help().
This change:
- Removes io_uring options from fuse_cmdline_help()
- Keeps them in fuse_lowlevel_help() where they belong
- Removes the FIXME comment that is no longer needed
This is purely a documentation improvement and does not affect any
functionality. Users will still see all available options when using
--help, just organized in a more logical way.
Signed-off-by: izxl007 <zeng.zheng@zte.com.cn>
Diffstat (limited to 'lib/helper.c')
-rw-r--r-- | lib/helper.c | 6 |
1 files changed, 1 insertions, 5 deletions
diff --git a/lib/helper.c b/lib/helper.c index ced70a2..aceff9f 100644 --- a/lib/helper.c +++ b/lib/helper.c @@ -139,11 +139,7 @@ void fuse_cmdline_help(void) " -o max_idle_threads the maximum number of idle worker threads\n" " allowed (default: -1)\n" " -o max_threads the maximum number of worker threads\n" - " allowed (default: 10)\n" - /* fuse_ll_opts in fuse_lowlevel.c, FIXME, call into that file */ - " -o io_uring enable io-uring\n" - " -o io_uring_q_depth=<n> io-uring queue depth\n" -); + " allowed (default: 10)\n"); } static int fuse_helper_opt_proc(void *data, const char *arg, int key, |