Skip to content

Commit

Permalink
Merge pull request #621 from adriaan42/adriaan/info_on_missing_pm_qos
Browse files Browse the repository at this point in the history
plugin_cpu: decrease the severity of _has_pm_qos==False
  • Loading branch information
yarda authored May 23, 2024
2 parents c14e156 + 2a17fba commit 7d8f11a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tuned/plugins/plugin_cpu.py
Original file line number Diff line number Diff line change
Expand Up @@ -325,7 +325,7 @@ def _instance_init(self, instance):
try:
self._cpu_latency_fd = os.open(consts.PATH_CPU_DMA_LATENCY, os.O_WRONLY)
except OSError:
log.error("Unable to open '%s', disabling PM_QoS control" % consts.PATH_CPU_DMA_LATENCY)
log.info("Unable to open '%s', disabling PM_QoS control" % consts.PATH_CPU_DMA_LATENCY)
self._has_pm_qos = False
self._latency = None

Expand Down

0 comments on commit 7d8f11a

Please sign in to comment.