aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorThomas Gleixner <tglx@linutronix.de>2011-07-08 16:35:35 +0200
committerSteven Rostedt <rostedt@goodmis.org>2012-02-07 12:29:42 -0500
commit6a9b972fbc3612f116b104b6f56a662d5f31d519 (patch)
tree1be37b8677887824df2cac9c289565e214a808bb
parent8b91d33a205802dba716e5a676c4025bf54dde66 (diff)
epoll.patch
Signed-off-by: Thomas Gleixner <tglx@linutronix.de>
-rw-r--r--fs/eventpoll.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/fs/eventpoll.c b/fs/eventpoll.c
index 2acaf60f4e4d..0652d4f856fc 100644
--- a/fs/eventpoll.c
+++ b/fs/eventpoll.c
@@ -438,12 +438,12 @@ static int ep_poll_wakeup_proc(void *priv, void *cookie, int call_nests)
*/
static void ep_poll_safewake(wait_queue_head_t *wq)
{
- int this_cpu = get_cpu();
+ int this_cpu = get_cpu_light();
ep_call_nested(&poll_safewake_ncalls, EP_MAX_NESTS,
ep_poll_wakeup_proc, NULL, wq, (void *) (long) this_cpu);
- put_cpu();
+ put_cpu_light();
}
/*