| 202 | } |
| 203 | |
| 204 | void |
| 205 | mac_netinet_fragment(struct mbuf *m, struct mbuf *frag) |
| 206 | { |
| 207 | struct label *mlabel, *fraglabel; |
| 208 | |
| 209 | if (mac_policy_count == 0) |
| 210 | return; |
| 211 | |
| 212 | mlabel = mac_mbuf_to_label(m); |
| 213 | fraglabel = mac_mbuf_to_label(frag); |
| 214 | |
| 215 | MAC_POLICY_PERFORM_NOSLEEP(netinet_fragment, m, mlabel, frag, |
| 216 | fraglabel); |
| 217 | } |
| 218 | |
| 219 | void |
| 220 | mac_ipq_create(struct mbuf *m, struct ipq *q) |
no test coverage detected