diff options
author | Christoph Hellwig <hch@infradead.org> | 2010-04-28 12:28:54 +0000 |
---|---|---|
committer | Alex Elder <aelder@sgi.com> | 2010-05-19 09:58:17 -0500 |
commit | 8699bb0a480193e62d5ccb9c86e2c26b407090a8 (patch) | |
tree | aabcc9cd0800cf5c0d0605d46a104ed825f90db6 /fs/xfs/xfs_iomap.c | |
parent | 9563b3d8998c78d5b7e718b546d5f68037c494fe (diff) | |
download | linux-3.10-8699bb0a480193e62d5ccb9c86e2c26b407090a8.tar.gz linux-3.10-8699bb0a480193e62d5ccb9c86e2c26b407090a8.tar.bz2 linux-3.10-8699bb0a480193e62d5ccb9c86e2c26b407090a8.zip |
xfs: report iomap_offset and iomap_bsize in block base
Report the iomap_offset and iomap_bsize fields of struct xfs_iomap
in terms of fsblocks instead of in terms of disk blocks. Shift the
byte conversions into the callers temporarily, but they will
disappear or get cleaned up later.
Signed-off-by: Christoph Hellwig <hch@lst.de>
Signed-off-by: Alex Elder <aelder@sgi.com>
Diffstat (limited to 'fs/xfs/xfs_iomap.c')
-rw-r--r-- | fs/xfs/xfs_iomap.c | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/fs/xfs/xfs_iomap.c b/fs/xfs/xfs_iomap.c index c6b409e0f01..49b5ad22a9d 100644 --- a/fs/xfs/xfs_iomap.c +++ b/fs/xfs/xfs_iomap.c @@ -64,11 +64,10 @@ xfs_imap_to_bmap( int imaps, /* Number of imap entries */ int flags) { - xfs_mount_t *mp = ip->i_mount; xfs_fsblock_t start_block; - iomapp->iomap_offset = XFS_FSB_TO_B(mp, imap->br_startoff); - iomapp->iomap_bsize = XFS_FSB_TO_B(mp, imap->br_blockcount); + iomapp->iomap_offset = imap->br_startoff; + iomapp->iomap_bsize = imap->br_blockcount; iomapp->iomap_flags = flags; start_block = imap->br_startblock; |