| 96 | } |
| 97 | |
| 98 | void |
| 99 | mac_devfs_init(struct devfs_dirent *de) |
| 100 | { |
| 101 | |
| 102 | if (mac_labeled & MPC_OBJECT_DEVFS) |
| 103 | de->de_label = mac_devfs_label_alloc(); |
| 104 | else |
| 105 | de->de_label = NULL; |
| 106 | } |
| 107 | |
| 108 | static struct label * |
| 109 | mac_mount_label_alloc(void) |
nothing calls this directly
no test coverage detected