| 128 | } |
| 129 | |
| 130 | void |
| 131 | mac_ip6q_create(struct mbuf *m, struct ip6q *q6) |
| 132 | { |
| 133 | struct label *label; |
| 134 | |
| 135 | if (mac_policy_count == 0) |
| 136 | return; |
| 137 | |
| 138 | label = mac_mbuf_to_label(m); |
| 139 | |
| 140 | MAC_POLICY_PERFORM_NOSLEEP(ip6q_create, m, label, q6, |
| 141 | q6->ip6q_label); |
| 142 | } |
| 143 | |
| 144 | int |
| 145 | mac_ip6q_match(struct mbuf *m, struct ip6q *q6) |
no test coverage detected