Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 189148
b: refs/heads/master
c: d2566af
h: refs/heads/master
v: v3
  • Loading branch information
Julia Lawall authored and David S. Miller committed Mar 28, 2010
1 parent 89b52a4 commit 1f99e1d
Show file tree
Hide file tree
Showing 4 changed files with 11 additions and 11 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: 7469a9acf919d36836f6c635099d8edc9be4528a
refs/heads/master: d2566af8c4860a03ca685ef0910de406679c3e4e
4 changes: 2 additions & 2 deletions trunk/arch/sparc/kernel/sysfs.c
Original file line number Diff line number Diff line change
Expand Up @@ -107,12 +107,12 @@ static unsigned long run_on_cpu(unsigned long cpu,
unsigned long ret;

/* should return -EINVAL to userspace */
if (set_cpus_allowed(current, cpumask_of_cpu(cpu)))
if (set_cpus_allowed_ptr(current, cpumask_of(cpu)))
return 0;

ret = func(arg);

set_cpus_allowed(current, old_affinity);
set_cpus_allowed_ptr(current, &old_affinity);

return ret;
}
Expand Down
8 changes: 4 additions & 4 deletions trunk/arch/sparc/kernel/us2e_cpufreq.c
Original file line number Diff line number Diff line change
Expand Up @@ -238,12 +238,12 @@ static unsigned int us2e_freq_get(unsigned int cpu)
return 0;

cpus_allowed = current->cpus_allowed;
set_cpus_allowed(current, cpumask_of_cpu(cpu));
set_cpus_allowed_ptr(current, cpumask_of(cpu));

clock_tick = sparc64_get_clock_tick(cpu) / 1000;
estar = read_hbreg(HBIRD_ESTAR_MODE_ADDR);

set_cpus_allowed(current, cpus_allowed);
set_cpus_allowed_ptr(current, &cpus_allowed);

return clock_tick / estar_to_divisor(estar);
}
Expand All @@ -259,7 +259,7 @@ static void us2e_set_cpu_divider_index(unsigned int cpu, unsigned int index)
return;

cpus_allowed = current->cpus_allowed;
set_cpus_allowed(current, cpumask_of_cpu(cpu));
set_cpus_allowed_ptr(current, cpumask_of(cpu));

new_freq = clock_tick = sparc64_get_clock_tick(cpu) / 1000;
new_bits = index_to_estar_mode(index);
Expand All @@ -281,7 +281,7 @@ static void us2e_set_cpu_divider_index(unsigned int cpu, unsigned int index)

cpufreq_notify_transition(&freqs, CPUFREQ_POSTCHANGE);

set_cpus_allowed(current, cpus_allowed);
set_cpus_allowed_ptr(current, &cpus_allowed);
}

static int us2e_freq_target(struct cpufreq_policy *policy,
Expand Down
8 changes: 4 additions & 4 deletions trunk/arch/sparc/kernel/us3_cpufreq.c
Original file line number Diff line number Diff line change
Expand Up @@ -86,12 +86,12 @@ static unsigned int us3_freq_get(unsigned int cpu)
return 0;

cpus_allowed = current->cpus_allowed;
set_cpus_allowed(current, cpumask_of_cpu(cpu));
set_cpus_allowed_ptr(current, cpumask_of(cpu));

reg = read_safari_cfg();
ret = get_current_freq(cpu, reg);

set_cpus_allowed(current, cpus_allowed);
set_cpus_allowed_ptr(current, &cpus_allowed);

return ret;
}
Expand All @@ -106,7 +106,7 @@ static void us3_set_cpu_divider_index(unsigned int cpu, unsigned int index)
return;

cpus_allowed = current->cpus_allowed;
set_cpus_allowed(current, cpumask_of_cpu(cpu));
set_cpus_allowed_ptr(current, cpumask_of(cpu));

new_freq = sparc64_get_clock_tick(cpu) / 1000;
switch (index) {
Expand Down Expand Up @@ -140,7 +140,7 @@ static void us3_set_cpu_divider_index(unsigned int cpu, unsigned int index)

cpufreq_notify_transition(&freqs, CPUFREQ_POSTCHANGE);

set_cpus_allowed(current, cpus_allowed);
set_cpus_allowed_ptr(current, &cpus_allowed);
}

static int us3_freq_target(struct cpufreq_policy *policy,
Expand Down

0 comments on commit 1f99e1d

Please sign in to comment.