| 605 | } |
| 606 | |
| 607 | static void |
| 608 | qc_destroy(vmem_t *vm) |
| 609 | { |
| 610 | int qcache_idx_max; |
| 611 | int i; |
| 612 | |
| 613 | qcache_idx_max = vm->vm_qcache_max >> vm->vm_quantum_shift; |
| 614 | for (i = 0; i < qcache_idx_max; i++) |
| 615 | uma_zdestroy(vm->vm_qcache[i].qc_cache); |
| 616 | } |
| 617 | |
| 618 | static void |
| 619 | qc_drain(vmem_t *vm) |
no test coverage detected