| 1034 | } |
| 1035 | |
| 1036 | static void |
| 1037 | mls_ifnet_create_mbuf(struct ifnet *ifp, struct label *ifplabel, |
| 1038 | struct mbuf *m, struct label *mlabel) |
| 1039 | { |
| 1040 | struct mac_mls *source, *dest; |
| 1041 | |
| 1042 | source = SLOT(ifplabel); |
| 1043 | dest = SLOT(mlabel); |
| 1044 | |
| 1045 | mls_copy_effective(source, dest); |
| 1046 | } |
| 1047 | |
| 1048 | static void |
| 1049 | mls_ifnet_relabel(struct ucred *cred, struct ifnet *ifp, |
nothing calls this directly
no test coverage detected