From: Jaegeuk Kim Date: Mon, 28 Apr 2014 08:02:48 +0000 (+0900) Subject: f2fs: return i_size if the hole is outside of i_size X-Git-Url: http://drtracing.org/?a=commitdiff_plain;h=fe369bc8ba205537864cb86ba08b390ad20201c4;p=deliverable%2Flinux.git f2fs: return i_size if the hole is outside of i_size When SEEK_HOLE is requeted, it should return i_size if the hole position is found outside of i_size. Signed-off-by: Jaegeuk Kim --- diff --git a/fs/f2fs/file.c b/fs/f2fs/file.c index d99d17325046..31128571e284 100644 --- a/fs/f2fs/file.c +++ b/fs/f2fs/file.c @@ -255,9 +255,9 @@ static loff_t f2fs_seek_block(struct file *file, loff_t offset, int whence) if (whence == SEEK_DATA) goto fail; - else - data_ofs = isize; found: + if (whence == SEEK_HOLE && data_ofs > isize) + data_ofs = isize; mutex_unlock(&inode->i_mutex); return vfs_setpos(file, data_ofs, maxbytes); fail: