Home
last modified time | relevance | path

Searched refs:tbufp (Results 1 – 2 of 2) sorted by relevance

/titanic_50/usr/src/uts/sun4v/io/
H A Dvnet_txdring.c133 vgen_private_desc_t *tbufp; in vgen_create_tx_dring() local
147 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 …]
/titanic_50/usr/src/uts/sun4v/sys/
H A Dvnet_gen.h165 #define NEXTTBUF(ldcp, tbufp) (((tbufp) + 1) == (ldcp)->tbufendp \ argument
166 ? (ldcp)->tbufp : ((tbufp) + 1))
325 vgen_private_desc_t *tbufp; /* dring associated resources */ member