Lines Matching defs:iptun
88 iptun_t *iptun;
91 /* note that iptun_delete() removes iptun from the list */
92 while ((iptun = list_head(&iptuns->iptuns_iptunlist)) != NULL) {
93 linkid = iptun->iptun_linkid;
94 (void) iptun_delete(linkid, iptun->iptun_connp->conn_cred);
237 iptun_t *iptun = buf;
239 bzero(iptun, sizeof (*iptun));
240 mutex_init(&iptun->iptun_lock, NULL, MUTEX_DEFAULT, NULL);
241 cv_init(&iptun->iptun_upcall_cv, NULL, CV_DRIVER, NULL);
242 cv_init(&iptun->iptun_enter_cv, NULL, CV_DRIVER, NULL);
251 iptun_t *iptun = buf;
254 ASSERT(!(iptun->iptun_flags & (IPTUN_BOUND|IPTUN_MAC_REGISTERED|
257 mutex_destroy(&iptun->iptun_lock);
258 cv_destroy(&iptun->iptun_upcall_cv);