Lines Matching defs:errors
34 * on its own. Now, with the DE keeping track of errors, the kernel side is
38 * looking at all previously reported errors, the DE decides what should
45 * The p_toxic field in the page_t is used to indicate which errors have
46 * occurred and what action has been taken on a given page. Because errors are
67 * are scrubbed prior to rebooting to avoid latent errors on the next boot.
69 * UE pages without persistent errors are scrubbed and returned to service.
78 * world to allow errors to be reflected all the way out to user land. The
604 int errors = 0;
646 errors = 1;
667 errors = 1;
678 return (errors ? 0 : 1);
1193 * Test a page to see if it is retired. If errors is non-NULL, the toxic
1197 page_retire_check_pp(page_t *pp, uint64_t *errors)
1216 if (errors) {
1222 *errors = toxic;
1230 * hardware errors we have seen on the page if requested.
1237 * - EIO if the page is not retired and has no errors,
1242 page_retire_check(uint64_t pa, uint64_t *errors)
1246 if (errors) {
1247 *errors = 0;
1255 return (page_retire_check_pp(pp, errors));