diff options
| author | Chandra Seetharaman <[email protected]> | 2011-07-22 23:40:15 +0000 |
|---|---|---|
| committer | Alex Elder <[email protected]> | 2011-07-25 20:03:13 +0000 |
| commit | 6292604447ade7d150f5eba3b1518e1a224fda15 (patch) | |
| tree | a33ff273c5d2e9b60bd468aa6c077d173187da28 /fs/xfs/xfs_rtalloc.h | |
| parent | xfs: Remove macro XFS_BUF_SET_START (diff) | |
| download | kernel-6292604447ade7d150f5eba3b1518e1a224fda15.tar.gz kernel-6292604447ade7d150f5eba3b1518e1a224fda15.zip | |
xfs: Remove the macro XFS_BUF_PTR
Remove the definition and usages of the macro XFS_BUF_PTR.
Signed-off-by: Chandra Seetharaman <[email protected]>
Reviewed-by: Christoph Hellwig <[email protected]>
Signed-off-by: Alex Elder <[email protected]>
Diffstat (limited to 'fs/xfs/xfs_rtalloc.h')
| -rw-r--r-- | fs/xfs/xfs_rtalloc.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/fs/xfs/xfs_rtalloc.h b/fs/xfs/xfs_rtalloc.h index 09e1f4f35e97..f7f3a359c1c5 100644 --- a/fs/xfs/xfs_rtalloc.h +++ b/fs/xfs/xfs_rtalloc.h @@ -47,7 +47,7 @@ struct xfs_trans; #define XFS_SUMOFFSTOBLOCK(mp,s) \ (((s) * (uint)sizeof(xfs_suminfo_t)) >> (mp)->m_sb.sb_blocklog) #define XFS_SUMPTR(mp,bp,so) \ - ((xfs_suminfo_t *)((char *)XFS_BUF_PTR(bp) + \ + ((xfs_suminfo_t *)((bp)->b_addr + \ (((so) * (uint)sizeof(xfs_suminfo_t)) & XFS_BLOCKMASK(mp)))) #define XFS_BITTOBLOCK(mp,bi) ((bi) >> (mp)->m_blkbit_log) |
