Last active 1 month ago

Revision 2635bbedda95a14d1bd41085feec1bc100c4170c

fuse.md Raw

Повышение производительности FUSE при помощи io_uring

[Unit]
Description=Enable use of fuse through io_uring
Documentation=https://www.opennet.ru/tips/3270_fuse_io_uring_optimization_tune_kernel.shtml
DefaultDependencies=no
After=systemd-sysctl.service
Before=sysinit.target

[Service]
Type=oneshot
ExecStart=/bin/sh -c 'echo 1 > /sys/module/fuse/parameters/enable_uring'
ExecStop=/bin/sh -c 'echo 0 > /sys/module/fuse/parameters/enable_uring'
RemainAfterExit=yes

[Install]
WantedBy=sysinit.target