Searched refs:io_error (Results 1 - 22 of 22) sorted by relevance

/freebsd-10.0-release/contrib/llvm/lib/Support/Windows/
H A Dsystem_error.inc70 MAP_ERR_TO_COND(ERROR_CANTOPEN, io_error);
71 MAP_ERR_TO_COND(ERROR_CANTREAD, io_error);
72 MAP_ERR_TO_COND(ERROR_CANTWRITE, io_error);
95 MAP_ERR_TO_COND(ERROR_OPEN_FAILED, io_error);
101 MAP_ERR_TO_COND(ERROR_READ_FAULT, io_error);
103 MAP_ERR_TO_COND(ERROR_SEEK, io_error);
106 MAP_ERR_TO_COND(ERROR_WRITE_FAULT, io_error);
/freebsd-10.0-release/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/
H A Dvdev_file.c166 zio->io_error = SET_ERROR(ENXIO);
176 zio->io_error = VOP_FSYNC(vp, FSYNC | FDSYNC,
180 zio->io_error = SET_ERROR(ENOTSUP);
186 zio->io_error = vn_rdwr(zio->io_type == ZIO_TYPE_READ ?
190 if (resid != 0 && zio->io_error == 0)
191 zio->io_error = ENOSPC;
H A Dvdev_missing.c73 zio->io_error = SET_ERROR(ENOTSUP);
H A Dvdev_disk.c494 zio->io_error = (geterror(bp) != 0 ? EIO : 0);
496 if (zio->io_error == 0 && bp->b_resid != 0)
497 zio->io_error = SET_ERROR(EIO);
520 zio->io_error = error;
538 zio->io_error = SET_ERROR(ENXIO);
550 zio->io_error = SET_ERROR(ENOTSUP);
583 zio->io_error = error;
588 zio->io_error = SET_ERROR(ENOTSUP);
627 if (zio->io_error == EIO && !vd->vdev_remove_wanted) {
H A Dvdev_geom.c710 zio->io_error = bp->bio_error;
711 if (zio->io_error == 0 && bp->bio_resid != 0)
712 zio->io_error = EIO;
731 if (zio->io_error == EIO && !vd->vdev_remove_wanted) {
768 zio->io_error = ENXIO;
777 zio->io_error = ENOTSUP;
785 zio->io_error = ENOTSUP;
790 zio->io_error = ENOTSUP;
798 zio->io_error = ENXIO;
H A Dvdev_mirror.c183 mc->mc_error = zio->io_error;
193 if (zio->io_error == 0) {
208 mc->mc_error = zio->io_error;
380 zio->io_error = vdev_mirror_worst_error(mm);
406 zio->io_error = vdev_mirror_worst_error(mm);
407 ASSERT(zio->io_error != 0);
H A Dzio.c410 if (zio->io_error == 0 &&
413 zio->io_error = SET_ERROR(EIO);
550 if (zio->io_error && !(zio->io_flags & ZIO_FLAG_DONT_PROPAGATE))
551 *errorp = zio_worst_error(*errorp, zio->io_error);
566 if (zio->io_child_error[c] != 0 && zio->io_error == 0)
567 zio->io_error = zio->io_child_error[c];
1372 error = zio->io_error;
1419 pio->io_error = 0;
1721 if (zio->io_error)
1861 pio->io_error
[all...]
H A Dzfs_fm.c153 if (zio->io_error == EIO &&
175 zio->io_error == ECKSUM &&
300 DATA_TYPE_INT32, zio->io_error, NULL);
H A Dvdev_label.c905 if (zio->io_error == 0 && uberblock_verify(ub) == 0) {
993 if (zio->io_error == 0 && zio->io_vd->vdev_top->vdev_ms_array != 0)
1068 if (zio->io_error == 0)
1081 zio->io_error = SET_ERROR(EIO);
H A Dzio_checksum.c269 if (zio_injection_enabled && !zio->io_error &&
H A Darc.c2918 if (zio == NULL || zio->io_error == 0)
2928 if (zio && zio->io_error) {
2972 if (BP_SHOULD_BYTESWAP(zio->io_bp) && zio->io_error == 0) {
2986 if (hash_lock && zio->io_error == 0 && hdr->b_state == arc_anon) {
3019 if (zio->io_error != 0) {
3054 acb->acb_zio_dummy->io_error = zio->io_error;
3711 if (zio->io_error == 0) {
3729 ASSERT(zio->io_error == 0);
4538 if (zio->io_error !
[all...]
H A Dvdev_cache.c256 if (fio->io_error || ve->ve_missed_update)
H A Ddmu.c1269 if (zio->io_error == 0) {
1299 if (zio->io_error == 0) {
1321 dsa->dsa_done(dsa->dsa_zgd, zio->io_error);
1333 if (zio->io_error == 0 && !BP_IS_HOLE(bp)) {
1351 dsa->dsa_done(dsa->dsa_zgd, zio->io_error);
H A Dvdev.c971 if (zio->io_error == 0)
973 if (zio->io_error == 0 && spa_writeable(spa)) {
982 if (zio->io_error == 0)
993 zio->io_error = 0;
995 ASSERT(zio->io_error != 0);
998 zio->io_error = SET_ERROR(ENXIO);
1008 pio->io_error = SET_ERROR(ENXIO);
2740 if (zio->io_error == 0) {
2750 * Note: this only applies to successful i/o (io_error == 0)
2797 if (zio->io_error
[all...]
H A Dvdev_raidz.c1707 rc->rc_error = zio->io_error;
2168 zio->io_error = vdev_raidz_worst_error(rm);
2311 zio->io_error = vdev_raidz_worst_error(rm);
2335 zio->io_error = SET_ERROR(ECKSUM);
2359 if (zio->io_error == 0 && spa_writeable(zio->io_spa) &&
H A Ddsl_scan.c1644 if (zio->io_error && (zio->io_error != ECKSUM ||
H A Ddbuf.c505 } else if (zio == NULL || zio->io_error == 0) {
2549 ASSERT0(zio->io_error);
H A Dspa.c1761 if (zio->io_error)
1781 int error = zio->io_error;
/freebsd-10.0-release/contrib/llvm/include/llvm/Support/
H A Dsystem_error.h156 io_error, // EIO
524 io_error = EIO, enumerator in enum:llvm::errc::_
/freebsd-10.0-release/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/sys/
H A Dzio.h460 int io_error; member in struct:zio
/freebsd-10.0-release/sys/dev/ciss/
H A Dcissreg.h375 struct ciss_notify_io_error io_error; member in union:ciss_notify::__anon7772
H A Dciss.c4057 cn->data.io_error.logical_drive,
4059 cn->data.io_error.failure_bus,
4060 cn->data.io_error.failure_drive);

Completed in 377 milliseconds