aboutsummaryrefslogtreecommitdiffstats
path: root/fs
diff options
context:
space:
mode:
Diffstat (limited to 'fs')
-rw-r--r--fs/aio.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/fs/aio.c b/fs/aio.c
index 71f613cf4a85..ed762aebb4ab 100644
--- a/fs/aio.c
+++ b/fs/aio.c
@@ -1027,9 +1027,9 @@ static int aio_read_evt(struct kioctx *ioctx, struct io_event *ent)
1027 spin_unlock(&info->ring_lock); 1027 spin_unlock(&info->ring_lock);
1028 1028
1029out: 1029out:
1030 kunmap_atomic(ring);
1031 dprintk("leaving aio_read_evt: %d h%lu t%lu\n", ret, 1030 dprintk("leaving aio_read_evt: %d h%lu t%lu\n", ret,
1032 (unsigned long)ring->head, (unsigned long)ring->tail); 1031 (unsigned long)ring->head, (unsigned long)ring->tail);
1032 kunmap_atomic(ring);
1033 return ret; 1033 return ret;
1034} 1034}
1035 1035