| 1476 | } |
| 1477 | |
| 1478 | static void |
| 1479 | mls_pipe_relabel(struct ucred *cred, struct pipepair *pp, |
| 1480 | struct label *pplabel, struct label *newlabel) |
| 1481 | { |
| 1482 | struct mac_mls *source, *dest; |
| 1483 | |
| 1484 | source = SLOT(newlabel); |
| 1485 | dest = SLOT(pplabel); |
| 1486 | |
| 1487 | mls_copy(source, dest); |
| 1488 | } |
| 1489 | |
| 1490 | static int |
| 1491 | mls_posixsem_check_openunlink(struct ucred *cred, struct ksem *ks, |
nothing calls this directly
no test coverage detected