Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux

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>

Al Viro 9fcf03d0 cd1ea261

+1 -1
+1 -1
fs/aio.c
··· 899 899 unuse_mm(mm); 900 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 904 if (requeue) 905 905 queue_delayed_work(aio_wq, &ctx->wq, 0);