| 1034 | } |
| 1035 | |
| 1036 | static __inline void |
| 1037 | m_clrprotoflags(struct mbuf *m) |
| 1038 | { |
| 1039 | |
| 1040 | while (m) { |
| 1041 | m->m_flags &= ~M_PROTOFLAGS; |
| 1042 | m = m->m_next; |
| 1043 | } |
| 1044 | } |
| 1045 | |
| 1046 | static __inline struct mbuf * |
| 1047 | m_last(struct mbuf *m) |
no outgoing calls
no test coverage detected