Searched hist:"74 cedf9b6c603f2278a05bc91b140b32b434d0b5" (Results 1 – 1 of 1) sorted by relevance
/openbmc/linux/fs/ |
H A D | direct-io.c | diff 74cedf9b6c603f2278a05bc91b140b32b434d0b5 Mon Nov 30 11:15:42 CST 2015 Jan Kara <jack@suse.cz> direct-io: Fix negative return from dio read beyond eof
Assume a filesystem with 4KB blocks. When a file has size 1000 bytes and we issue direct IO read at offset 1024, blockdev_direct_IO() reads the tail of the last block and the logic for handling short DIO reads in dio_complete() results in a return value -24 (1000 - 1024) which obviously confuses userspace.
Fix the problem by bailing out early once we sample i_size and can reliably check that direct IO read starts beyond i_size.
Reported-by: Avi Kivity <avi@scylladb.com> Fixes: 9fe55eea7e4b444bafc42fa0000cc2d1d2847275 CC: stable@vger.kernel.org CC: Steven Whitehouse <swhiteho@redhat.com> Signed-off-by: Jan Kara <jack@suse.cz> Signed-off-by: Jens Axboe <axboe@fb.com>
|