mirror of
https://github.com/ublue-os/bazzite.git
synced 2025-01-25 15:35:17 +00:00
0cb0c67283
This helps with IO starvation on Deck when games are installing or de-duplication is occurring. https://www.phoronix.com/review/linux-56-nvme
7 lines
325 B
Plaintext
7 lines
325 B
Plaintext
# SSD/MicroSD
|
|
ACTION=="add|change", KERNEL=="sd[a-z]", ATTR{queue/rotational}=="0", ATTR{queue/scheduler}="bfq"
|
|
# HDD
|
|
ACTION=="add|change", KERNEL=="sd[a-z]", ATTR{queue/rotational}=="1", ATTR{queue/scheduler}="bfq"
|
|
# NVME
|
|
ACTION=="add|change", KERNEL=="nvme[0-9]n1", ATTR{queue/rotational}=="0", ATTR{queue/scheduler}="bfq"
|