xfs: Fix possible use-after-free with AIO
authorJan Kara <[email protected]>
Wed, 23 Jan 2013 12:56:18 +0000 (13:56 +0100)
committerBen Myers <[email protected]>
Mon, 28 Jan 2013 18:51:22 +0000 (12:51 -0600)
commit4b05d09c18d9aa62d2e7fb4b057f54e5a38963f5
tree7fd54bd1852d5cd98d2db3ed5e94ba71f6f36760
parent9f87832a82923943aaab38b8d53658af134bbfa4
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: [email protected]
CC: Ben Myers <[email protected]>
CC: [email protected]
Signed-off-by: Jan Kara <[email protected]>
Reviewed-by: Ben Myers <[email protected]>
Signed-off-by: Ben Myers <[email protected]>
fs/xfs/xfs_aops.c