2013-04-25 10:02:42

by Zhao Hongjiang

[permalink] [raw]
Subject: [PATCH] aio: dprintks in aio_read_evt were referencing aio_ring after kunmap_atomic


Signed-off-by: Zhao Hongjiang <[email protected]>
Cc: [email protected]
---

linux-next use pr_debug instead of dprintk, and fix the issue.

---
fs/aio.c | 2 +-
1 files changed, 1 insertions(+), 1 deletions(-)

diff --git a/fs/aio.c b/fs/aio.c
index 3f941f2..1dc8786 100644
--- a/fs/aio.c
+++ b/fs/aio.c
@@ -1029,9 +1029,9 @@ static int aio_read_evt(struct kioctx *ioctx, struct io_event *ent)
spin_unlock(&info->ring_lock);

out:
- kunmap_atomic(ring);
dprintk("leaving aio_read_evt: %d h%lu t%lu\n", ret,
(unsigned long)ring->head, (unsigned long)ring->tail);
+ kunmap_atomic(ring);
return ret;
}

--
1.7.1