]> git.baikalelectronics.ru Git - kernel.git/commit
xfs: Fix possible use-after-free with AIO
authorJan Kara <jack@suse.cz>
Wed, 23 Jan 2013 12:56:18 +0000 (13:56 +0100)
committerBen Myers <bpm@sgi.com>
Mon, 28 Jan 2013 18:51:22 +0000 (12:51 -0600)
commit10f8931c530b6ecd4e101f313a5367e3695ddf47
tree7fd54bd1852d5cd98d2db3ed5e94ba71f6f36760
parent5a176bdb66ea04ce7ed3a040ca4aacf9e9051170
xfs: Fix possible use-after-free with AIO

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.

CC: xfs@oss.sgi.com
CC: Ben Myers <bpm@sgi.com>
CC: stable@vger.kernel.org
Signed-off-by: Jan Kara <jack@suse.cz>
Reviewed-by: Ben Myers <bpm@sgi.com>
Signed-off-by: Ben Myers <bpm@sgi.com>
fs/xfs/xfs_aops.c