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)
commit2da03e389866835e29b78a4546c6f1f87aab8fe1
tree956f5d41c2801f04dd728ccb41f32953b7fb8c64
parentdf2cde25a6eb0ced31764b8807c639c5f4099fd4
Avoid max-idle threads warning

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