diff options
author | Gu Zheng <guz.fnst@cn.fujitsu.com> | 2014-09-03 17:45:44 +0800 |
---|---|---|
committer | Greg Kroah-Hartman <gregkh@linuxfoundation.org> | 2014-10-05 14:52:24 -0700 |
commit | 0be0ec9c364fc3a44837d58c2210432690a27ff4 (patch) | |
tree | 6055fece3735fbb553294d396ccfd61fa9748f2d /fs | |
parent | ed7150a026415687de272a8c58e13af0dd269b35 (diff) | |
download | lwn-0be0ec9c364fc3a44837d58c2210432690a27ff4.tar.gz lwn-0be0ec9c364fc3a44837d58c2210432690a27ff4.zip |
aio: block exit_aio() until all context requests are completed
commit 6098b45b32e6baeacc04790773ced9340601d511 upstream.
It seems that exit_aio() also needs to wait for all iocbs to complete (like
io_destroy), but we missed the wait step in current implemention, so fix
it in the same way as we did in io_destroy.
Signed-off-by: Gu Zheng <guz.fnst@cn.fujitsu.com>
Signed-off-by: Benjamin LaHaise <bcrl@kvack.org>
[bwh: Backported to 3.16: adjust context]
Signed-off-by: Ben Hutchings <ben@decadent.org.uk>
Diffstat (limited to 'fs')
-rw-r--r-- | fs/aio.c | 8 |
1 files changed, 7 insertions, 1 deletions
@@ -797,6 +797,9 @@ void exit_aio(struct mm_struct *mm) unsigned i = 0; while (1) { + struct completion requests_done = + COMPLETION_INITIALIZER_ONSTACK(requests_done); + rcu_read_lock(); table = rcu_dereference(mm->ioctx_table); @@ -824,7 +827,10 @@ void exit_aio(struct mm_struct *mm) */ ctx->mmap_size = 0; - kill_ioctx(mm, ctx, NULL); + kill_ioctx(mm, ctx, &requests_done); + + /* Wait until all IO for the context are done. */ + wait_for_completion(&requests_done); } } |