smbs_con_ids_t
smbs_con_ids_t ids[SMB_MAX_ID]; /* SMBIOS table entry id(s) */
smbs_con_ids_t **ids; /* SMBIOS table entry id(s) */
types->ids = (smbs_con_ids_t **)kmem_zalloc(
count * sizeof (smbs_con_ids_t *), KM_SLEEP);
types->ids[i] = (smbs_con_ids_t *)kmem_zalloc(
sizeof (smbs_con_ids_t), KM_SLEEP);
kmem_free(types->ids[i], sizeof (smbs_con_ids_t));
kmem_free(types->ids, count * sizeof (smbs_con_ids_t *));