Searched defs:hdr_new_mp (Results 1 - 2 of 2) sorted by relevance

/illumos-gate/usr/src/uts/common/io/igb/
H A Digb_tx.c117 mblk_t *hdr_new_mp = NULL; local
221 hdr_new_mp = allocb(hdr_frag_len, NULL);
222 if (!hdr_new_mp) {
228 hdr_new_mp->b_rptr, hdr_frag_len);
229 hdr_new_mp->b_wptr = hdr_new_mp->b_rptr + hdr_frag_len;
230 hdr_new_mp->b_cont = hdr_current_mp;
232 hdr_previous_mp->b_cont = hdr_new_mp;
234 mp = hdr_new_mp;
442 if (hdr_new_mp) {
[all...]
/illumos-gate/usr/src/uts/common/io/ixgbe/
H A Dixgbe_tx.c100 mblk_t *hdr_new_mp = NULL; local
222 hdr_new_mp = allocb(hdr_frag_len, NULL);
223 if (!hdr_new_mp)
225 bcopy(hdr_nmp->b_rptr, hdr_new_mp->b_rptr,
228 hdr_new_mp->b_wptr = hdr_new_mp->b_rptr + hdr_frag_len;
229 hdr_new_mp->b_cont = hdr_nmp;
231 hdr_pre_mp->b_cont = hdr_new_mp;
233 mp = hdr_new_mp;
425 if (hdr_new_mp) {
[all...]

Completed in 47 milliseconds