| 58 | static void mac_labelzone_dtor(void *mem, int size, void *arg); |
| 59 | |
| 60 | void |
| 61 | mac_labelzone_init(void) |
| 62 | { |
| 63 | |
| 64 | zone_label = uma_zcreate("MAC labels", sizeof(struct label), |
| 65 | mac_labelzone_ctor, mac_labelzone_dtor, NULL, NULL, |
| 66 | UMA_ALIGN_PTR, 0); |
| 67 | } |
| 68 | |
| 69 | /* |
| 70 | * mac_init_label() and mac_destroy_label() are exported so that they can be |
no test coverage detected