Searched refs:tbufp (Results 1 – 2 of 2) sorted by relevance
133 vgen_private_desc_t *tbufp; in vgen_create_tx_dring() local147 tbufp = kmem_zalloc(ldcp->num_txds * tbufsize, KM_NOSLEEP); in vgen_create_tx_dring()148 if (tbufp == NULL) { in vgen_create_tx_dring()151 ldcp->tbufp = tbufp; in vgen_create_tx_dring()152 ldcp->tbufendp = &((ldcp->tbufp)[ldcp->num_txds]); in vgen_create_tx_dring()208 tbufp = &(ldcp->tbufp[i]); in vgen_create_tx_dring()210 &(tbufp->memhandle)); in vgen_create_tx_dring()212 tbufp->memhandle = 0; in vgen_create_tx_dring()220 rv = ldc_mem_bind_handle(tbufp->memhandle, in vgen_create_tx_dring()222 LDC_MEM_R, &(tbufp->memcookie[ci]), &ncookies); in vgen_create_tx_dring()[all …]
165 #define NEXTTBUF(ldcp, tbufp) (((tbufp) + 1) == (ldcp)->tbufendp \ argument166 ? (ldcp)->tbufp : ((tbufp) + 1))325 vgen_private_desc_t *tbufp; /* dring associated resources */ member