diff options
author | Jesse Barnes <jbarnes@virtuousgeek.org> | 2011-03-28 06:36:30 -0400 |
---|---|---|
committer | Matthew Garrett <mjg@redhat.com> | 2011-03-28 06:46:15 -0400 |
commit | a3424216e4935221fdaa5ca3c26e024f11297164 (patch) | |
tree | b2064868842cb03aac2d9685d8ee7e4d77dc10ac /drivers | |
parent | 70a9b9047aebd53ac38837a1046da52a2f8d9636 (diff) | |
download | linux-3.10-a3424216e4935221fdaa5ca3c26e024f11297164.tar.gz linux-3.10-a3424216e4935221fdaa5ca3c26e024f11297164.tar.bz2 linux-3.10-a3424216e4935221fdaa5ca3c26e024f11297164.zip |
ips: use interruptible waits in ips-monitor
This is what I intended to do since:
1) the driver handles variable waits just fine, and
2) interruptible waits aren't reported as load in the load avg.
Reported-and-tested-by: Andreas Hartmann <andihartmann@freenet.de>
Signed-off-by: Jesse Barnes <jbarnes@virtuousgeek.org>
Signed-off-by: Matthew Garrett <mjg@redhat.com>
Diffstat (limited to 'drivers')
-rw-r--r-- | drivers/platform/x86/intel_ips.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/platform/x86/intel_ips.c b/drivers/platform/x86/intel_ips.c index 1294a39373b..85c8ad43c0c 100644 --- a/drivers/platform/x86/intel_ips.c +++ b/drivers/platform/x86/intel_ips.c @@ -1111,7 +1111,7 @@ static int ips_monitor(void *data) last_msecs = jiffies_to_msecs(jiffies); expire = jiffies + msecs_to_jiffies(IPS_SAMPLE_PERIOD); - __set_current_state(TASK_UNINTERRUPTIBLE); + __set_current_state(TASK_INTERRUPTIBLE); mod_timer(&timer, expire); schedule(); |