From e206e9b24a416d5f0965df0d0e7db53214a7869a Mon Sep 17 00:00:00 2001 From: Sergei Trofimov Date: Wed, 26 Jul 2017 14:20:58 +0100 Subject: [PATCH 1/2] module/cpufreq: fix get_affected_cpus docstring The docstring was duplicated from get_domain_cpus. This updates the docstring to reflect the difference from get_domain_cpus. --- devlib/module/cpufreq.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/devlib/module/cpufreq.py b/devlib/module/cpufreq.py index c4bc14f..2addfed 100644 --- a/devlib/module/cpufreq.py +++ b/devlib/module/cpufreq.py @@ -414,7 +414,7 @@ class CpufreqModule(Module): def get_affected_cpus(self, cpu): """ - Get the CPUs that share a frequency domain with the given CPU + Get the online CPUs that share a frequency domain with the given CPU """ if isinstance(cpu, int): cpu = 'cpu{}'.format(cpu) From 63e60401d5780217df64f75f3f6a1f8e7c0719b9 Mon Sep 17 00:00:00 2001 From: Sergei Trofimov Date: Wed, 26 Jul 2017 14:21:55 +0100 Subject: [PATCH 2/2] module/cpufreq: rename get_domain_cpus Rename get_domain_cpus to get_related_cpus to match cpufreq nomenclature. --- devlib/module/cpufreq.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/devlib/module/cpufreq.py b/devlib/module/cpufreq.py index 2addfed..a8028f3 100644 --- a/devlib/module/cpufreq.py +++ b/devlib/module/cpufreq.py @@ -424,7 +424,7 @@ class CpufreqModule(Module): return [int(c) for c in self.target.read_value(sysfile).split()] @memoized - def get_domain_cpus(self, cpu): + def get_related_cpus(self, cpu): """ Get the CPUs that share a frequency domain with the given CPU """ @@ -442,6 +442,6 @@ class CpufreqModule(Module): cpus = set(range(self.target.number_of_cpus)) while cpus: cpu = iter(cpus).next() - domain = self.target.cpufreq.get_domain_cpus(cpu) + domain = self.target.cpufreq.get_related_cpus(cpu) yield domain cpus = cpus.difference(domain)