diff options
author | Chandra Seetharaman <sekharan@us.ibm.com> | 2011-07-23 03:40:40 +0400 |
---|---|---|
committer | Alex Elder <aelder@sgi.com> | 2011-07-26 00:03:31 +0400 |
commit | 49074c069cd3f0f683325d0c7f8b2765dbe2e294 (patch) | |
tree | eaa2bae9ebabf0728d8087ac40e2ca60b6471609 /fs/xfs/xfs_mount.c | |
parent | e38c9b87e5b428b3e2a2e48ab0ee2b6cdc8e6208 (diff) | |
download | linux-49074c069cd3f0f683325d0c7f8b2765dbe2e294.tar.xz |
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_mount.c')
-rw-r--r-- | fs/xfs/xfs_mount.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/fs/xfs/xfs_mount.c b/fs/xfs/xfs_mount.c index b00c808d7d3e..49ecc170f749 100644 --- a/fs/xfs/xfs_mount.c +++ b/fs/xfs/xfs_mount.c @@ -1615,7 +1615,7 @@ xfs_unmountfs_writesb(xfs_mount_t *mp) XFS_BUF_UNDELAYWRITE(sbp); XFS_BUF_WRITE(sbp); XFS_BUF_UNASYNC(sbp); - ASSERT(XFS_BUF_TARGET(sbp) == mp->m_ddev_targp); + ASSERT(sbp->b_target == mp->m_ddev_targp); xfsbdstrat(mp, sbp); error = xfs_buf_iowait(sbp); if (error) |