diff options
author | Christoph Hellwig <hch@lst.de> | 2008-11-27 22:23:40 -0500 |
---|---|---|
committer | Niv Sardi <xaiki@sgi.com> | 2008-11-30 19:37:52 -0500 |
commit | 76d8b277f7b715f78ee3cb09ee112563639693a5 (patch) | |
tree | 49d4e3ae1d579e4fa353cfd32150c11512df7a78 /fs/xfs/xfs_log_recover.c | |
parent | 23fac50f959a87febf7ce4ae9d47525121f10c7a (diff) |
[XFS] stop using xfs_itobp in xfs_iread
The only caller of xfs_itobp that doesn't have i_blkno setup is now
the initial inode read. It needs access to the whole xfs_imap so using
xfs_inotobp is not an option. Instead opencode the buffer lookup in
xfs_iread and kill all the functionality for the initial map from
xfs_itobp.
(First sent on October 21st)
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_log_recover.c')
-rw-r--r-- | fs/xfs/xfs_log_recover.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/fs/xfs/xfs_log_recover.c b/fs/xfs/xfs_log_recover.c index 841398d24211..48bdfa4dc290 100644 --- a/fs/xfs/xfs_log_recover.c +++ b/fs/xfs/xfs_log_recover.c | |||
@@ -3169,7 +3169,7 @@ xlog_recover_process_one_iunlink( | |||
3169 | * Get the on disk inode to find the next inode in the bucket. | 3169 | * Get the on disk inode to find the next inode in the bucket. |
3170 | */ | 3170 | */ |
3171 | ASSERT(ip != NULL); | 3171 | ASSERT(ip != NULL); |
3172 | error = xfs_itobp(mp, NULL, ip, &dip, &ibp, 0, 0, XFS_BUF_LOCK); | 3172 | error = xfs_itobp(mp, NULL, ip, &dip, &ibp, XFS_BUF_LOCK); |
3173 | if (error) | 3173 | if (error) |
3174 | goto fail; | 3174 | goto fail; |
3175 | 3175 | ||