+ zone_change(ipc_object_zones[IOT_PORT_SET], Z_NOENCRYPT, TRUE);
+
+ /*
+ * Create the basic ipc_kmsg_t zone (the one we also cache)
+ * elements at the processor-level to avoid the locking.
+ */
+ ipc_kmsg_zone = zinit(IKM_SAVED_KMSG_SIZE,
+ ipc_port_max * MACH_PORT_QLIMIT_DEFAULT *
+ IKM_SAVED_KMSG_SIZE,
+ IKM_SAVED_KMSG_SIZE,
+ "ipc kmsgs");
+ zone_change(ipc_kmsg_zone, Z_NOENCRYPT, TRUE);
+
+#if CONFIG_MACF_MACH
+ ipc_labelh_zone =
+ zinit(sizeof(struct ipc_labelh),
+ ipc_port_max * sizeof(struct ipc_labelh),
+ sizeof(struct ipc_labelh),
+ "label handles");
+#endif