Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 334481
b: refs/heads/master
c: 83dac59
h: refs/heads/master
i:
  334479: 595efca
v: v3
  • Loading branch information
Deepthi Dharwar authored and Benjamin Herrenschmidt committed Oct 17, 2012
1 parent 9b9058f commit 60906c0
Show file tree
Hide file tree
Showing 2 changed files with 14 additions and 24 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: 8ea959a17fe6e27f7954dddad5b17b0e33f0d7ee
refs/heads/master: 83dac59409387789b88bed40b1be86a8abc572be
36 changes: 13 additions & 23 deletions trunk/arch/powerpc/platforms/pseries/processor_idle.c
Original file line number Diff line number Diff line change
Expand Up @@ -59,32 +59,22 @@ static int snooze_loop(struct cpuidle_device *dev,
{
unsigned long in_purr;
ktime_t kt_before;
unsigned long start_snooze;
long snooze = drv->states[0].target_residency;
int cpu = dev->cpu;

idle_loop_prolog(&in_purr, &kt_before);
local_irq_enable();
set_thread_flag(TIF_POLLING_NRFLAG);

if (snooze) {
start_snooze = get_tb() + snooze * tb_ticks_per_usec;
local_irq_enable();
set_thread_flag(TIF_POLLING_NRFLAG);

while ((snooze < 0) || (get_tb() < start_snooze)) {
if (need_resched() || cpu_is_offline(dev->cpu))
goto out;
ppc64_runlatch_off();
HMT_low();
HMT_very_low();
}

HMT_medium();
clear_thread_flag(TIF_POLLING_NRFLAG);
smp_mb();
local_irq_disable();
while ((!need_resched()) && cpu_online(cpu)) {
ppc64_runlatch_off();
HMT_low();
HMT_very_low();
}

out:
HMT_medium();
clear_thread_flag(TIF_POLLING_NRFLAG);
smp_mb();

dev->last_residency =
(int)idle_loop_epilog(in_purr, kt_before);
return index;
Expand Down Expand Up @@ -165,8 +155,8 @@ static struct cpuidle_state dedicated_states[MAX_IDLE_STATE_COUNT] = {
.name = "CEDE",
.desc = "CEDE",
.flags = CPUIDLE_FLAG_TIME_VALID,
.exit_latency = 1,
.target_residency = 10,
.exit_latency = 10,
.target_residency = 100,
.enter = &dedicated_cede_loop },
};

Expand Down Expand Up @@ -197,7 +187,7 @@ void update_smt_snooze_delay(int cpu, int residency)
dev->states_usage[1].disable = 1;
} else
if (drv)
drv->states[0].target_residency = residency;
drv->states[1].target_residency = residency;
}

static int pseries_cpuidle_add_cpu_notifier(struct notifier_block *n,
Expand Down

0 comments on commit 60906c0

Please sign in to comment.