[patch 6/7] epoll keyed wakeups - make eventfd use keyed wakeups

From: Davide Libenzi
Date: Fri Jan 30 2009 - 22:27:30 EST


The following patch introduces keyed event wakeups inside the eventfd code.



Signed-off-by: Davide Libenzi <davidel@xxxxxxxxxxxxxxx>


- Davide


---
fs/eventfd.c | 6 +++---
1 file changed, 3 insertions(+), 3 deletions(-)

Index: linux-2.6.mod/fs/eventfd.c
===================================================================
--- linux-2.6.mod.orig/fs/eventfd.c 2009-01-30 12:11:32.000000000 -0800
+++ linux-2.6.mod/fs/eventfd.c 2009-01-30 12:11:48.000000000 -0800
@@ -50,7 +50,7 @@ int eventfd_signal(struct file *file, in
n = (int) (ULLONG_MAX - ctx->count);
ctx->count += n;
if (waitqueue_active(&ctx->wqh))
- wake_up_locked(&ctx->wqh);
+ kwake_up_locked(&ctx->wqh, POLLIN);
spin_unlock_irqrestore(&ctx->wqh.lock, flags);

return n;
@@ -120,7 +120,7 @@ static ssize_t eventfd_read(struct file
if (res > 0) {
ctx->count = 0;
if (waitqueue_active(&ctx->wqh))
- wake_up_locked(&ctx->wqh);
+ kwake_up_locked(&ctx->wqh, POLLOUT);
}
spin_unlock_irq(&ctx->wqh.lock);
if (res > 0 && put_user(ucnt, (__u64 __user *) buf))
@@ -169,7 +169,7 @@ static ssize_t eventfd_write(struct file
if (res > 0) {
ctx->count += ucnt;
if (waitqueue_active(&ctx->wqh))
- wake_up_locked(&ctx->wqh);
+ kwake_up_locked(&ctx->wqh, POLLIN);
}
spin_unlock_irq(&ctx->wqh.lock);


--
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@xxxxxxxxxxxxxxx
More majordomo info at http://vger.kernel.org/majordomo-info.html
Please read the FAQ at http://www.tux.org/lkml/