| 190 | } |
| 191 | |
| 192 | void |
| 193 | mac_vnode_destroy(struct vnode *vp) |
| 194 | { |
| 195 | |
| 196 | if (vp->v_label != NULL) { |
| 197 | mac_vnode_label_free(vp->v_label); |
| 198 | vp->v_label = NULL; |
| 199 | } |
| 200 | } |
| 201 | |
| 202 | void |
| 203 | mac_vnode_copy_label(struct label *src, struct label *dest) |
no test coverage detected