diff options
author | Chandan Babu R <chandanrlinux@gmail.com> | 2021-01-23 01:48:11 +0100 |
---|---|---|
committer | Darrick J. Wong <djwong@kernel.org> | 2021-01-23 01:54:47 +0100 |
commit | 727e1acd297cae15449607d6e2ee39c71216cf1a (patch) | |
tree | 3057407785005630e7d01a6a6ed491a5c31fdde8 /fs/xfs/xfs_rtalloc.c | |
parent | xfs: Add helper for checking per-inode extent count overflow (diff) | |
download | linux-727e1acd297cae15449607d6e2ee39c71216cf1a.tar.xz linux-727e1acd297cae15449607d6e2ee39c71216cf1a.zip |
xfs: Check for extent overflow when trivally adding a new extent
When adding a new data extent (without modifying an inode's existing
extents) the extent count increases only by 1. This commit checks for
extent count overflow in such cases.
Reviewed-by: Darrick J. Wong <darrick.wong@oracle.com>
Reviewed-by: Christoph Hellwig <hch@lst.de>
Reviewed-by: Allison Henderson <allison.henderson@oracle.com>
Signed-off-by: Chandan Babu R <chandanrlinux@gmail.com>
Signed-off-by: Darrick J. Wong <darrick.wong@oracle.com>
Diffstat (limited to 'fs/xfs/xfs_rtalloc.c')
-rw-r--r-- | fs/xfs/xfs_rtalloc.c | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/fs/xfs/xfs_rtalloc.c b/fs/xfs/xfs_rtalloc.c index b4999fb01ff7..161b0e8992ba 100644 --- a/fs/xfs/xfs_rtalloc.c +++ b/fs/xfs/xfs_rtalloc.c @@ -804,6 +804,11 @@ xfs_growfs_rt_alloc( xfs_ilock(ip, XFS_ILOCK_EXCL); xfs_trans_ijoin(tp, ip, XFS_ILOCK_EXCL); + error = xfs_iext_count_may_overflow(ip, XFS_DATA_FORK, + XFS_IEXT_ADD_NOSPLIT_CNT); + if (error) + goto out_trans_cancel; + /* * Allocate blocks to the bitmap file. */ |