Open benzea opened 2 years ago
Hi,
thanks for your insights. I have (obviously) thought about your comments for a quite a time.
1) Sounds very complicated and I don't have the same control over what happens as in a script. Logging is even more difficult. 2) I would like to avoid implementing a daemon in general and in particular as a shell script 3) This would allow TLP to be used only with systemd. 4) Would mean backtracking down the whole tree searching for the parent multiple times, this also takes time.
I openly confess that my knowledge of the subject leaves a lot to be desired.
Or maybe it would be enough to fork into the background so that udev can continue to process rules?
The udev manpage says:
Starting daemons or other long-running processes is not allowed; the forked processes, detached or not, will be unconditionally > killed after the event handling has finished.
I think I'll just give 4. a try as soon as I have time. The "backtracking" includes only one step to the direct parent.
Hi, I was looking at libusb/libusb#237 and noticed that TLP is a huge offender with regard to USB device processing in udev.
The TLP udev rules need an extremely long time to process events. This is not really necessary, as there is no reason to block the rest of udev (and userspace!) in order to possibly enable USB autosuspend.
The obvious reason for it to go really horribly wrong is the sleep of 500ms in the codebase, see https://github.com/linrunner/TLP/blob/main/func.d/20-tlp-func-usb#L64. This sleep is probably just plain wrong, if subdevices are of such importance, you can also modify the parent device from a
DEVTYPE=usb_interface
rule.But, equally bad is the fact that we even wait for this operation to complete. I am thinking the following solutions are possible (roughly in preferred order in my view):
udev
rules that do not require executing a long script. You can test for file existence in udev, so writing out a file to e.g./run/tlp
and testing for that you can enable/disable rules. Not sure if aRUN
rule though, as autosuspend needs to be set on the parent device.TAG+="systemd"
and setENV{SYSTEMD_WANTS}+="tlp-usb-udev@.service"
. The service should beType=oneshot
withExecStart=/lib/udev/tlp-usb-udev usb %I
or something similar (did not test it)..device
units.udevadm settle
is enough though, so possibly just anExecStartPre-=/usr/sbin/udevadm settle
.usb_interface
and update the parent; but that still means loading all the shell scripting.So, 1. not sure, might be complicated. As for 2. (daemon), that seems kinda neat in a way. 3. may be a bit verbose in
systemctl status
, I imagine. And, 4. is simple, but I am not sure I like it that much :-)