xfs: map unwritten blocks in XFS_IOC_{ALLOC,FREE}SP just like fallocate
authorDarrick J. Wong <djwong@kernel.org>
Wed, 22 Dec 2021 22:19:18 +0000 (14:19 -0800)
committerDarrick J. Wong <djwong@kernel.org>
Wed, 22 Dec 2021 22:19:18 +0000 (14:19 -0800)
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>
fs/xfs/xfs_ioctl.c

index 174cd8950cb6727bd668a7e39bbdeb2ac0a183d4..bc85e045845d136172bff90fb2e944691cbd7d49 100644 (file)
@@ -687,7 +687,8 @@ xfs_ioc_space(
 
        if (bf->l_start > 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)
                        goto out_unlock;
        }