Lines Matching defs:error
29 * If the readahead buffer is invalid, we need to mark it with an error and
31 * from disk. We don't report the error otherwise to avoid warnings during log
34 * the error to, so this will distinguish it from a non-ra verifier failure.
35 * Changes to this readahead error behaviour also need to be reflected in
130 * If a non-zero error is returned, then the contents of bpp and dipp are
143 int error;
146 error = xfs_trans_read_buf(mp, tp, mp->m_ddev_targp, imap->im_blkno,
149 if (error) {
150 ASSERT(error != -EAGAIN || (buf_flags & XBF_TRYLOCK));
151 return error;
197 int error;
264 error = xfs_iformat_data_fork(ip, from);
265 if (error)
266 return error;
268 error = xfs_iformat_attr_fork(ip, from);
269 if (error)
278 return error;