aboutsummaryrefslogtreecommitdiffstats
path: root/fs/xfs/xfs_iomap.c
diff options
context:
space:
mode:
authorChristoph Hellwig <hch@infradead.org>2010-04-28 12:28:54 +0000
committerAlex Elder <aelder@sgi.com>2010-05-19 09:58:17 -0500
commit8699bb0a480193e62d5ccb9c86e2c26b407090a8 (patch)
treeaabcc9cd0800cf5c0d0605d46a104ed825f90db6 /fs/xfs/xfs_iomap.c
parent9563b3d8998c78d5b7e718b546d5f68037c494fe (diff)
downloadkernel_samsung_smdk4412-8699bb0a480193e62d5ccb9c86e2c26b407090a8.zip
kernel_samsung_smdk4412-8699bb0a480193e62d5ccb9c86e2c26b407090a8.tar.gz
kernel_samsung_smdk4412-8699bb0a480193e62d5ccb9c86e2c26b407090a8.tar.bz2
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.c5
1 files changed, 2 insertions, 3 deletions
diff --git a/fs/xfs/xfs_iomap.c b/fs/xfs/xfs_iomap.c
index c6b409e..49b5ad2 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;