linux – Powertop报告“坏”“PCI设备的运行时PM”

前端之家收集整理的这篇文章主要介绍了linux – Powertop报告“坏”“PCI设备的运行时PM”前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我注意到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.它还可以为所有热插拔设备启用它.

原文链接:https://www.f2er.com/linux/398791.html

猜你在找的Linux相关文章