Consider removing usbcore.autosuspend=-1 from the default parameters #221
UriHerrera
started this conversation in
Ideas
Replies: 0 comments
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
-
Global
usbcore.autosuspend=-1is a blunt instrument, and it's expensive on laptops.Best practice is device-specific power control via udev (match by vendor/product ID), so only the devices that need it disable autosuspend.
Do something like:
Identify the mouse VID:PID:
Create a udev rule (example):
Reload udev rules and replug the mouse:
Additional Context
The reason the parameter is present was this bug: #170
Some USB mices would just stop working when entering a power-saving mode.
Beta Was this translation helpful? Give feedback.
All reactions