MCPcopy Create free account
hub / github.com/F-Stack/f-stack / m_last

Function m_last

freebsd/sys/mbuf.h:1046–1053  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

1044}
1045
1046static __inline struct mbuf *
1047m_last(struct mbuf *m)
1048{
1049
1050 while (m->m_next)
1051 m = m->m_next;
1052 return (m);
1053}
1054
1055static inline u_int
1056m_extrefcnt(struct mbuf *m)

Callers 15

sctp_copy_resumeFunction · 0.50
sctp_copy_oneFunction · 0.50
tcp_set_le_to_mFunction · 0.50
tcp_lro_condenseFunction · 0.50
tcp_lro_rx2Function · 0.50
frag6_inputFunction · 0.50

Calls

no outgoing calls

Tested by

no test coverage detected