diff options
author | Chandra Seetharaman <sekharan@us.ibm.com> | 2011-07-22 23:40:40 +0000 |
---|---|---|
committer | Alex Elder <aelder@sgi.com> | 2011-07-25 15:03:31 -0500 |
commit | 49074c069cd3f0f683325d0c7f8b2765dbe2e294 (patch) | |
tree | eaa2bae9ebabf0728d8087ac40e2ca60b6471609 /fs/xfs/xfs_trans_buf.c | |
parent | e38c9b87e5b428b3e2a2e48ab0ee2b6cdc8e6208 (diff) | |
download | blackbird-obmc-linux-49074c069cd3f0f683325d0c7f8b2765dbe2e294.tar.gz blackbird-obmc-linux-49074c069cd3f0f683325d0c7f8b2765dbe2e294.zip |
xfs: Remove the macro XFS_BUF_TARGET
Remove the definition and usages of the macro XFS_BUF_TARGET
Signed-off-by: Chandra Seetharaman <sekharan@us.ibm.com>
Reviewed-by: Christoph Hellwig <hch@lst.de>
Signed-off-by: Alex Elder <aelder@sgi.com>
Diffstat (limited to 'fs/xfs/xfs_trans_buf.c')
-rw-r--r-- | fs/xfs/xfs_trans_buf.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/fs/xfs/xfs_trans_buf.c b/fs/xfs/xfs_trans_buf.c index 7dd62e26ce92..137e2b9e2948 100644 --- a/fs/xfs/xfs_trans_buf.c +++ b/fs/xfs/xfs_trans_buf.c @@ -54,7 +54,7 @@ xfs_trans_buf_item_match( list_for_each_entry(lidp, &tp->t_items, lid_trans) { blip = (struct xfs_buf_log_item *)lidp->lid_item; if (blip->bli_item.li_type == XFS_LI_BUF && - XFS_BUF_TARGET(blip->bli_buf) == target && + blip->bli_buf->b_target == target && XFS_BUF_ADDR(blip->bli_buf) == blkno && XFS_BUF_COUNT(blip->bli_buf) == len) return blip->bli_buf; |