diff options
author | Al Viro <viro@zeniv.linux.org.uk> | 2012-03-13 22:06:28 -0400 |
---|---|---|
committer | Al Viro <viro@zeniv.linux.org.uk> | 2012-03-20 21:29:40 -0400 |
commit | 9fcf03d0d6e845ed495fc8b1ec328b473ff298b3 (patch) | |
tree | 0993aaa5e0b2dc25055b265b8aba9f5545c0f6a0 /fs | |
parent | cd1ea261ac128479833b9f518bf788ee47ada2de (diff) | |
download | linux-3.10-9fcf03d0d6e845ed495fc8b1ec328b473ff298b3.tar.gz linux-3.10-9fcf03d0d6e845ed495fc8b1ec328b473ff298b3.tar.bz2 linux-3.10-9fcf03d0d6e845ed495fc8b1ec328b473ff298b3.zip |
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')
-rw-r--r-- | fs/aio.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -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); |