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/aio.c | |
parent | cd1ea261ac128479833b9f518bf788ee47ada2de (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.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -899,7 +899,7 @@ static void aio_kick_handler(struct work_struct *work) | |||
899 | unuse_mm(mm); | 899 | unuse_mm(mm); |
900 | set_fs(oldfs); | 900 | set_fs(oldfs); |
901 | /* | 901 | /* |
902 | * we're in a worker thread already, don't use queue_delayed_work, | 902 | * we're in a worker thread already; no point using non-zero delay |
903 | */ | 903 | */ |
904 | if (requeue) | 904 | if (requeue) |
905 | queue_delayed_work(aio_wq, &ctx->wq, 0); | 905 | queue_delayed_work(aio_wq, &ctx->wq, 0); |