| 867 | } |
| 868 | |
| 869 | static void |
| 870 | mls_cred_create_init(struct ucred *cred) |
| 871 | { |
| 872 | struct mac_mls *dest; |
| 873 | |
| 874 | dest = SLOT(cred->cr_label); |
| 875 | |
| 876 | mls_set_effective(dest, MAC_MLS_TYPE_LOW, 0, NULL); |
| 877 | mls_set_range(dest, MAC_MLS_TYPE_LOW, 0, NULL, MAC_MLS_TYPE_HIGH, 0, |
| 878 | NULL); |
| 879 | } |
| 880 | |
| 881 | static void |
| 882 | mls_cred_create_swapper(struct ucred *cred) |
nothing calls this directly
no test coverage detected