| 338 | } |
| 339 | |
| 340 | void |
| 341 | mac_ipq_update(struct mbuf *m, struct ipq *q) |
| 342 | { |
| 343 | struct label *label; |
| 344 | |
| 345 | if (mac_policy_count == 0) |
| 346 | return; |
| 347 | |
| 348 | label = mac_mbuf_to_label(m); |
| 349 | |
| 350 | MAC_POLICY_PERFORM_NOSLEEP(ipq_update, m, label, q, q->ipq_label); |
| 351 | } |
| 352 | |
| 353 | MAC_CHECK_PROBE_DEFINE2(inpcb_check_deliver, "struct inpcb *", |
| 354 | "struct mbuf *"); |
no test coverage detected