Lines Matching defs:error
75 int error;
83 error = xchk_setup_xattr_buf(sc, XATTR_SIZE_MAX, 0);
84 if (error)
85 return error;
116 int error = 0;
120 if (xchk_should_terminate(sx->sc, &error)) {
121 context->seen_enough = error;
140 * the error message back to the main scrub function.
142 error = xchk_setup_xattr_buf(sx->sc, valuelen, KM_MAYFAIL);
143 if (error == -ENOMEM)
144 error = -EDEADLOCK;
145 if (error) {
146 context->seen_enough = error;
162 error = xfs_attr_get_ilocked(&args);
164 if (error == -ENODATA)
165 error = -EFSCORRUPTED;
167 &error))
321 int error;
327 error = xchk_setup_xattr_buf(ds->sc, 0, KM_MAYFAIL);
328 if (error == -ENOMEM)
330 if (error)
331 return error;
414 int error;
421 error = xchk_xattr_block(ds, level);
422 if (error)
428 error = xchk_da_btree_hash(ds, level, &ent->hashval);
429 if (error)
468 return error;
478 int error = 0;
485 error = xchk_da_btree(sc, XFS_ATTR_FORK, xchk_xattr_rec,
487 if (error)
517 error = xfs_attr_list_ilocked(&sx.context);
518 if (!xchk_fblock_process_error(sc, XFS_ATTR_FORK, 0, &error))
523 error = sx.context.seen_enough;
525 return error;