Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 4ce15989 authored by Dave Chinner's avatar Dave Chinner Committed by Alex Elder
Browse files

xfs: prevent extsize alignment from exceeding maximum extent size



When doing delayed allocation, if the allocation size is for a
maximally sized extent, extent size alignment can push it over this
limit. This results in an assert failure in xfs_bmbt_set_allf() as
the extent length is too large to find in the extent record.

Fix this by ensuring that we allow for space that extent size
alignment requires (up to 2 * (extsize -1) blocks as we have to
handle both head and tail alignment) when limiting the maximum size
of the extent.

Signed-off-by: default avatarDave Chinner <dchinner@redhat.com>
Reviewed-by: default avatarChristoph Hellwig <hch@lst.de>
Reviewed-by: default avatarAlex Elder <aelder@sgi.com>
parent 14b064ce
Loading
Loading
Loading
Loading
+10 −0
Original line number Original line Diff line number Diff line
@@ -4487,6 +4487,16 @@ xfs_bmapi(
				/* Figure out the extent size, adjust alen */
				/* Figure out the extent size, adjust alen */
				extsz = xfs_get_extsz_hint(ip);
				extsz = xfs_get_extsz_hint(ip);
				if (extsz) {
				if (extsz) {
					/*
					 * make sure we don't exceed a single
					 * extent length when we align the
					 * extent by reducing length we are
					 * going to allocate by the maximum
					 * amount extent size aligment may
					 * require.
					 */
					alen = XFS_FILBLKS_MIN(len,
						   MAXEXTLEN - (2 * extsz - 1));
					error = xfs_bmap_extsize_align(mp,
					error = xfs_bmap_extsize_align(mp,
							&got, &prev, extsz,
							&got, &prev, extsz,
							rt, eof,
							rt, eof,