Lines Matching refs:nmp
170 mblk_t *nmp; in e1000g_send() local
185 for (nmp = mp; nmp; nmp = nmp->b_cont) { in e1000g_send()
187 msg_size += MBLKL(nmp); in e1000g_send()
326 nmp = mp; in e1000g_send()
327 while (nmp) { in e1000g_send()
328 tmp = nmp->b_cont; in e1000g_send()
330 len = MBLKL(nmp); in e1000g_send()
342 nmp = tmp; in e1000g_send()
372 e1000g_tx_copy(tx_ring, packet, nmp, in e1000g_send()
377 e1000g_tx_bind(tx_ring, packet, nmp); in e1000g_send()
386 nmp = tmp; in e1000g_send()
484 mblk_t *nmp; in e1000g_retrieve_context() local
525 nmp = mp; in e1000g_retrieve_context()
526 ip_start = (uintptr_t)(nmp->b_rptr) in e1000g_retrieve_context()
528 if (ip_start >= (uintptr_t)(nmp->b_wptr)) { in e1000g_retrieve_context()
529 ip_start = (uintptr_t)nmp->b_cont->b_rptr in e1000g_retrieve_context()
530 + (ip_start - (uintptr_t)(nmp->b_wptr)); in e1000g_retrieve_context()
531 nmp = nmp->b_cont; in e1000g_retrieve_context()
535 if (tcp_start >= (uintptr_t)(nmp->b_wptr)) { in e1000g_retrieve_context()
536 tcp_start = (uintptr_t)nmp->b_cont->b_rptr in e1000g_retrieve_context()
537 + (tcp_start - (uintptr_t)(nmp->b_wptr)); in e1000g_retrieve_context()
538 nmp = nmp->b_cont; in e1000g_retrieve_context()
1025 mblk_t *nmp; in e1000g_recycle() local
1130 nmp = NULL; in e1000g_recycle()
1139 nmp = packet->mp; in e1000g_recycle()
1141 nmp->b_next = packet->mp; in e1000g_recycle()
1142 nmp = packet->mp; in e1000g_recycle()
1264 mblk_t *nmp; in e1000g_tx_copy() local
1283 nmp = mp->b_cont; in e1000g_tx_copy()
1284 if (nmp == NULL) { in e1000g_tx_copy()
1287 len1 = MBLKL(nmp); in e1000g_tx_copy()