| 6416 | |
| 6417 | #ifdef SCTP_MBUF_LOGGING |
| 6418 | struct mbuf * |
| 6419 | sctp_m_free(struct mbuf *m) |
| 6420 | { |
| 6421 | if (SCTP_BASE_SYSCTL(sctp_logging_level) & SCTP_MBUF_LOGGING_ENABLE) { |
| 6422 | sctp_log_mb(m, SCTP_MBUF_IFREE); |
| 6423 | } |
| 6424 | return (m_free(m)); |
| 6425 | } |
| 6426 | |
| 6427 | void |
| 6428 | sctp_m_freem(struct mbuf *mb) |
no test coverage detected