| 1091 | } |
| 1092 | |
| 1093 | static void |
| 1094 | mls_inpcb_create(struct socket *so, struct label *solabel, struct inpcb *inp, |
| 1095 | struct label *inplabel) |
| 1096 | { |
| 1097 | struct mac_mls *source, *dest; |
| 1098 | |
| 1099 | source = SLOT(solabel); |
| 1100 | dest = SLOT(inplabel); |
| 1101 | |
| 1102 | mls_copy_effective(source, dest); |
| 1103 | } |
| 1104 | |
| 1105 | static void |
| 1106 | mls_inpcb_create_mbuf(struct inpcb *inp, struct label *inplabel, |
nothing calls this directly
no test coverage detected