| 897 | } |
| 898 | |
| 899 | static void |
| 900 | lomac_bpfdesc_create_mbuf(struct bpf_d *d, struct label *dlabel, |
| 901 | struct mbuf *m, struct label *mlabel) |
| 902 | { |
| 903 | struct mac_lomac *source, *dest; |
| 904 | |
| 905 | source = SLOT(dlabel); |
| 906 | dest = SLOT(mlabel); |
| 907 | |
| 908 | lomac_copy_single(source, dest); |
| 909 | } |
| 910 | |
| 911 | static int |
| 912 | lomac_cred_check_relabel(struct ucred *cred, struct label *newlabel) |
nothing calls this directly
no test coverage detected