summaryrefslogtreecommitdiffstats
path: root/fs/aio.c
diff options
context:
space:
mode:
authorTang Chen2013-07-04 00:09:16 +0200
committerLinus Torvalds2013-07-04 01:08:06 +0200
commit4b30f07e74d2df673925019ad58bc59a719df3bb (patch)
treeedc238c9107f3b7d8fc97cca077683bd3b7f99f0 /fs/aio.c
parentdrivers/w1/slaves/w1_ds2408.c: add magic sequence to disable P0 test mode (diff)
downloadkernel-qcow2-linux-4b30f07e74d2df673925019ad58bc59a719df3bb.tar.gz
kernel-qcow2-linux-4b30f07e74d2df673925019ad58bc59a719df3bb.tar.xz
kernel-qcow2-linux-4b30f07e74d2df673925019ad58bc59a719df3bb.zip
aio: fix wrong comment in aio_complete()
ctx->ctx_lock should be ctx->completion_lock. Signed-off-by: Tang Chen <tangchen@cn.fujitsu.com> Signed-off-by: Andrew Morton <akpm@linux-foundation.org> Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
Diffstat (limited to 'fs/aio.c')
-rw-r--r--fs/aio.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/fs/aio.c b/fs/aio.c
index a8ecc8313fb0..9b5ca1137419 100644
--- a/fs/aio.c
+++ b/fs/aio.c
@@ -625,7 +625,7 @@ void aio_complete(struct kiocb *iocb, long res, long res2)
/*
* Add a completion event to the ring buffer. Must be done holding
- * ctx->ctx_lock to prevent other code from messing with the tail
+ * ctx->completion_lock to prevent other code from messing with the tail
* pointer since we might be called from irq context.
*/
spin_lock_irqsave(&ctx->completion_lock, flags);