]> git.baikalelectronics.ru Git - kernel.git/commit
fs: update atime before I/O in generic_file_read_iter
authorChristoph Hellwig <hch@lst.de>
Sun, 2 Oct 2016 22:48:08 +0000 (09:48 +1100)
committerDave Chinner <david@fromorbit.com>
Sun, 2 Oct 2016 22:48:08 +0000 (09:48 +1100)
commite96968a669fb540b730b97d23fb5f2b4173d1fd2
tree08163c5359913d1747cc2ef74394b313c0949cbd
parentf540d7a52093110ab814bbfabc161ac141128e29
fs: update atime before I/O in generic_file_read_iter

After the call to ->direct_IO the final reference to the file might have
been dropped by aio_complete already, and the call to file_accessed might
cause a use after free.

Instead update the access time before the I/O, similar to how we
update the time stamps before writes.

Signed-off-by: Christoph Hellwig <hch@lst.de>
Reviewed-by: Dave Chinner <dchinner@redhat.com>
Signed-off-by: Dave Chinner <david@fromorbit.com>
mm/filemap.c