| 139 | } |
| 140 | |
| 141 | void |
| 142 | mac_ifnet_init(struct ifnet *ifp) |
| 143 | { |
| 144 | |
| 145 | if (mac_labeled & MPC_OBJECT_IFNET) |
| 146 | ifp->if_label = mac_ifnet_label_alloc(); |
| 147 | else |
| 148 | ifp->if_label = NULL; |
| 149 | } |
| 150 | |
| 151 | int |
| 152 | mac_mbuf_tag_init(struct m_tag *tag, int flag) |
no test coverage detected