| 3159 | } |
| 3160 | |
| 3161 | static void |
| 3162 | mls_vnode_relabel(struct ucred *cred, struct vnode *vp, |
| 3163 | struct label *vplabel, struct label *label) |
| 3164 | { |
| 3165 | struct mac_mls *source, *dest; |
| 3166 | |
| 3167 | source = SLOT(label); |
| 3168 | dest = SLOT(vplabel); |
| 3169 | |
| 3170 | mls_copy(source, dest); |
| 3171 | } |
| 3172 | |
| 3173 | static int |
| 3174 | mls_vnode_setlabel_extattr(struct ucred *cred, struct vnode *vp, |
nothing calls this directly
no test coverage detected