Lines Matching refs:KM_SLEEP

7818 	dtrace_hash_t *hash = kmem_zalloc(sizeof (dtrace_hash_t), KM_SLEEP);  in dtrace_hash_create()
7829 sizeof (dtrace_hashbucket_t *), KM_SLEEP); in dtrace_hash_create()
7866 new_tab = kmem_zalloc(new_size * sizeof (void *), KM_SLEEP); in dtrace_hash_resize()
7906 bucket = kmem_zalloc(sizeof (dtrace_hashbucket_t), KM_SLEEP); in dtrace_hash_add()
8054 s = kmem_zalloc(sizeof(dtrace_string_t) + bufsize, KM_SLEEP); in dtrace_strref()
8690 provider = kmem_zalloc(sizeof (dtrace_provider_t), KM_SLEEP); in dtrace_register()
9085 probes = kmem_zalloc(nsize, KM_SLEEP); in dtrace_probe_create()
9565 meta = kmem_zalloc(sizeof (dtrace_meta_t), KM_SLEEP); in dtrace_meta_register()
10560 tlocals = kmem_zalloc(nsz, KM_SLEEP); in dtrace_difo_init()
10611 statics = kmem_zalloc(newsize, KM_SLEEP); in dtrace_difo_init()
10623 svar = kmem_zalloc(sizeof (dtrace_statvar_t), KM_SLEEP); in dtrace_difo_init()
10628 kmem_zalloc(dsize, KM_SLEEP); in dtrace_difo_init()
10650 new = kmem_zalloc(sizeof (dtrace_difo_t), KM_SLEEP); in dtrace_difo_duplicate()
10654 new->dtdo_buf = kmem_alloc(sz, KM_SLEEP); in dtrace_difo_duplicate()
10660 new->dtdo_strtab = kmem_alloc(dp->dtdo_strlen, KM_SLEEP); in dtrace_difo_duplicate()
10668 new->dtdo_inttab = kmem_alloc(sz, KM_SLEEP); in dtrace_difo_duplicate()
10676 new->dtdo_vartab = kmem_alloc(sz, KM_SLEEP); in dtrace_difo_duplicate()
10783 fmt = kmem_zalloc(sizeof(*fmt) + bufsize, KM_SLEEP); in dtrace_format_new()
10822 new = kmem_alloc((ndx + 1) * sizeof (*state->dts_formats), KM_SLEEP); in dtrace_format_add()
10894 pred = kmem_zalloc(sizeof (dtrace_predicate_t), KM_SLEEP); in dtrace_predicate_create()
10956 act = kmem_zalloc(sizeof (dtrace_actdesc_t), KM_SLEEP); in dtrace_actdesc_create()
11011 ecb = kmem_zalloc(sizeof (dtrace_ecb_t), KM_SLEEP); in dtrace_ecb_add()
11035 ecbs = kmem_zalloc(necbs * sizeof (*ecbs), KM_SLEEP); in dtrace_ecb_add()
11217 agg = kmem_zalloc(sizeof (dtrace_aggregation_t), KM_SLEEP); in dtrace_ecb_aggregation_create()
11366 aggs = kmem_zalloc(naggs * sizeof (*aggs), KM_SLEEP); in dtrace_ecb_aggregation_create()
11615 action = kmem_zalloc(sizeof (dtrace_action_t), KM_SLEEP); in dtrace_ecb_action_add()
12481 enab = kmem_zalloc(sizeof (dtrace_enabling_t), KM_SLEEP); in dtrace_enabling_create()
12519 ndesc = kmem_zalloc(nsize, KM_SLEEP); in dtrace_enabling_add()
12539 new = kmem_zalloc(sizeof (dtrace_ecbdesc_t), KM_SLEEP); in dtrace_enabling_addlike()
12990 dof = kmem_zalloc_aligned(len, 8, KM_SLEEP); in dtrace_dof_create()
13068 dof = kmem_alloc_aligned(hdr.dofh_loadsz, 8, KM_SLEEP); in dtrace_dof_copyin()
13112 dof = kmem_alloc_aligned(hdr.dofh_loadsz, 8, KM_SLEEP); in dtrace_dof_copyin_from_proc()
13143 dof = kmem_alloc_aligned(len, 8, KM_SLEEP); in dtrace_dof_property()
13348 dp = kmem_zalloc(sizeof (dtrace_difo_t), KM_SLEEP); in dtrace_dof_difo()
13402 *bufp = kmem_alloc(subsec->dofs_size, KM_SLEEP); in dtrace_dof_difo()
13562 fmt = kmem_alloc(i + 1, KM_SLEEP); in dtrace_dof_actdesc()
13635 ep = kmem_zalloc(sizeof (dtrace_ecbdesc_t), KM_SLEEP); in dtrace_dof_ecbdesc()
13952 dstate->dtds_percpu = kmem_cache_alloc(dtrace_state_cache, KM_SLEEP); in dtrace_dstate_init()
14158 state->dts_buffer = kmem_zalloc(bufsize, KM_SLEEP); in dtrace_state_create()
14159 state->dts_aggbuffer = kmem_zalloc(bufsize, KM_SLEEP); in dtrace_state_create()
14167 state->dts_rstate = kmem_zalloc(NCPU * sizeof(uint64_t*), KM_SLEEP); in dtrace_state_create()
14168 state->dts_rstate[0] = kmem_zalloc(2 * sizeof(uint64_t), KM_SLEEP); in dtrace_state_create()
14171 state->dts_rstate[cpu_it] = kmem_zalloc(2 * sizeof(uint64_t), KM_SLEEP); in dtrace_state_create()
15437 helper = kmem_zalloc(sizeof (dtrace_helper_action_t), KM_SLEEP); in dtrace_helper_action_add()
15457 (helper->dtha_nactions = nactions), KM_SLEEP); in dtrace_helper_action_add()
15568 hprov = kmem_zalloc(sizeof (dtrace_helper_provider_t), KM_SLEEP); in dtrace_helper_provider_add()
15590 sizeof (dtrace_helper_provider_t *), KM_SLEEP); in dtrace_helper_provider_add()
16043 dof_ioctl_data_t* merged_dofs = kmem_alloc(merged_dofs_size, KM_SLEEP); in dtrace_lazy_dofs_add()
16120 removed_dofs = kmem_alloc(removed_dofs_size, KM_SLEEP); in dtrace_lazy_dofs_remove()
16314 child_dofs = kmem_alloc(parent_dofs_size, KM_SLEEP); in dtrace_lazy_dofs_duplicate()
16351 help = kmem_zalloc(sizeof (dtrace_helpers_t), KM_SLEEP); in dtrace_helpers_create()
16353 DTRACE_NHELPER_ACTIONS, KM_SLEEP); in dtrace_helpers_create()
16483 KM_SLEEP); in dtrace_helpers_duplicate()
16493 new->dtha_actions = kmem_alloc(sz, KM_SLEEP); in dtrace_helpers_duplicate()
16521 sizeof (dtrace_helper_provider_t *), KM_SLEEP); in dtrace_helpers_duplicate()
16838 ctl = kmem_alloc(sizeof(struct modctl), KM_SLEEP); in dtrace_module_loaded()
17244 range = kmem_zalloc(nsize, KM_SLEEP); in dtrace_toxrange_add()
17306 KM_SLEEP); in dtrace_attach()
17380 kmem_zalloc(dtrace_helptrace_bufsize, KM_SLEEP); in dtrace_attach()
17703 if ((multi_dof = kmem_alloc(dof_ioctl_data_size, KM_SLEEP)) == NULL) in dtrace_ioctl_helper()
17904 buf = kmem_alloc(size, KM_SLEEP); in dtrace_ioctl()
17995 buf = kmem_alloc(size, KM_SLEEP); in dtrace_ioctl()
18698 if ((uuids_list = kmem_alloc(module_uuids_list_size, KM_SLEEP)) == NULL) in dtrace_ioctl()
18814 if ((module_symbols = kmem_alloc(module_symbols_size, KM_SLEEP)) == NULL) in dtrace_ioctl()
19330 cpu_core = (cpu_core_t *)kmem_zalloc( ncpu * sizeof(cpu_core_t), KM_SLEEP ); in dtrace_init()
19335 cpu_list = (dtrace_cpu_t *)kmem_zalloc( ncpu * sizeof(dtrace_cpu_t), KM_SLEEP ); in dtrace_init()