Home
last modified time | relevance | path

Searched refs:next_mp (Results 1 – 7 of 7) sorted by relevance

/illumos-gate/usr/src/uts/common/io/e1000g/
H A De1000g_tx.c174 mblk_t *next_mp; in e1000g_send() local
255 next_mp = mp; in e1000g_send()
258 pre_mp = next_mp; in e1000g_send()
259 next_mp = next_mp->b_cont; in e1000g_send()
260 len += MBLKL(next_mp); in e1000g_send()
292 if ((next_mp != mp) || in e1000g_send()
293 (P2NPHASE((uintptr_t)next_mp->b_rptr, in e1000g_send()
308 new_mp->b_cont = next_mp; in e1000g_send()
313 next_mp->b_rptr += hdr_frag_len; in e1000g_send()
428 pre_mp->b_cont = next_mp; in e1000g_send()
[all …]
/illumos-gate/usr/src/uts/common/io/igb/
H A Digb_tx.c113 mblk_t *current_mp, *next_mp, *nmp; in igb_tx() local
279 next_mp = current_mp->b_cont; in igb_tx()
280 eop = (next_mp == NULL); /* Last fragment of the packet? */ in igb_tx()
281 next_len = eop ? 0: MBLKL(next_mp); in igb_tx()
295 current_mp = next_mp; in igb_tx()
385 current_mp = next_mp; in igb_tx()
/illumos-gate/usr/src/uts/common/io/mac/
H A Dmac_util.c1493 mblk_t *next_mp, **prev, *mp; in mac_add_vlan_tag_chain() local
1499 next_mp = mp->b_next; in mac_add_vlan_tag_chain()
1502 freemsgchain(next_mp); in mac_add_vlan_tag_chain()
1507 mp = mp->b_next = next_mp; in mac_add_vlan_tag_chain()
1548 mblk_t *mp, *next_mp, **prev; in mac_strip_vlan_tag_chain() local
1554 next_mp = mp->b_next; in mac_strip_vlan_tag_chain()
1557 freemsgchain(next_mp); in mac_strip_vlan_tag_chain()
1562 mp = mp->b_next = next_mp; in mac_strip_vlan_tag_chain()
/illumos-gate/usr/src/uts/common/fs/sockfs/
H A Dsocksyscalls.c2414 mblk_t *next_mp; in snf_direct_io() local
2418 next_mp = mp->b_next; in snf_direct_io()
2421 mp = next_mp; in snf_direct_io()
/illumos-gate/usr/src/uts/common/inet/tcp/
H A Dtcp_input.c697 mblk_t *next_mp; in tcp_reass() local
707 next_mp = mp->b_cont; in tcp_reass()
764 } while (start = end, mp = next_mp); in tcp_reass()
/illumos-gate/usr/src/stand/lib/tcp/
H A Dtcp.c6500 mblk_t *next_mp; in tcp_reass() local
6508 next_mp = mp->b_cont; in tcp_reass()
6563 } while (start = end, mp = next_mp); in tcp_reass()
/illumos-gate/usr/src/uts/common/inet/ip/
H A Dip.c6709 mblk_t *next_mp; in ip_reassemble() local
6758 next_mp = mp->b_cont; in ip_reassemble()
6783 ipf->ipf_mp->b_cont = next_mp; in ip_reassemble()
6801 if (next_mp) in ip_reassemble()
6851 } else if (start == offset && next_mp == NULL) in ip_reassemble()
7020 } while (start = end, mp = next_mp); in ip_reassemble()