| 211 | } |
| 212 | |
| 213 | static void |
| 214 | mmp_thread_enter(mmp_thread_t *mmp, callb_cpr_t *cpr) |
| 215 | { |
| 216 | CALLB_CPR_INIT(cpr, &mmp->mmp_thread_lock, callb_generic_cpr, FTAG); |
| 217 | mutex_enter(&mmp->mmp_thread_lock); |
| 218 | } |
| 219 | |
| 220 | static void |
| 221 | mmp_thread_exit(mmp_thread_t *mmp, kthread_t **mpp, callb_cpr_t *cpr) |
no test coverage detected