ocfs2: fix possible use-after-free with AIO
authorJan Kara <jack@suse.cz>
Wed, 20 Feb 2013 02:16:39 +0000 (13:16 +1100)
committerBen Hutchings <ben@decadent.org.uk>
Wed, 6 Mar 2013 03:24:14 +0000 (03:24 +0000)
commitd7763498ca68b50980381ce62187b86dcfdd0ba4
tree92ccfbaccec9a1e58dbb4b594bd8b6cec46e1fa5
parent7479d5dd8b13e8b75e7233d094bca7b1935b9914
ocfs2: fix possible use-after-free with AIO

commit 9b171e0c74ca0549d0610990a862dd895870f04a upstream.

Running AIO is pinning inode in memory using file reference. Once AIO
is completed using aio_complete(), file reference is put and inode can
be freed from memory. So we have to be sure that calling aio_complete()
is the last thing we do with the inode.

Signed-off-by: Jan Kara <jack@suse.cz>
Acked-by: Jeff Moyer <jmoyer@redhat.com>
Acked-by: Joel Becker <jlbec@evilplan.org>
Cc: Mark Fasheh <mfasheh@suse.com>
Cc: Al Viro <viro@zeniv.linux.org.uk>
Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
Signed-off-by: Al Viro <viro@zeniv.linux.org.uk>
Signed-off-by: Ben Hutchings <ben@decadent.org.uk>
fs/ocfs2/aops.c