aboutsummaryrefslogtreecommitdiffstats
path: root/fs/aio.c
diff options
context:
space:
mode:
Diffstat (limited to 'fs/aio.c')
-rw-r--r--fs/aio.c4
1 files changed, 3 insertions, 1 deletions
diff --git a/fs/aio.c b/fs/aio.c
index 63135331cec2..ad460d78d6c5 100644
--- a/fs/aio.c
+++ b/fs/aio.c
@@ -196,8 +196,10 @@ static void aio_free_ring(struct kioctx *ctx)
196 196
197 put_aio_ring_file(ctx); 197 put_aio_ring_file(ctx);
198 198
199 if (ctx->ring_pages && ctx->ring_pages != ctx->internal_pages) 199 if (ctx->ring_pages && ctx->ring_pages != ctx->internal_pages) {
200 kfree(ctx->ring_pages); 200 kfree(ctx->ring_pages);
201 ctx->ring_pages = NULL;
202 }
201} 203}
202 204
203static int aio_ring_mmap(struct file *file, struct vm_area_struct *vma) 205static int aio_ring_mmap(struct file *file, struct vm_area_struct *vma)