Home
last modified time | relevance | path

Searched refs:hdr_frag_len (Results 1 – 3 of 3) sorted by relevance

/titanic_50/usr/src/uts/common/io/igb/
H A Digb_tx.c120 uint32_t hdr_frag_len; in igb_tx() local
202 hdr_frag_len = hdr_len - (len - MBLKL(hdr_current_mp)); in igb_tx()
221 hdr_new_mp = allocb(hdr_frag_len, NULL); in igb_tx()
228 hdr_new_mp->b_rptr, hdr_frag_len); in igb_tx()
229 hdr_new_mp->b_wptr = hdr_new_mp->b_rptr + hdr_frag_len; in igb_tx()
235 hdr_current_mp->b_rptr += hdr_frag_len; in igb_tx()
445 hdr_current_mp->b_rptr -= hdr_frag_len; in igb_tx()
/titanic_50/usr/src/uts/common/io/ixgbe/
H A Dixgbe_tx.c99 uint32_t len, hdr_frag_len, hdr_len; in ixgbe_ring_tx() local
205 hdr_frag_len = hdr_len - (len - MBLKL(hdr_nmp)); in ixgbe_ring_tx()
223 hdr_new_mp = allocb(hdr_frag_len, NULL); in ixgbe_ring_tx()
227 hdr_frag_len); in ixgbe_ring_tx()
229 hdr_new_mp->b_wptr = hdr_new_mp->b_rptr + hdr_frag_len; in ixgbe_ring_tx()
235 hdr_nmp->b_rptr += hdr_frag_len; in ixgbe_ring_tx()
429 hdr_nmp->b_rptr -= hdr_frag_len; in ixgbe_ring_tx()
545 hdr_nmp->b_rptr -= hdr_frag_len; in ixgbe_ring_tx()
/titanic_50/usr/src/uts/common/io/e1000g/
H A De1000g_tx.c168 uint32_t hdr_frag_len; in e1000g_send() local
270 hdr_frag_len = cur_context.hdr_len - (len - MBLKL(next_mp)); in e1000g_send()
302 new_mp = allocb(hdr_frag_len, NULL); in e1000g_send()
305 bcopy(next_mp->b_rptr, new_mp->b_rptr, hdr_frag_len); in e1000g_send()
307 new_mp->b_wptr = new_mp->b_rptr + hdr_frag_len; in e1000g_send()
313 next_mp->b_rptr += hdr_frag_len; in e1000g_send()
433 next_mp->b_rptr -= hdr_frag_len; in e1000g_send()