我注意到powertop实用程序报告了几个设备的“坏”“PCI设备的运行时PM”.看起来powertop可以解决这个问题,但它无法确定它究竟能解决什么问题.我该怎么做才能解决“Runtime PM …”问题?
解决方法
使用以下内容创建名为/etc/udev/rules.d/10-runtime-pm.rules的文件:
SUBSYSTEM!="pci",GOTO="power_runtime_rules_end" ACTION!="add",GOTO="power_runtime_rules_end" KERNEL=="????:??:??.?" PROGRAM="/bin/sleep 0.1" ATTR{power/control}=="*",ATTR{power/control}="auto" LABEL="power_runtime_rules_end"
重启后,应为所有支持它的设备启用PM.它还可以为所有热插拔设备启用它.