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 <jaegeuk.kim@samsung.com>
This commit is contained in:
parent
267378d4de
commit
fe369bc8ba
1 changed files with 2 additions and 2 deletions
|
@ -255,9 +255,9 @@ static loff_t f2fs_seek_block(struct file *file, loff_t offset, int whence)
|
||||||
|
|
||||||
if (whence == SEEK_DATA)
|
if (whence == SEEK_DATA)
|
||||||
goto fail;
|
goto fail;
|
||||||
else
|
|
||||||
data_ofs = isize;
|
|
||||||
found:
|
found:
|
||||||
|
if (whence == SEEK_HOLE && data_ofs > isize)
|
||||||
|
data_ofs = isize;
|
||||||
mutex_unlock(&inode->i_mutex);
|
mutex_unlock(&inode->i_mutex);
|
||||||
return vfs_setpos(file, data_ofs, maxbytes);
|
return vfs_setpos(file, data_ofs, maxbytes);
|
||||||
fail:
|
fail:
|
||||||
|
|
Loading…
Reference in a new issue