summaryrefslogtreecommitdiff
path: root/fs/aio.c
diff options
context:
space:
mode:
authorAl Viro <viro@zeniv.linux.org.uk>2012-03-13 22:06:28 -0400
committerAl Viro <viro@zeniv.linux.org.uk>2012-03-20 21:29:40 -0400
commit9fcf03d0d6e845ed495fc8b1ec328b473ff298b3 (patch)
tree0993aaa5e0b2dc25055b265b8aba9f5545c0f6a0 /fs/aio.c
parentcd1ea261ac128479833b9f518bf788ee47ada2de (diff)
aio: fix the comment in aio_kick_handler()
It should've been changed when queue_work() became queue_delayed_work(..., 0) in there. It's always had been about not needing a delay, not about not using specific function... Signed-off-by: Al Viro <viro@zeniv.linux.org.uk>
Diffstat (limited to 'fs/aio.c')
-rw-r--r--fs/aio.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/fs/aio.c b/fs/aio.c
index 3174cd969b01..59b431a2ae0c 100644
--- a/fs/aio.c
+++ b/fs/aio.c
@@ -899,7 +899,7 @@ static void aio_kick_handler(struct work_struct *work)
unuse_mm(mm);
set_fs(oldfs);
/*
- * we're in a worker thread already, don't use queue_delayed_work,
+ * we're in a worker thread already; no point using non-zero delay
*/
if (requeue)
queue_delayed_work(aio_wq, &ctx->wq, 0);