On 10 October 2012 17:31, Sudeep KarkadaNagesha <Sudeep.KarkadaNagesha@xxxxxxx> wrote: > On 08/10/12 14:58, viresh kumar wrote: >> affected_cpus(policy->cpus): >> - List of CPUs that require software coordination of frequency. >> - Processors part of affected_cpus share policy struct >> - Policy limits the frequencies that the processor can work with. >> >> related_cpus(policy->related_cpus): >> - List of CPUs that need some sort of frequency coordination, whether >> software or hardware. >> - Processors part of related_cpus share governer. > > Which document states this ? Code. > As per my understanding and if you see in cpufreq.c, related_cpus are > used only when adding back the hotplugged cpu to get the governor. > Elsewhere affected_cpus is used. Probably yes. I was wrong. > Ideally it would be good if above statements is true. > E.g. In SMP with 4 CPUs(with same OPPs), if 0-1 and 2-3 need h/w > co-ordination, then: > related_cpus: 0-1 and 2-3 > affected_cpus: case#1: 0-1 and 2-3 if we want to have different policies > case#2: 0-3 if we want to have same policy on all CPUS > I believe this is not possible in current code. I couldn't understand the difference b/w h/w and s/w coordination. What do we mean by them here. Following patch added related related_cpu stuff: commit e8628dd06d66f2e3965ec9742029b401d63434f1 Author: Darrick J. Wong <djwong@xxxxxxxxxx> Date: Fri Apr 18 13:31:12 2008 -0700 [CPUFREQ] expose cpufreq coordination requirements regardless of coordination mechanism Currently, affected_cpus shows which CPUs need to have their frequency coordinated in software. When hardware coordination is in use, the contents of this file appear the same as when no coordination is required. This can lead to some confusion among user-space programs, for example, that do not know that extra coordination is required to force a CPU core to a particular speed to control power consumption. To fix this, create a "related_cpus" attribute that always displays the coordination map regardless of whatever coordination strategy the cpufreq driver uses (sw or hw). If the cpufreq driver does not provide a value, fall back to policy->cpus. Signed-off-by: Darrick J. Wong <djwong@xxxxxxxxxx> Signed-off-by: Andrew Morton <akpm@xxxxxxxxxxxxxxxxxxxx> Signed-off-by: Dave Jones <davej@xxxxxxxxxx> --- -- To unsubscribe from this list: send the line "unsubscribe cpufreq" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html