| 413 | } |
| 414 | |
| 415 | static void |
| 416 | zap_leaf_evict_sync(void *dbu) |
| 417 | { |
| 418 | zap_leaf_t *l = dbu; |
| 419 | |
| 420 | rw_destroy(&l->l_rwlock); |
| 421 | kmem_free(l, sizeof (zap_leaf_t)); |
| 422 | } |
| 423 | |
| 424 | static zap_leaf_t * |
| 425 | zap_create_leaf(zap_t *zap, dmu_tx_t *tx) |
no test coverage detected