mirror of
https://github.com/torvalds/linux.git
synced 2026-06-06 05:27:07 +02:00
xfs: map unwritten blocks in XFS_IOC_{ALLOC,FREE}SP just like fallocate
commit 983d8e60f5 upstream.
The old ALLOCSP/FREESP ioctls in XFS can be used to preallocate space at
the end of files, just like fallocate and RESVSP. Make the behavior
consistent with the other ioctls.
Reported-by: Kirill Tkhai <ktkhai@virtuozzo.com>
Signed-off-by: Darrick J. Wong <djwong@kernel.org>
Signed-off-by: Darrick J. Wong <darrick.wong@oracle.com>
Reviewed-by: Dave Chinner <dchinner@redhat.com>
Reviewed-by: Eric Sandeen <sandeen@redhat.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
This commit is contained in:
parent
aa606b82cd
commit
16d8568378
|
|
@ -686,7 +686,8 @@ xfs_ioc_space(
|
||||||
|
|
||||||
if (bf->l_start > XFS_ISIZE(ip)) {
|
if (bf->l_start > XFS_ISIZE(ip)) {
|
||||||
error = xfs_alloc_file_space(ip, XFS_ISIZE(ip),
|
error = xfs_alloc_file_space(ip, XFS_ISIZE(ip),
|
||||||
bf->l_start - XFS_ISIZE(ip), 0);
|
bf->l_start - XFS_ISIZE(ip),
|
||||||
|
XFS_BMAPI_PREALLOC);
|
||||||
if (error)
|
if (error)
|
||||||
goto out_unlock;
|
goto out_unlock;
|
||||||
}
|
}
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue
Block a user