summaryrefslogtreecommitdiff
path: root/fs
diff options
context:
space:
mode:
authorThomas Gleixner <tglx@linutronix.de>2011-07-08 14:35:35 (GMT)
committerScott Wood <scottwood@freescale.com>2014-05-14 18:38:36 (GMT)
commit67539dc9e1d9a5cd35dae4a955204f404797885a (patch)
tree4c2d4b00428ea0bd9d4b54f7342d33ac062a1d62 /fs
parent1d9b8e282f42f9372d4b0c5b26e20081867aa6a7 (diff)
downloadlinux-fsl-qoriq-67539dc9e1d9a5cd35dae4a955204f404797885a.tar.xz
epoll.patch
Signed-off-by: Thomas Gleixner <tglx@linutronix.de>
Diffstat (limited to 'fs')
-rw-r--r--fs/eventpoll.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/fs/eventpoll.c b/fs/eventpoll.c
index d76c974..9691a6e 100644
--- a/fs/eventpoll.c
+++ b/fs/eventpoll.c
@@ -505,12 +505,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();
}
static void ep_remove_wait_queue(struct eppoll_entry *pwq)