| 88 | struct ucred *cred, struct vm_map *map); |
| 89 | |
| 90 | static struct label * |
| 91 | mac_proc_label_alloc(void) |
| 92 | { |
| 93 | struct label *label; |
| 94 | |
| 95 | label = mac_labelzone_alloc(M_WAITOK); |
| 96 | MAC_POLICY_PERFORM(proc_init_label, label); |
| 97 | return (label); |
| 98 | } |
| 99 | |
| 100 | void |
| 101 | mac_proc_init(struct proc *p) |
no test coverage detected