Avoid max-idle threads warning
authorBernd Schubert <bschubert@ddn.com>
Sun, 19 Feb 2023 11:52:52 +0000 (12:52 +0100)
committerNikolaus Rath <Nikolaus@rath.org>
Mon, 20 Feb 2023 10:14:17 +0000 (10:14 +0000)
If a program with API before 312 did not set
max_idle_threads the new default from
fuse_parse_cmdline_312() is applied, which sets
UINT_MAX (-1).

Later in compat fuse_session_loop_mt_32 the old
config v1 struct is converted and that conversion
prints a warning if the default unset value was used.

This could have also happened to programs using the current
API, which just apply values struct fuse_cmdline_opts,
without checking if the defaults are set.

lib/fuse_loop_mt.c
lib/helper.c

index cf9ad86f3667992bee1540ee62224eba50e4c21c..0200d73397d0b642c3b7a1aba89c775eea5420d2 100644 (file)
@@ -464,9 +464,11 @@ void fuse_loop_cfg_set_idle_threads(struct fuse_loop_config *config,
                                    unsigned int value)
 {
        if (value > FUSE_LOOP_MT_MAX_THREADS) {
-               fuse_log(FUSE_LOG_ERR,
-                        "Ignoring invalid max threads value "
-                        "%u > max (%u).\n", value, FUSE_LOOP_MT_MAX_THREADS);
+               if (value != UINT_MAX)
+                       fuse_log(FUSE_LOG_ERR,
+                                "Ignoring invalid max threads value "
+                                "%u > max (%u).\n", value,
+                                FUSE_LOOP_MT_MAX_THREADS);
                return;
        }
        config->max_idle_threads = value;
index b270b85750e9e13e1ca699fe069d8800da44ace0..35c6a98c069393fe565c5c1b1d879ae05a6eead7 100644 (file)
@@ -210,7 +210,7 @@ int fuse_parse_cmdline_312(struct fuse_args *args,
 {
        memset(opts, 0, sizeof(struct fuse_cmdline_opts));
 
-       opts->max_idle_threads = -1; /* new default in fuse version 3.12 */
+       opts->max_idle_threads = UINT_MAX; /* new default in fuse version 3.12 */
        opts->max_threads = 10;
 
        if (fuse_opt_parse(args, opts, fuse_helper_opts,
@@ -239,7 +239,6 @@ int fuse_parse_cmdline_30(struct fuse_args *args,
 {
        struct fuse_cmdline_opts opts;
 
-
        int rc = fuse_parse_cmdline_312(args, &opts);
        if (rc == 0) {
                /* copy up to the size of the old pre 3.12 struct */