Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 29168
b: refs/heads/master
c: 193de0c
h: refs/heads/master
v: v3
  • Loading branch information
KAMEZAWA Hiroyuki authored and Len Brown committed May 14, 2006
1 parent 54074ff commit 499b970
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 7 deletions.
2 changes: 1 addition & 1 deletion [refs]
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
---
refs/heads/master: 9011bff4bdc0fef1f9a782d7415c306ee61826c9
refs/heads/master: 193de0c79da580eb33a66113b62e2378fc1fb629
12 changes: 6 additions & 6 deletions trunk/drivers/acpi/processor_perflib.c
Original file line number Diff line number Diff line change
Expand Up @@ -628,7 +628,7 @@ int acpi_processor_preregister_performance(
retval = 0;

/* Call _PSD for all CPUs */
for_each_cpu(i) {
for_each_possible_cpu(i) {
pr = processors[i];
if (!pr) {
/* Look only at processors in ACPI namespace */
Expand Down Expand Up @@ -659,7 +659,7 @@ int acpi_processor_preregister_performance(
* Now that we have _PSD data from all CPUs, lets setup P-state
* domain info.
*/
for_each_cpu(i) {
for_each_possible_cpu(i) {
pr = processors[i];
if (!pr)
continue;
Expand All @@ -680,7 +680,7 @@ int acpi_processor_preregister_performance(
}

cpus_clear(covered_cpus);
for_each_cpu(i) {
for_each_possible_cpu(i) {
pr = processors[i];
if (!pr)
continue;
Expand All @@ -704,7 +704,7 @@ int acpi_processor_preregister_performance(
pr->performance->shared_type = CPUFREQ_SHARED_TYPE_ANY;
}

for_each_cpu(j) {
for_each_possible_cpu(j) {
if (i == j)
continue;

Expand Down Expand Up @@ -733,7 +733,7 @@ int acpi_processor_preregister_performance(
count++;
}

for_each_cpu(j) {
for_each_possible_cpu(j) {
if (i == j)
continue;

Expand All @@ -757,7 +757,7 @@ int acpi_processor_preregister_performance(
ACPI_DEBUG_PRINT((ACPI_DB_ERROR, "Error while parsing _PSD domain information. Assuming no coordination\n"));
}

for_each_cpu(i) {
for_each_possible_cpu(i) {
pr = processors[i];
if (!pr || !pr->performance)
continue;
Expand Down

0 comments on commit 499b970

Please sign in to comment.