diff options
author | Christoph Hellwig <hch@lst.de> | 2008-11-27 22:23:41 -0500 |
---|---|---|
committer | Niv Sardi <xaiki@sgi.com> | 2008-11-30 19:38:13 -0500 |
commit | b48d8d64377f39913663a06f4757f3b8c6fc6d87 (patch) | |
tree | fc85231bfa3bd58a3f3aa4dbd564b590e3ac0a8a /fs/xfs/xfs_itable.c | |
parent | 92bfc6e7c4eabbbd15e7d6d49123b296d05dcfd1 (diff) |
[XFS] kill the XFS_IMAP_BULKSTAT flag
Just pass down the XFS_IGET_* flags all the way down to xfs_imap instead
of translating them mid-way.
Signed-off-by: Christoph Hellwig <hch@lst.de>
Reviewed-by: Dave Chinner <david@fromorbit.com>
Signed-off-by: Niv Sardi <xaiki@sgi.com>
Diffstat (limited to 'fs/xfs/xfs_itable.c')
-rw-r--r-- | fs/xfs/xfs_itable.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/fs/xfs/xfs_itable.c b/fs/xfs/xfs_itable.c index 4315ce642b4e..d4c0de860124 100644 --- a/fs/xfs/xfs_itable.c +++ b/fs/xfs/xfs_itable.c | |||
@@ -595,7 +595,7 @@ xfs_bulkstat( | |||
595 | 595 | ||
596 | error = xfs_inotobp(mp, NULL, ino, &dip, | 596 | error = xfs_inotobp(mp, NULL, ino, &dip, |
597 | &bp, &offset, | 597 | &bp, &offset, |
598 | XFS_IMAP_BULKSTAT); | 598 | XFS_IGET_BULKSTAT); |
599 | 599 | ||
600 | if (!error) | 600 | if (!error) |
601 | clustidx = offset / mp->m_sb.sb_inodesize; | 601 | clustidx = offset / mp->m_sb.sb_inodesize; |