Без тестирования , глядя на исходный код, кажется, есть такая отдельная опция: https://github.com/libfuse/libfuse/blob/master/lib/helper.c#L90:
CONN_OPTION("congestion_threshold=%u", congestion_threshold, 0),
CONN_OPTION("congestion_threshold=", set_congestion_threshold, 1),
Также из кода, похоже, вы можете настроить его, используя fuse_parse_conn_info_opts
. См. https://github.com/libfuse/libfuse/blob/master/include/fuse_common.h#L523:
* The following options are recognized:
*
...
* -o max_background=N sets conn->max_background
* -o congestion_threshold=N sets conn->congestion_threshold
...
**/
struct fuse_conn_info_opts* fuse_parse_conn_info_opts(struct fuse_args *args);
Глядя в код ядра, никаких отпечатков для фактической перегрузки не происходит.