| 174 | } |
| 175 | |
| 176 | void |
| 177 | mac_netinet6_nd6_send(struct ifnet *ifp, struct mbuf *m) |
| 178 | { |
| 179 | struct label *mlabel; |
| 180 | |
| 181 | if (mac_policy_count == 0) |
| 182 | return; |
| 183 | |
| 184 | mlabel = mac_mbuf_to_label(m); |
| 185 | |
| 186 | MAC_POLICY_PERFORM_NOSLEEP(netinet6_nd6_send, ifp, ifp->if_label, m, |
| 187 | mlabel); |
| 188 | } |
no test coverage detected