| 1284 | } |
| 1285 | |
| 1286 | static void |
| 1287 | lomac_inpcb_create(struct socket *so, struct label *solabel, |
| 1288 | struct inpcb *inp, struct label *inplabel) |
| 1289 | { |
| 1290 | struct mac_lomac *source, *dest; |
| 1291 | |
| 1292 | source = SLOT(solabel); |
| 1293 | dest = SLOT(inplabel); |
| 1294 | |
| 1295 | lomac_copy_single(source, dest); |
| 1296 | } |
| 1297 | |
| 1298 | static void |
| 1299 | lomac_inpcb_create_mbuf(struct inpcb *inp, struct label *inplabel, |
nothing calls this directly
no test coverage detected