| 106 | } |
| 107 | |
| 108 | static struct label * |
| 109 | mac_mount_label_alloc(void) |
| 110 | { |
| 111 | struct label *label; |
| 112 | |
| 113 | label = mac_labelzone_alloc(M_WAITOK); |
| 114 | MAC_POLICY_PERFORM(mount_init_label, label); |
| 115 | return (label); |
| 116 | } |
| 117 | |
| 118 | void |
| 119 | mac_mount_init(struct mount *mp) |
no test coverage detected