On Fri, 2011-07-01 at 05:43 -0400, Christoph Hellwig wrote:
> plain text document attachment (xfs-split-xfs_itruncate_finish)
> Split the guts of xfs_itruncate_finish that loop over the existing extents
> and calls xfs_bunmapi on them into a new helper, xfs_itruncate_externs.
> Make xfs_attr_inactive call it directly instead of xfs_itruncate_finish,
> which allows to simplify the latter a lot, by only letting it deal with
> the data fork. As a result xfs_itruncate_finish is renamed to
> xfs_itruncate_data to make its use case more obvious.
>
> Also remove the sync parameter from xfs_itruncate_data, which has been
> unessecary since the introduction of the busy extent list in 2002, and
> completely dead code since 2003 when the XFS_BMAPI_ASYNC parameter was
> made a no-op.
>
> I can't actually see why the xfs_attr_inactive needs to set the transaction
> sync, but let's keep this patch simple and without changes in behaviour.
>
> Signed-off-by: Christoph Hellwig <hch@xxxxxx>
> Reviewed-by: Dave Chinner <dchinner@xxxxxxxxxx>
OK, finally got through this. Not with my usual
rigor, but it looks like a pretty reasonable
split-up of the function.
I have one remark but that's it.
Reviewed-by: Alex Elder <aelder@xxxxxxx>
. . .
> @@ -1390,128 +1274,143 @@ xfs_itruncate_finish(
> * beyond the maximum file size (ie it is the same as last_block),
> * then there is nothing to do.
> */
> + first_unmap_block = XFS_B_TO_FSB(mp, (xfs_ufsize_t)new_size);
> last_block = XFS_B_TO_FSB(mp, (xfs_ufsize_t)XFS_MAXIOFFSET(mp));
> - ASSERT(first_unmap_block <= last_block);
. . .
> + if (error)
> + goto out_bmap_cancel;
>
> /*
> * Duplicate the transaction that has the permanent
> * reservation and commit the old transaction.
> */
> - error = xfs_bmap_finish(tp, &free_list, &committed);
> - ntp = *tp;
> + error = xfs_bmap_finish(&tp, &free_list, &committed);
> if (committed)
> - xfs_trans_ijoin(ntp, ip);
> -
> - if (error) {
> - /*
> - * If the bmap finish call encounters an error, return
> - * to the caller where the transaction can be properly
> - * aborted. We just need to make sure we're not
> - * holding any resources that we were not when we came
> - * in.
> - *
> - * Aborting from this point might lose some blocks in
> - * the file system, but oh well.
The above comment (if true--I haven't really checked) seems
like something significant to preserve.
> - */
> - xfs_bmap_cancel(&free_list);
> - return error;
> - }
> + xfs_trans_ijoin(tp, ip);
> + if (error)
> + goto out_bmap_cancel;
. . .
> +
> +out:
> + *tpp = tp;
> + return error;
> +out_bmap_cancel:
> + /*
> + * If the bunmapi call encounters an error, return to the caller where
> + * the transaction can be properly aborted. We just need to make sure
> + * we're not holding any resources that we were not when we came in.
> + */
> + xfs_bmap_cancel(&free_list);
> + goto out;
> +}
> +
. . .
|