| To: | Dave Chinner <david@xxxxxxxxxxxxx> |
|---|---|
| Subject: | Re: [PATCH 8/9] xfs: use AIL bulk update function to implement single updates |
| From: | Christoph Hellwig <hch@xxxxxxxxxxxxx> |
| Date: | Fri, 17 Dec 2010 09:15:56 -0500 |
| Cc: | xfs@xxxxxxxxxxx |
| In-reply-to: | <1292214743-18073-9-git-send-email-david@xxxxxxxxxxxxx> |
| References: | <1292214743-18073-1-git-send-email-david@xxxxxxxxxxxxx> <1292214743-18073-9-git-send-email-david@xxxxxxxxxxxxx> |
| User-agent: | Mutt/1.5.21 (2010-09-15) |
On Mon, Dec 13, 2010 at 03:32:22PM +1100, Dave Chinner wrote:
> From: Dave Chinner <dchinner@xxxxxxxxxx>
>
> We now have two copies of AIL insert operations that are mostly
> duplicate functionality. The single log item updates can be
> implemented via the bulk updates by turning xfs_trans_ail_update()
> into a simple wrapper. This removes all the duplicate insert
> functionality and associated helpers.
Looks good,
Reviewed-by: Christoph Hellwig <hch@xxxxxx>
> + struct xfs_ail *ailp,
> +static inline void
> +xfs_trans_ail_update(
> + xfs_log_item_t *lip,
> + xfs_lsn_t lsn) __releases(ailp->xa_lock)
> +{
> + struct xfs_log_item *log_items[1] = { lip, };
> +
> + xfs_trans_ail_update_bulk(ailp, log_items, 1, lsn);
This could be simplified down to:
xfs_trans_ail_update_bulk(ailp, &lip, 1, lsn);
at which point it could even become a macro.
|
| <Prev in Thread] | Current Thread | [Next in Thread> |
|---|---|---|
| ||
| Previous by Date: | Re: [PATCH 7/9] xfs: remove all the inodes on a buffer from the AIL in bulk, Christoph Hellwig |
|---|---|
| Next by Date: | Re: [PATCH 9/9] xfs: use AIL bulk delete function to implement single delete, Christoph Hellwig |
| Previous by Thread: | [PATCH 8/9] xfs: use AIL bulk update function to implement single updates, Dave Chinner |
| Next by Thread: | Re: [PATCH 8/9] xfs: use AIL bulk update function to implement single updates, Dave Chinner |
| Indexes: | [Date] [Thread] [Top] [All Lists] |