Lines Matching refs:error
122 int error;
130 error = xchk_setup_xattr_buf(sc, XATTR_SIZE_MAX);
131 if (error)
132 return error;
175 int error = 0;
180 if (xchk_should_terminate(sx->sc, &error)) {
181 context->seen_enough = error;
214 * the error message back to the main scrub function.
216 error = xchk_setup_xattr_buf(sx->sc, valuelen);
217 if (error == -ENOMEM)
218 error = -EDEADLOCK;
219 if (error) {
220 context->seen_enough = error;
226 error = xfs_attr_get_ilocked(&args);
228 if (error == -ENODATA)
229 error = -EFSCORRUPTED;
231 &error))
467 int error;
474 error = xchk_xattr_block(ds, level);
475 if (error)
481 error = xchk_da_btree_hash(ds, level, &ent->hashval);
482 if (error)
521 return error;
536 int error = 0;
555 if (xchk_should_terminate(sc, &error))
556 return error;
607 int error = 0;
613 error = xchk_setup_xattr_buf(sc, 0);
614 if (error == -ENOMEM)
616 if (error)
617 return error;
621 error = xchk_xattr_check_sf(sc);
623 error = xchk_da_btree(sc, XFS_ATTR_FORK, xchk_xattr_rec,
625 if (error)
626 return error;
647 error = xfs_attr_list_ilocked(&sx.context);
648 if (!xchk_fblock_process_error(sc, XFS_ATTR_FORK, 0, &error))
649 return error;