[PATCH] aio: dprintks in aio_read_evt were referencing aio_ring afterkunmap_atomic

From: Zhao Hongjiang
Date: Thu Apr 25 2013 - 06:02:47 EST



Signed-off-by: Zhao Hongjiang <zhaohongjiang@xxxxxxxxxx>
Cc: stable@xxxxxxxxxxxxxxx
---

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

--
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@xxxxxxxxxxxxxxx
More majordomo info at http://vger.kernel.org/majordomo-info.html
Please read the FAQ at http://www.tux.org/lkml/