diff options
author | Amit Sahrawat <amit.sahrawat83@gmail.com> | 2012-01-16 12:24:36 +0000 |
---|---|---|
committer | Ben Myers <bpm@sgi.com> | 2012-02-02 17:08:04 -0600 |
commit | b9957308452afcf58e656db834f44df10d7b1662 (patch) | |
tree | 73f1b10f46ac7cb94042fb4c714ccdf4828c0d6f | |
parent | 021000e59c0db2d3a8113e906bde3183c33fa84b (diff) | |
download | linux-3.10-b9957308452afcf58e656db834f44df10d7b1662.tar.gz linux-3.10-b9957308452afcf58e656db834f44df10d7b1662.tar.bz2 linux-3.10-b9957308452afcf58e656db834f44df10d7b1662.zip |
xfs: kill the unused XFS_BB_FSB_OFFSET macro
Removing the macro, as this is no more needed in the code.
Tried to find the reference when it was last used - but the usage
for this seemed to have been dropped long time ago.
Signed-off-by: Amit Sahrawat <amit.sahrawat83@gmail.com>
Reviewed-by: Christoph Hellwig <hch@lst.de>
Signed-off-by: Ben Myers <bpm@sgi.com>
-rw-r--r-- | fs/xfs/xfs_sb.h | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/fs/xfs/xfs_sb.h b/fs/xfs/xfs_sb.h index cb6ae715814..f429d9d5d32 100644 --- a/fs/xfs/xfs_sb.h +++ b/fs/xfs/xfs_sb.h @@ -529,7 +529,6 @@ static inline int xfs_sb_version_hasprojid32bit(xfs_sb_t *sbp) #define XFS_BB_TO_FSB(mp,bb) \ (((bb) + (XFS_FSB_TO_BB(mp,1) - 1)) >> (mp)->m_blkbb_log) #define XFS_BB_TO_FSBT(mp,bb) ((bb) >> (mp)->m_blkbb_log) -#define XFS_BB_FSB_OFFSET(mp,bb) ((bb) & ((mp)->m_bsize - 1)) /* * File system block to byte conversions. |