| 2138 | } |
| 2139 | |
| 2140 | static void |
| 2141 | svm_cleanup(void *arg) |
| 2142 | { |
| 2143 | struct svm_softc *sc = arg; |
| 2144 | |
| 2145 | contigfree(sc->iopm_bitmap, SVM_IO_BITMAP_SIZE, M_SVM); |
| 2146 | contigfree(sc->msr_bitmap, SVM_MSR_BITMAP_SIZE, M_SVM); |
| 2147 | free(sc, M_SVM); |
| 2148 | } |
| 2149 | |
| 2150 | static register_t * |
| 2151 | swctx_regptr(struct svm_regctx *regctx, int reg) |
nothing calls this directly
no test coverage detected