提交 36de9556 编写于 作者: D Dave Chinner 提交者: Dave Chinner

xfs: kill xfs_buf_geterror()

Most of the callers are just calling ASSERT(!xfs_buf_geterror())
which means they are checking for bp->b_error == 0. If bp is null in
this case, we will assert fail, and hence it's no different in
result to oopsing because of a null bp. In some cases, errors have
already been checked for or the function returning the buffer can't
return a buffer with an error, so it's just a redundant assert.
Either way, the assert can either be removed.

The other two non-assert callers can just test for a buffer and
error properly.
Signed-off-by: NDave Chinner <dchinner@redhat.com>
Reviewed-by: NBrian Foster <bfoster@redhat.com>
Reviewed-by: NChristoph Hellwig <hch@lst.de>
Signed-off-by: NDave Chinner <david@fromorbit.com>

上级 556b8883
...@@ -541,7 +541,6 @@ xfs_alloc_read_agfl( ...@@ -541,7 +541,6 @@ xfs_alloc_read_agfl(
XFS_FSS_TO_BB(mp, 1), 0, &bp, &xfs_agfl_buf_ops); XFS_FSS_TO_BB(mp, 1), 0, &bp, &xfs_agfl_buf_ops);
if (error) if (error)
return error; return error;
ASSERT(!xfs_buf_geterror(bp));
xfs_buf_set_ref(bp, XFS_AGFL_REF); xfs_buf_set_ref(bp, XFS_AGFL_REF);
*bpp = bp; *bpp = bp;
return 0; return 0;
......
...@@ -552,14 +552,11 @@ xfs_btree_get_bufl( ...@@ -552,14 +552,11 @@ xfs_btree_get_bufl(
xfs_fsblock_t fsbno, /* file system block number */ xfs_fsblock_t fsbno, /* file system block number */
uint lock) /* lock flags for get_buf */ uint lock) /* lock flags for get_buf */
{ {
xfs_buf_t *bp; /* buffer pointer (return value) */
xfs_daddr_t d; /* real disk block address */ xfs_daddr_t d; /* real disk block address */
ASSERT(fsbno != NULLFSBLOCK); ASSERT(fsbno != NULLFSBLOCK);
d = XFS_FSB_TO_DADDR(mp, fsbno); d = XFS_FSB_TO_DADDR(mp, fsbno);
bp = xfs_trans_get_buf(tp, mp->m_ddev_targp, d, mp->m_bsize, lock); return xfs_trans_get_buf(tp, mp->m_ddev_targp, d, mp->m_bsize, lock);
ASSERT(!xfs_buf_geterror(bp));
return bp;
} }
/* /*
...@@ -574,15 +571,12 @@ xfs_btree_get_bufs( ...@@ -574,15 +571,12 @@ xfs_btree_get_bufs(
xfs_agblock_t agbno, /* allocation group block number */ xfs_agblock_t agbno, /* allocation group block number */
uint lock) /* lock flags for get_buf */ uint lock) /* lock flags for get_buf */
{ {
xfs_buf_t *bp; /* buffer pointer (return value) */
xfs_daddr_t d; /* real disk block address */ xfs_daddr_t d; /* real disk block address */
ASSERT(agno != NULLAGNUMBER); ASSERT(agno != NULLAGNUMBER);
ASSERT(agbno != NULLAGBLOCK); ASSERT(agbno != NULLAGBLOCK);
d = XFS_AGB_TO_DADDR(mp, agno, agbno); d = XFS_AGB_TO_DADDR(mp, agno, agbno);
bp = xfs_trans_get_buf(tp, mp->m_ddev_targp, d, mp->m_bsize, lock); return xfs_trans_get_buf(tp, mp->m_ddev_targp, d, mp->m_bsize, lock);
ASSERT(!xfs_buf_geterror(bp));
return bp;
} }
/* /*
...@@ -722,7 +716,6 @@ xfs_btree_read_bufl( ...@@ -722,7 +716,6 @@ xfs_btree_read_bufl(
mp->m_bsize, lock, &bp, ops); mp->m_bsize, lock, &bp, ops);
if (error) if (error)
return error; return error;
ASSERT(!xfs_buf_geterror(bp));
if (bp) if (bp)
xfs_buf_set_ref(bp, refval); xfs_buf_set_ref(bp, refval);
*bpp = bp; *bpp = bp;
...@@ -1178,7 +1171,6 @@ xfs_btree_read_buf_block( ...@@ -1178,7 +1171,6 @@ xfs_btree_read_buf_block(
if (error) if (error)
return error; return error;
ASSERT(!xfs_buf_geterror(*bpp));
xfs_btree_set_refs(cur, *bpp); xfs_btree_set_refs(cur, *bpp);
*block = XFS_BUF_TO_BLOCK(*bpp); *block = XFS_BUF_TO_BLOCK(*bpp);
return 0; return 0;
......
...@@ -298,11 +298,6 @@ extern void xfs_buf_iomove(xfs_buf_t *, size_t, size_t, void *, ...@@ -298,11 +298,6 @@ extern void xfs_buf_iomove(xfs_buf_t *, size_t, size_t, void *,
extern int xfs_bioerror_relse(struct xfs_buf *); extern int xfs_bioerror_relse(struct xfs_buf *);
static inline int xfs_buf_geterror(xfs_buf_t *bp)
{
return bp ? bp->b_error : ENOMEM;
}
/* Buffer Utility Routines */ /* Buffer Utility Routines */
extern xfs_caddr_t xfs_buf_offset(xfs_buf_t *, size_t); extern xfs_caddr_t xfs_buf_offset(xfs_buf_t *, size_t);
......
...@@ -1053,7 +1053,7 @@ xfs_buf_iodone_callbacks( ...@@ -1053,7 +1053,7 @@ xfs_buf_iodone_callbacks(
static ulong lasttime; static ulong lasttime;
static xfs_buftarg_t *lasttarg; static xfs_buftarg_t *lasttarg;
if (likely(!xfs_buf_geterror(bp))) if (likely(!bp->b_error))
goto do_callbacks; goto do_callbacks;
/* /*
......
...@@ -353,10 +353,10 @@ xfs_qm_dqalloc( ...@@ -353,10 +353,10 @@ xfs_qm_dqalloc(
dqp->q_blkno, dqp->q_blkno,
mp->m_quotainfo->qi_dqchunklen, mp->m_quotainfo->qi_dqchunklen,
0); 0);
if (!bp) {
error = xfs_buf_geterror(bp); error = ENOMEM;
if (error)
goto error1; goto error1;
}
bp->b_ops = &xfs_dquot_buf_ops; bp->b_ops = &xfs_dquot_buf_ops;
/* /*
......
...@@ -1640,7 +1640,6 @@ xfs_read_agi( ...@@ -1640,7 +1640,6 @@ xfs_read_agi(
if (error) if (error)
return error; return error;
ASSERT(!xfs_buf_geterror(*bpp));
xfs_buf_set_ref(*bpp, XFS_AGI_REF); xfs_buf_set_ref(*bpp, XFS_AGI_REF);
return 0; return 0;
} }
......
...@@ -1165,7 +1165,7 @@ xlog_iodone(xfs_buf_t *bp) ...@@ -1165,7 +1165,7 @@ xlog_iodone(xfs_buf_t *bp)
/* /*
* Race to shutdown the filesystem if we see an error. * Race to shutdown the filesystem if we see an error.
*/ */
if (XFS_TEST_ERROR((xfs_buf_geterror(bp)), l->l_mp, if (XFS_TEST_ERROR(bp->b_error, l->l_mp,
XFS_ERRTAG_IODONE_IOERR, XFS_RANDOM_IODONE_IOERR)) { XFS_ERRTAG_IODONE_IOERR, XFS_RANDOM_IODONE_IOERR)) {
xfs_buf_ioerror_alert(bp, __func__); xfs_buf_ioerror_alert(bp, __func__);
xfs_buf_stale(bp); xfs_buf_stale(bp);
......
...@@ -74,7 +74,6 @@ xfs_rtbuf_get( ...@@ -74,7 +74,6 @@ xfs_rtbuf_get(
mp->m_bsize, 0, &bp, NULL); mp->m_bsize, 0, &bp, NULL);
if (error) if (error)
return error; return error;
ASSERT(!xfs_buf_geterror(bp));
*bpp = bp; *bpp = bp;
return 0; return 0;
} }
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册