* The 'resource.fs.zfs.removed' event is an internal signal that the given vdev * has been removed from the system. This will cause the DE to ignore any * recent I/O errors, inferring that they are due to the asynchronous device * removal. */
| 1304 | * removal. |
| 1305 | */ |
| 1306 | void |
| 1307 | zfs_post_remove(spa_t *spa, vdev_t *vd) |
| 1308 | { |
| 1309 | zfs_post_common(spa, vd, FM_RSRC_CLASS, FM_RESOURCE_REMOVED, NULL); |
| 1310 | } |
| 1311 | |
| 1312 | /* |
| 1313 | * The 'resource.fs.zfs.autoreplace' event is an internal signal that the pool |
no test coverage detected