aio: use cancel_delayed_work_sync()
Signed-off-by: Al Viro <viro@zeniv.linux.org.uk>
This commit is contained in:
parent
9fa1cb397f
commit
bf50722a3c
3
fs/aio.c
3
fs/aio.c
|
@ -211,8 +211,7 @@ static void __put_ioctx(struct kioctx *ctx)
|
||||||
unsigned nr_events = ctx->max_reqs;
|
unsigned nr_events = ctx->max_reqs;
|
||||||
BUG_ON(ctx->reqs_active);
|
BUG_ON(ctx->reqs_active);
|
||||||
|
|
||||||
cancel_delayed_work(&ctx->wq);
|
cancel_delayed_work_sync(&ctx->wq);
|
||||||
cancel_work_sync(&ctx->wq.work);
|
|
||||||
aio_free_ring(ctx);
|
aio_free_ring(ctx);
|
||||||
mmdrop(ctx->mm);
|
mmdrop(ctx->mm);
|
||||||
ctx->mm = NULL;
|
ctx->mm = NULL;
|
||||||
|
|
Loading…
Reference in New Issue