| 1115 | } |
| 1116 | |
| 1117 | void |
| 1118 | spa_l2cache_remove(vdev_t *vd) |
| 1119 | { |
| 1120 | mutex_enter(&spa_l2cache_lock); |
| 1121 | ASSERT(vd->vdev_isl2cache); |
| 1122 | spa_aux_remove(vd, &spa_l2cache_avl); |
| 1123 | vd->vdev_isl2cache = B_FALSE; |
| 1124 | mutex_exit(&spa_l2cache_lock); |
| 1125 | } |
| 1126 | |
| 1127 | boolean_t |
| 1128 | spa_l2cache_exists(uint64_t guid, uint64_t *pool) |
no test coverage detected