On Wed, Jan 22, 2020 at 11:42:03PM -0800, Darrick J. Wong wrote: > - return -ENOMEM; > + error = xfs_buf_read(mp->m_ddev_targp, dblkno, dblkcnt, > + 0, &bp, &xfs_attr3_rmt_buf_ops); > + if (error) > + return error; > error = bp->b_error; > if (error) { > xfs_buf_ioerror_alert(bp, __func__); This still has the bogus b_error check where it should just check the error and report it based on the return value. > diff --git a/fs/xfs/xfs_buf.h b/fs/xfs/xfs_buf.h > index 56e081dd1d96..fb60c36a8a5b 100644 > --- a/fs/xfs/xfs_buf.h > +++ b/fs/xfs/xfs_buf.h > @@ -213,16 +213,25 @@ xfs_buf_get( > return xfs_buf_get_map(target, &map, 1, 0); > } > > -static inline struct xfs_buf * > +static inline int > xfs_buf_read( > struct xfs_buftarg *target, > xfs_daddr_t blkno, > size_t numblks, > xfs_buf_flags_t flags, > + struct xfs_buf **bpp, > const struct xfs_buf_ops *ops) > { > + struct xfs_buf *bp; > DEFINE_SINGLE_BUF_MAP(map, blkno, numblks); > - return xfs_buf_read_map(target, &map, 1, flags, ops); > + > + *bpp = NULL; > + bp = xfs_buf_read_map(target, &map, 1, flags, ops); > + if (!bp) > + return -ENOMEM; > + > + *bpp = bp; > + return 0; > } > > static inline void > diff --git a/fs/xfs/xfs_log_recover.c b/fs/xfs/xfs_log_recover.c > index 0d683fb96396..b29806846916 100644 > --- a/fs/xfs/xfs_log_recover.c > +++ b/fs/xfs/xfs_log_recover.c > @@ -2745,10 +2745,10 @@ xlog_recover_buffer_pass2( > if (buf_f->blf_flags & XFS_BLF_INODE_BUF) > buf_flags |= XBF_UNMAPPED; > > - bp = xfs_buf_read(mp->m_ddev_targp, buf_f->blf_blkno, buf_f->blf_len, > - buf_flags, NULL); > - if (!bp) > - return -ENOMEM; > + error = xfs_buf_read(mp->m_ddev_targp, buf_f->blf_blkno, buf_f->blf_len, > + buf_flags, &bp, NULL); > + if (error) > + return error; > error = bp->b_error; > if (error) { .. and same here.