Lines Matching defs:new_cldcp
471 cnex_ldc_t *new_cldcp;
567 new_cldcp = kmem_zalloc(sizeof (*new_cldcp), KM_SLEEP);
570 mutex_init(&new_cldcp->lock, NULL, MUTEX_DRIVER, NULL);
572 new_cldcp->id = id;
573 new_cldcp->tx.ino = txino;
574 new_cldcp->rx.ino = rxino;
575 new_cldcp->devclass = devclass;
576 new_cldcp->tx.weight = CNEX_TX_INTR_WEIGHT;
577 new_cldcp->rx.weight = cnex_class_weight(devclass);
578 new_cldcp->dip = chan_dip;
591 mutex_destroy(&new_cldcp->lock);
592 kmem_free(new_cldcp, sizeof (*new_cldcp));
597 new_cldcp->next = cnex_ssp->clist;
598 cnex_ssp->clist = new_cldcp;