Symbol: KM_SLEEP
usr/src/cmd/gss/gssd/gssd_clnt_stubs.c
37
#define MALLOC(n) kmem_alloc((n), KM_SLEEP)
usr/src/cmd/gss/gssd/gssdtest.c
66
#define MALLOC(n) kmem_alloc((n), KM_SLEEP)
usr/src/cmd/gss/gssd/gssdtest.c
67
#define CALLOC(n, s) kmem_zalloc((n)*(s), KM_SLEEP)
usr/src/cmd/mdb/common/kmdb/kctl/kctl_dmod.c
160
modp = kobj_zalloc(sizeof (struct modctl), KM_SLEEP);
usr/src/cmd/mdb/common/kmdb/kctl/kctl_dmod.c
225
dlr = kobj_zalloc(sizeof (kmdb_wr_load_t), KM_SLEEP);
usr/src/cmd/mdb/common/kmdb/kctl/kctl_main.c
195
base = kmem_zalloc(needed, KM_SLEEP);
usr/src/cmd/mdb/common/kmdb/kctl/kctl_string.c
46
char *s1 = kobj_alloc(strlen(s) + 1, KM_SLEEP);
usr/src/cmd/zdb/zdb.c
538
uint64_t *subobjs = kmem_alloc(doi.doi_max_offset, KM_SLEEP);
usr/src/common/acl/acl_common.c
231
tmp = kmem_alloc(new_size, KM_SLEEP);
usr/src/common/acl/acl_common.c
244
*ptr = kmem_zalloc(size, KM_SLEEP);
usr/src/common/bzip2/bzlib.c
159
uintptr_t p = (uintptr_t)kmem_alloc(sz, KM_SLEEP);
usr/src/common/ccid/atr.c
1107
return (kmem_zalloc(sizeof (atr_data_t), KM_SLEEP));
usr/src/common/crypto/ecc/ec2_test.c
112
params = EC_GetNamedCurveParams(name, KM_SLEEP); \
usr/src/common/crypto/ecc/ec2_test.c
119
group = ECGroup_fromHex(params, KM_SLEEP); \
usr/src/common/crypto/ecc/ec2_test.c
125
MP_CHECKOK( ectest_curve_GF2m(group, ectestPrint, ectestTime, 1, KM_SLEEP) ); \
usr/src/common/crypto/ecc/ec2_test.c
132
group = ECGroup_fromName(name, KM_SLEEP); \
usr/src/common/crypto/ecc/ec2_test.c
137
MP_CHECKOK( ectest_curve_GF2m(group, ectestPrint, ectestTime, 0, KM_SLEEP) ); \
usr/src/common/crypto/ecc/ec2_test.c
85
#ifndef KM_SLEEP
usr/src/common/crypto/ecc/ecp_test.c
111
params = EC_GetNamedCurveParams(name, KM_SLEEP); \
usr/src/common/crypto/ecc/ecp_test.c
118
group = ECGroup_fromHex(params, KM_SLEEP); \
usr/src/common/crypto/ecc/ecp_test.c
124
MP_CHECKOK( ectest_curve_GFp(group, ectestPrint, ectestTime, 1, KM_SLEEP) ); \
usr/src/common/crypto/ecc/ecp_test.c
131
group = ECGroup_fromName(name, KM_SLEEP); \
usr/src/common/crypto/ecc/ecp_test.c
136
MP_CHECKOK( ectest_curve_GFp(group, ectestPrint, ectestTime, 0, KM_SLEEP) ); \
usr/src/common/crypto/ecc/ecp_test.c
84
#ifndef KM_SLEEP
usr/src/common/devid/devid_impl.h
52
#define DEVID_MALLOC(n) kmem_alloc(n, KM_SLEEP)
usr/src/common/devid/devid_scsi.c
231
KM_SLEEP);
usr/src/common/exacct/exacct_core.c
77
return (kmem_alloc(size, KM_SLEEP));
usr/src/common/hexdump/hexdump.c
321
ilstr_init(&hdp.hdp_buf, KM_SLEEP);
usr/src/common/hexdump/hexdump.c
323
ilstr_init(&hdp.hdp_pbuf, KM_SLEEP);
usr/src/common/iscsit/iscsit_common.c
55
return (kmem_zalloc(size, KM_SLEEP));
usr/src/common/nvpair/fnvpair.c
100
VERIFY0(nvlist_unpack(buf, buflen, &rv, KM_SLEEP));
usr/src/common/nvpair/fnvpair.c
108
VERIFY0(nvlist_dup(nvl, &rv, KM_SLEEP));
usr/src/common/nvpair/fnvpair.c
115
VERIFY0(nvlist_merge(dst, src, KM_SLEEP));
usr/src/common/nvpair/fnvpair.c
54
VERIFY0(nvlist_alloc(&nvl, NV_UNIQUE_NAME, KM_SLEEP));
usr/src/common/nvpair/fnvpair.c
81
KM_SLEEP), ==, 0);
usr/src/common/nvpair/nvpair.c
2644
(kmflag == KM_SLEEP ? nv_alloc_sleep : nv_alloc_nosleep)));
usr/src/common/nvpair/nvpair.c
2706
(kmflag == KM_SLEEP ? nv_alloc_sleep : nv_alloc_nosleep)));
usr/src/common/nvpair/nvpair.c
567
(kmflag == KM_SLEEP ? nv_alloc_sleep : nv_alloc_nosleep)));
usr/src/common/nvpair/nvpair.c
903
(kmflag == KM_SLEEP ? nv_alloc_sleep : nv_alloc_nosleep)));
usr/src/common/smbclnt/smbfs_ntacl.c
68
#define MALLOC(size) kmem_alloc(size, KM_SLEEP)
usr/src/common/smbsrv/smb_msgbuf.c
863
item = kmem_alloc(size, KM_SLEEP);
usr/src/common/smbsrv/smb_sid.c
348
sid = kmem_zalloc(size, KM_SLEEP);
usr/src/common/smbsrv/smb_sid.c
469
sid = kmem_alloc(size, KM_SLEEP);
usr/src/common/zfs/zfs_fletcher.c
712
char *databuf = kmem_alloc(data_size, KM_SLEEP);
usr/src/common/zfs/zprop_common.c
178
order = kmem_alloc(size, KM_SLEEP);
usr/src/lib/libfakekernel/common/strext.c
35
buf = kmem_alloc(size, KM_SLEEP);
usr/src/lib/libfakekernel/common/taskq.c
303
taskq_t *tq = kmem_zalloc(sizeof (taskq_t), KM_SLEEP);
usr/src/lib/libfakekernel/common/taskq.c
331
tq->tq_threadlist = kmem_alloc(nthreads * sizeof (thread_t), KM_SLEEP);
usr/src/lib/libfakekernel/common/taskq.c
336
task_free(tq, task_alloc(tq, KM_SLEEP));
usr/src/lib/libfakekernel/common/taskq.c
366
task_free(tq, task_alloc(tq, KM_SLEEP));
usr/src/lib/libzfs/common/libzfs_pool.c
2593
verify(nvlist_alloc(&search, NV_UNIQUE_NAME, KM_SLEEP) == 0);
usr/src/lib/libzfs/common/libzfs_pool.c
2633
verify(nvlist_alloc(&search, NV_UNIQUE_NAME, KM_SLEEP) == 0);
usr/src/lib/libzfs/common/libzfs_pool.c
4245
verify(nvlist_alloc(nverrlistp, 0, KM_SLEEP) == 0);
usr/src/lib/libzfs/common/libzfs_pool.c
4258
if (nvlist_alloc(&nv, NV_UNIQUE_NAME, KM_SLEEP) != 0)
usr/src/lib/libzfs/common/libzfs_sendrecv.c
1657
int error = nvlist_unpack(packed, packed_len, &nv, KM_SLEEP);
usr/src/lib/libzfs/common/libzfs_sendrecv.c
4230
VERIFY(0 == nvlist_alloc(&holds, 0, KM_SLEEP));
usr/src/lib/libzfs_core/common/libzfs_core.c
835
zc.zc_nvlist_dst_size, errors, KM_SLEEP));
usr/src/lib/smbclnt/libfknsmb/common/fake_fio.c
80
fp = kmem_zalloc(sizeof (*fp), KM_SLEEP);
usr/src/lib/smbclnt/libfknsmb/common/fake_ktli.c
166
tiu = kmem_zalloc(sizeof (*tiu), KM_SLEEP);
usr/src/lib/smbclnt/libfknsmb/common/fake_softc.c
128
new_element = kmem_zalloc(ss->size, KM_SLEEP);
usr/src/lib/smbclnt/libfknsmb/common/fake_softc.c
161
KM_SLEEP);
usr/src/lib/smbclnt/libfknsmb/common/fake_softc.c
71
ss = kmem_zalloc(sizeof (*ss), KM_SLEEP);
usr/src/lib/smbclnt/libfknsmb/common/fake_softc.c
83
ss->array = kmem_zalloc(ss->n_items * sizeof (void *), KM_SLEEP);
usr/src/lib/smbclnt/libfknsmb/common/fake_stream.c
853
mp = allocb_oversize(size, KM_SLEEP);
usr/src/lib/smbclnt/libfknsmb/common/fake_stream.c
861
dbp = kmem_cache_alloc(dblk_cache[index], KM_SLEEP);
usr/src/lib/smbclnt/libfksmbfs/common/fake_lookup.c
139
tpn = kmem_alloc(tpn_sz, KM_SLEEP);
usr/src/lib/smbclnt/libfksmbfs/common/fake_vfs.c
1006
dp = kmem_alloc(strlen(sp) + 1, KM_SLEEP);
usr/src/lib/smbclnt/libfksmbfs/common/fake_vfs.c
1017
dp = kmem_alloc(strlen(sp) + 1, KM_SLEEP);
usr/src/lib/smbclnt/libfksmbfs/common/fake_vfs.c
1046
motbl = kmem_zalloc((count + extra) * sizeof (mntopt_t), KM_SLEEP);
usr/src/lib/smbclnt/libfksmbfs/common/fake_vfs.c
1127
*dp = kmem_alloc(strlen(*sp2) + 1, KM_SLEEP);
usr/src/lib/smbclnt/libfksmbfs/common/fake_vfs.c
1133
char **nres = kmem_alloc(bytes, KM_SLEEP);
usr/src/lib/smbclnt/libfksmbfs/common/fake_vfs.c
1172
motbl = kmem_alloc(count * sizeof (mntopt_t), KM_SLEEP);
usr/src/lib/smbclnt/libfksmbfs/common/fake_vfs.c
1279
sp = kmem_alloc(strlen(opt) + 1, KM_SLEEP);
usr/src/lib/smbclnt/libfksmbfs/common/fake_vfs.c
1292
sp = kmem_alloc(strlen(arg) + 1, KM_SLEEP);
usr/src/lib/smbclnt/libfksmbfs/common/fake_vfs.c
1810
vswp->vsw_name = kmem_alloc(strlen(type) + 1, KM_SLEEP);
usr/src/lib/smbclnt/libfksmbfs/common/fake_vfs.c
1931
rootdir = vn_alloc(KM_SLEEP);
usr/src/lib/smbclnt/libfksmbfs/common/fake_vfs.c
346
*actual = (vfsops_t *)kmem_alloc(sizeof (vfsops_t), KM_SLEEP);
usr/src/lib/smbclnt/libfksmbfs/common/fake_vfs.c
474
vfsp->vfs_implp = kmem_alloc(sizeof (vfs_impl_t), KM_SLEEP);
usr/src/lib/smbclnt/libfksmbfs/common/fake_vfs.c
596
inargs = kmem_alloc(MAX_MNTOPT_STR, KM_SLEEP);
usr/src/lib/smbclnt/libfksmbfs/common/fake_vfs.c
654
vfsp = vfs_alloc(KM_SLEEP);
usr/src/lib/smbclnt/libfksmbfs/common/fake_vfs.c
985
result = kmem_alloc((i + extend + 1) * sizeof (char *), KM_SLEEP);
usr/src/lib/smbclnt/libfksmbfs/common/fake_vfs.c
988
result[j] = kmem_alloc(strlen(moc[j]) + 1, KM_SLEEP);
usr/src/lib/smbclnt/libfksmbfs/common/fake_vnode.c
539
*actual = (vnodeops_t *)kmem_alloc(sizeof (vnodeops_t), KM_SLEEP);
usr/src/lib/smbsrv/libfksmbsrv/common/fake_ksocket.c
67
iov = kmem_alloc(iov_sz, KM_SLEEP);
usr/src/lib/smbsrv/libfksmbsrv/common/fake_stream.c
59
db = kmem_zalloc(sizeof (*db), KM_SLEEP);
usr/src/lib/smbsrv/libfksmbsrv/common/fake_stream.c
60
mp = kmem_zalloc(sizeof (*mp), KM_SLEEP);
usr/src/lib/smbsrv/libfksmbsrv/common/fake_vop.c
1339
vsecattr->vsa_aclentp = kmem_zalloc(aclsize, KM_SLEEP);
usr/src/lib/smbsrv/libfksmbsrv/common/fake_vop.c
1349
acl = kmem_alloc(sizeof (ace_t), KM_SLEEP);
usr/src/lib/smbsrv/libfksmbsrv/common/fake_vop.c
1455
priv = kmem_zalloc(sizeof (*priv), KM_SLEEP);
usr/src/lib/smbsrv/libfksmbsrv/common/fake_vop.c
449
vp = vn_alloc(KM_SLEEP);
usr/src/lib/smbsrv/libfksmbsrv/common/fake_vop.c
457
vp->v_path = kmem_alloc(len, KM_SLEEP);
usr/src/lib/smbsrv/libfksmbsrv/common/fake_xattr.c
218
if (nvlist_alloc(&nvl, NV_UNIQUE_NAME, KM_SLEEP))
usr/src/lib/smbsrv/libfksmbsrv/common/fksmb_idmap.c
168
sib->sib_maps = kmem_zalloc(sib->sib_size, KM_SLEEP);
usr/src/lib/smbsrv/libfksmbsrv/common/fksmb_kdoor.c
144
buf = kmem_zalloc(len, KM_SLEEP);
usr/src/lib/smbsrv/libfksmbsrv/common/fksmb_preauth_pkcs.c
60
mech = kmem_zalloc(sizeof (*mech), KM_SLEEP);
usr/src/lib/smbsrv/libfksmbsrv/common/reparse.c
63
lkdata = kmem_alloc(MAXREPARSELEN, KM_SLEEP);
usr/src/lib/smbsrv/libfksmbsrv/common/vncache.c
267
vpath = kmem_alloc(len, KM_SLEEP);
usr/src/lib/smbsrv/libfksmbsrv/common/vncache.c
273
vpath = kmem_alloc(len, KM_SLEEP);
usr/src/lib/smbsrv/libfksmbsrv/common/vncache.c
279
new_vp = vn_alloc(KM_SLEEP);
usr/src/lib/smbsrv/libfksmbsrv/common/vncache.c
323
vpath = kmem_alloc(len, KM_SLEEP);
usr/src/uts/common/brand/sn1/sn1_brand.c
243
sn1_emulation_table = kmem_zalloc(NSYSCALL, KM_SLEEP);
usr/src/uts/common/brand/solaris10/s10_brand.c
388
zone->zone_brand_data = kmem_zalloc(sizeof (s10_zone_data_t), KM_SLEEP);
usr/src/uts/common/brand/solaris10/s10_brand.c
484
s10_emulation_table = kmem_zalloc(NSYSCALL, KM_SLEEP);
usr/src/uts/common/c2/audit_event.c
1781
fstype = kmem_alloc(MAXNAMELEN, KM_SLEEP);
usr/src/uts/common/c2/audit_event.c
1798
hostname = kmem_alloc(MAXNAMELEN, KM_SLEEP);
usr/src/uts/common/c2/audit_event.c
1824
path = kmem_alloc(path_len, KM_SLEEP);
usr/src/uts/common/c2/audit_event.c
1825
dir_path = kmem_alloc(MAXPATHLEN, KM_SLEEP);
usr/src/uts/common/c2/audit_event.c
2629
KM_SLEEP);
usr/src/uts/common/c2/audit_event.c
2888
rhent = kmem_alloc(sizeof (tsol_rhent_t), KM_SLEEP);
usr/src/uts/common/c2/audit_event.c
2922
tpent = kmem_alloc(sizeof (tsol_tpent_t), KM_SLEEP);
usr/src/uts/common/c2/audit_event.c
2942
mlpent = kmem_alloc(sizeof (tsol_mlpent_t), KM_SLEEP);
usr/src/uts/common/c2/audit_event.c
3424
name = kmem_alloc(maxlen, KM_SLEEP);
usr/src/uts/common/c2/audit_event.c
3445
name = kmem_alloc(maxlen, KM_SLEEP);
usr/src/uts/common/c2/audit_event.c
3527
filenamep = kmem_alloc(MOD_MAXPATH, KM_SLEEP);
usr/src/uts/common/c2/audit_event.c
3607
name = kmem_alloc(MAXMODCONFNAME, KM_SLEEP);
usr/src/uts/common/c2/audit_event.c
4132
buf = kmem_alloc(buflen, KM_SLEEP);
usr/src/uts/common/c2/audit_event.c
4151
buf = kmem_alloc(buflen, KM_SLEEP);
usr/src/uts/common/c2/audit_event.c
5442
if ((aclbufp = kmem_alloc(a_size, KM_SLEEP)) == NULL)
usr/src/uts/common/c2/audit_event.c
5459
if ((acebufp = kmem_alloc(a_size, KM_SLEEP)) == NULL)
usr/src/uts/common/c2/audit_io.c
602
buf = kmem_alloc(alloc_size, KM_SLEEP);
usr/src/uts/common/c2/audit_io.c
608
buf = kmem_alloc(alloc_size, KM_SLEEP);
usr/src/uts/common/c2/audit_io.c
661
KM_SLEEP);
usr/src/uts/common/c2/audit_mem.c
67
buffer = kmem_cache_alloc(au_buf_cache, KM_SLEEP);
usr/src/uts/common/c2/audit_token.c
1125
q = buf = kmem_alloc(maxprivbytes, KM_SLEEP);
usr/src/uts/common/contract/device.c
1105
buf = kmem_alloc(MAXPATHLEN, KM_SLEEP);
usr/src/uts/common/contract/device.c
1215
path = kmem_alloc(MAXPATHLEN, KM_SLEEP);
usr/src/uts/common/contract/device.c
1238
minor = i_ddi_strdup(path, KM_SLEEP);
usr/src/uts/common/contract/device.c
1243
ctd = kmem_zalloc(sizeof (cont_device_t), KM_SLEEP);
usr/src/uts/common/contract/device.c
1372
path = kmem_alloc(MAXPATHLEN, KM_SLEEP);
usr/src/uts/common/contract/device.c
1623
path = kmem_alloc(MAXPATHLEN, KM_SLEEP);
usr/src/uts/common/contract/device.c
1735
event = kmem_zalloc(sizeof (ct_kevent_t), KM_SLEEP);
usr/src/uts/common/contract/device.c
1949
VERIFY(nvlist_alloc(&nvl, NV_UNIQUE_NAME, KM_SLEEP) == 0);
usr/src/uts/common/contract/device.c
1978
VERIFY(nvlist_alloc(&nvl, NV_UNIQUE_NAME, KM_SLEEP) == 0);
usr/src/uts/common/contract/device.c
1997
VERIFY(nvlist_alloc(&nvl, NV_UNIQUE_NAME, KM_SLEEP) == 0);
usr/src/uts/common/contract/device.c
2022
VERIFY(nvlist_alloc(&nvl, NV_UNIQUE_NAME, KM_SLEEP) == 0);
usr/src/uts/common/contract/device.c
420
new = kmem_zalloc(sizeof (ctmpl_device_t), KM_SLEEP);
usr/src/uts/common/contract/device.c
421
buf = kmem_alloc(MAXPATHLEN, KM_SLEEP);
usr/src/uts/common/contract/device.c
444
minor = i_ddi_strdup(buf, KM_SLEEP);
usr/src/uts/common/contract/device.c
574
dtmpl->ctd_minor = i_ddi_strdup(str_value, KM_SLEEP);
usr/src/uts/common/contract/device.c
657
buf = kmem_alloc(MAXPATHLEN, KM_SLEEP);
usr/src/uts/common/contract/device.c
733
new = kmem_zalloc(sizeof (ctmpl_device_t), KM_SLEEP);
usr/src/uts/common/contract/device.c
988
path = kmem_alloc(MAXPATHLEN, KM_SLEEP);
usr/src/uts/common/contract/device.c
997
devnm = kmem_alloc(MAXNAMELEN + 1, KM_SLEEP);
usr/src/uts/common/contract/process.c
1052
VERIFY(nvlist_alloc(&nvl, NV_UNIQUE_NAME, KM_SLEEP) == 0);
usr/src/uts/common/contract/process.c
1056
event = kmem_zalloc(sizeof (ct_kevent_t), KM_SLEEP);
usr/src/uts/common/contract/process.c
1082
VERIFY(nvlist_alloc(&nvl, NV_UNIQUE_NAME, KM_SLEEP) == 0);
usr/src/uts/common/contract/process.c
1098
KM_SLEEP) == 0);
usr/src/uts/common/contract/process.c
1103
event = kmem_zalloc(sizeof (ct_kevent_t), KM_SLEEP);
usr/src/uts/common/contract/process.c
1132
VERIFY(nvlist_alloc(&nvl, NV_UNIQUE_NAME, KM_SLEEP) == 0);
usr/src/uts/common/contract/process.c
1135
event = kmem_zalloc(sizeof (ct_kevent_t), KM_SLEEP);
usr/src/uts/common/contract/process.c
1168
VERIFY(nvlist_alloc(&nvl, NV_UNIQUE_NAME, KM_SLEEP) == 0);
usr/src/uts/common/contract/process.c
1174
KM_SLEEP) == 0);
usr/src/uts/common/contract/process.c
1185
event = kmem_zalloc(sizeof (ct_kevent_t), KM_SLEEP);
usr/src/uts/common/contract/process.c
152
new = kmem_alloc(sizeof (ctmpl_process_t), KM_SLEEP);
usr/src/uts/common/contract/process.c
443
new = kmem_alloc(sizeof (ctmpl_process_t), KM_SLEEP);
usr/src/uts/common/contract/process.c
693
pids = kmem_alloc(spids * sizeof (uint32_t), KM_SLEEP);
usr/src/uts/common/contract/process.c
695
KM_SLEEP);
usr/src/uts/common/contract/process.c
797
sys_process_tmpl = kmem_alloc(sizeof (ctmpl_process_t), KM_SLEEP);
usr/src/uts/common/contract/process.c
826
ctp = kmem_zalloc(sizeof (cont_process_t), KM_SLEEP);
usr/src/uts/common/contract/process.c
949
VERIFY(nvlist_alloc(&nvl, NV_UNIQUE_NAME, KM_SLEEP) == 0);
usr/src/uts/common/contract/process.c
953
event = kmem_zalloc(sizeof (ct_kevent_t), KM_SLEEP);
usr/src/uts/common/contract/process.c
968
KM_SLEEP) == 0);
usr/src/uts/common/contract/process.c
971
event = kmem_zalloc(sizeof (ct_kevent_t), KM_SLEEP);
usr/src/uts/common/crypto/api/kcf_cbufcall.c
62
cbufp = kmem_zalloc(sizeof (kcf_cbuf_elem_t), KM_SLEEP);
usr/src/uts/common/crypto/api/kcf_dual.c
1654
KCF_RHNDL(KM_SLEEP));
usr/src/uts/common/crypto/api/kcf_dual.c
673
KCF_RHNDL(KM_SLEEP));
usr/src/uts/common/crypto/api/kcf_miscapi.c
328
nep = kmem_zalloc(sizeof (kcf_ntfy_elem_t), KM_SLEEP);
usr/src/uts/common/crypto/api/kcf_miscapi.c
830
ext_info = kmem_zalloc(sizeof (crypto_provider_ext_info_t), KM_SLEEP);
usr/src/uts/common/crypto/api/kcf_random.c
282
if (kcf_insert_triedlist(&list, pd, KM_SLEEP) == NULL) {
usr/src/uts/common/crypto/api/kcf_random.c
831
rndbuf = kmem_alloc(rndmag_total, KM_SLEEP);
usr/src/uts/common/crypto/api/kcf_random.c
833
KM_SLEEP);
usr/src/uts/common/crypto/core/kcf_callprov.c
79
flags & (KM_SLEEP | KM_NOSLEEP));
usr/src/uts/common/crypto/core/kcf_crypto.c
54
array, count, KM_SLEEP));
usr/src/uts/common/crypto/core/kcf_cryptoadm.c
1068
new_entry = kmem_zalloc(sizeof (kcf_soft_conf_entry_t), KM_SLEEP);
usr/src/uts/common/crypto/core/kcf_cryptoadm.c
1069
new_entry->ce_name = kmem_alloc(name_len, KM_SLEEP);
usr/src/uts/common/crypto/core/kcf_cryptoadm.c
1213
*name = kmem_alloc(name_len, KM_SLEEP);
usr/src/uts/common/crypto/core/kcf_cryptoadm.c
203
mechsp = kmem_alloc(alloc_size, KM_SLEEP);
usr/src/uts/common/crypto/core/kcf_cryptoadm.c
310
rval = kcf_get_hw_prov_tab(&provider_count, &provider_array, KM_SLEEP,
usr/src/uts/common/crypto/core/kcf_cryptoadm.c
324
skip_providers = kmem_zalloc(skip_providers_size, KM_SLEEP);
usr/src/uts/common/crypto/core/kcf_cryptoadm.c
325
mech_counts = kmem_zalloc(mech_counts_size, KM_SLEEP);
usr/src/uts/common/crypto/core/kcf_cryptoadm.c
329
p = kmem_alloc(new_count * sizeof (crypto_dev_list_entry_t), KM_SLEEP);
usr/src/uts/common/crypto/core/kcf_cryptoadm.c
376
namep = names = kmem_alloc(n, KM_SLEEP);
usr/src/uts/common/crypto/core/kcf_cryptoadm.c
404
final_buffer = kmem_alloc(final_size, KM_SLEEP);
usr/src/uts/common/crypto/core/kcf_cryptoadm.c
455
rv = kcf_get_hw_prov_tab(&provider_count, &provider_array, KM_SLEEP,
usr/src/uts/common/crypto/core/kcf_cryptoadm.c
475
KM_SLEEP);
usr/src/uts/common/crypto/core/kcf_cryptoadm.c
494
kmem_alloc(k * sizeof (crypto_mech_name_t), KM_SLEEP);
usr/src/uts/common/crypto/core/kcf_cryptoadm.c
529
tmp = kmem_alloc(name_len + 8, KM_SLEEP);
usr/src/uts/common/crypto/core/kcf_cryptoadm.c
547
rv = dup_mech_names(provider, array, count, KM_SLEEP);
usr/src/uts/common/crypto/core/kcf_cryptoadm.c
669
rv = kcf_get_hw_prov_tab(&provider_count, &provider_array, KM_SLEEP,
usr/src/uts/common/crypto/core/kcf_mech_tabs.c
299
KM_SLEEP);
usr/src/uts/common/crypto/core/kcf_mech_tabs.c
489
prov_mech = kmem_zalloc(sizeof (kcf_prov_mech_desc_t), KM_SLEEP);
usr/src/uts/common/crypto/core/kcf_mech_tabs.c
528
mil = kmem_zalloc(sizeof (*mil), KM_SLEEP);
usr/src/uts/common/crypto/core/kcf_mech_tabs.c
529
mil2 = kmem_zalloc(sizeof (*mil2), KM_SLEEP);
usr/src/uts/common/crypto/core/kcf_policy.c
252
new_desc = kcf_policy_alloc_desc(KM_SLEEP);
usr/src/uts/common/crypto/core/kcf_policy.c
254
new_desc->pd_name = kmem_alloc(strlen(module_name) + 1, KM_SLEEP);
usr/src/uts/common/crypto/core/kcf_policy.c
315
new_desc = kcf_policy_alloc_desc(KM_SLEEP);
usr/src/uts/common/crypto/core/kcf_policy.c
317
new_desc->pd_name = kmem_alloc(strlen(name) + 1, KM_SLEEP);
usr/src/uts/common/crypto/core/kcf_policy.c
64
KM_SLEEP);
usr/src/uts/common/crypto/core/kcf_prov_tabs.c
229
KM_SLEEP);
usr/src/uts/common/crypto/core/kcf_prov_tabs.c
233
KM_SLEEP);
usr/src/uts/common/crypto/core/kcf_prov_tabs.c
237
KM_SLEEP);
usr/src/uts/common/crypto/core/kcf_prov_tabs.c
241
KM_SLEEP);
usr/src/uts/common/crypto/core/kcf_prov_tabs.c
245
KM_SLEEP);
usr/src/uts/common/crypto/core/kcf_prov_tabs.c
249
KM_SLEEP);
usr/src/uts/common/crypto/core/kcf_prov_tabs.c
253
KM_SLEEP);
usr/src/uts/common/crypto/core/kcf_prov_tabs.c
257
sizeof (crypto_dual_cipher_mac_ops_t), KM_SLEEP);
usr/src/uts/common/crypto/core/kcf_prov_tabs.c
261
sizeof (crypto_random_number_ops_t), KM_SLEEP);
usr/src/uts/common/crypto/core/kcf_prov_tabs.c
274
KM_SLEEP);
usr/src/uts/common/crypto/core/kcf_prov_tabs.c
278
KM_SLEEP);
usr/src/uts/common/crypto/core/kcf_prov_tabs.c
282
KM_SLEEP);
usr/src/uts/common/crypto/core/kcf_prov_tabs.c
286
sizeof (crypto_provider_management_ops_t), KM_SLEEP);
usr/src/uts/common/crypto/core/kcf_prov_tabs.c
290
KM_SLEEP);
usr/src/uts/common/crypto/core/kcf_prov_tabs.c
298
KM_SLEEP);
usr/src/uts/common/crypto/core/kcf_prov_tabs.c
306
kmem_alloc(sizeof (crypto_nostore_key_ops_t), KM_SLEEP);
usr/src/uts/common/crypto/core/kcf_prov_tabs.c
314
kmem_alloc(sizeof (crypto_fips140_ops_t), KM_SLEEP);
usr/src/uts/common/crypto/core/kcf_prov_tabs.c
332
desc = kmem_zalloc(sizeof (kcf_provider_desc_t), KM_SLEEP);
usr/src/uts/common/crypto/core/kcf_prov_tabs.c
347
KM_SLEEP);
usr/src/uts/common/crypto/core/kcf_prov_tabs.c
358
desc->pd_ops_vector = kmem_zalloc(sizeof (crypto_ops_t), KM_SLEEP);
usr/src/uts/common/crypto/core/kcf_prov_tabs.c
372
mech_list_count, KM_SLEEP);
usr/src/uts/common/crypto/core/kcf_prov_tabs.c
385
kmem_zalloc(desc->pd_nbins * sizeof (kcf_prov_cpu_t), KM_SLEEP);
usr/src/uts/common/crypto/core/kcf_prov_tabs.c
614
p = kmem_zalloc(n, KM_SLEEP);
usr/src/uts/common/crypto/core/kcf_prov_tabs.c
651
final_buffer = kmem_alloc(final_size, KM_SLEEP);
usr/src/uts/common/crypto/core/kcf_prov_tabs.c
90
KM_SLEEP);
usr/src/uts/common/crypto/core/kcf_sched.c
118
(crq == NULL) ? KM_SLEEP : KM_NOSLEEP);
usr/src/uts/common/crypto/core/kcf_sched.c
1213
gswq = kmem_alloc(sizeof (kcf_global_swq_t), KM_SLEEP);
usr/src/uts/common/crypto/core/kcf_sched.c
1223
rt = kmem_zalloc(sizeof (kcf_reqid_table_t), KM_SLEEP);
usr/src/uts/common/crypto/core/kcf_sched.c
1462
kcfpool = kmem_alloc(sizeof (kcf_pool_t), KM_SLEEP);
usr/src/uts/common/crypto/core/kcf_sched.c
613
KCF_RHNDL(KM_SLEEP));
usr/src/uts/common/crypto/core/kcf_sched.c
631
params, KCF_RHNDL(KM_SLEEP));
usr/src/uts/common/crypto/core/kcf_sched.c
639
sreq = kmem_cache_alloc(kcf_sreq_cache, KM_SLEEP);
usr/src/uts/common/crypto/io/crypto.c
1010
entries = crypto_get_mech_list(&count, KM_SLEEP);
usr/src/uts/common/crypto/io/crypto.c
1130
KM_SLEEP);
usr/src/uts/common/crypto/io/crypto.c
1169
u_minfos = kmem_alloc(num_mech_infos * STRUCT_SIZE(mi), KM_SLEEP);
usr/src/uts/common/crypto/io/crypto.c
1209
sizeof (crypto_provider_entry_t), KM_SLEEP);
usr/src/uts/common/crypto/io/crypto.c
1464
ext_info = kmem_zalloc(need, KM_SLEEP);
usr/src/uts/common/crypto/io/crypto.c
164
(data).cd_raw.iov_base = (len > 0) ? kmem_alloc(len, KM_SLEEP) : NULL; \
usr/src/uts/common/crypto/io/crypto.c
1800
ps = kmem_zalloc(sizeof (crypto_provider_session_t), KM_SLEEP);
usr/src/uts/common/crypto/io/crypto.c
1891
new = kmem_zalloc(new_allocation, KM_SLEEP);
usr/src/uts/common/crypto/io/crypto.c
1990
sp = kmem_cache_alloc(crypto_session_cache, KM_SLEEP);
usr/src/uts/common/crypto/io/crypto.c
2201
mode, KM_SLEEP);
usr/src/uts/common/crypto/io/crypto.c
2231
out_mech->cm_param = kmem_alloc(param_len, KM_SLEEP);
usr/src/uts/common/crypto/io/crypto.c
2355
attrs = kmem_alloc(len, KM_SLEEP);
usr/src/uts/common/crypto/io/crypto.c
2389
k_attrs = kmem_alloc(k_attrs_total_len, KM_SLEEP);
usr/src/uts/common/crypto/io/crypto.c
2484
out_key->ck_data = kmem_alloc(key_bytes, KM_SLEEP);
usr/src/uts/common/crypto/io/crypto.c
3213
encr.cd_raw.iov_base = kmem_alloc(encrlen, KM_SLEEP);
usr/src/uts/common/crypto/io/crypto.c
3411
data.cd_raw.iov_base = kmem_alloc(datalen, KM_SLEEP);
usr/src/uts/common/crypto/io/crypto.c
3714
tmp_pin = kmem_alloc(pin_len, KM_SLEEP);
usr/src/uts/common/crypto/io/crypto.c
3770
new_pin = kmem_alloc(new_pin_len, KM_SLEEP);
usr/src/uts/common/crypto/io/crypto.c
393
KM_SLEEP);
usr/src/uts/common/crypto/io/crypto.c
4476
seed_buffer = kmem_alloc(seed_len, KM_SLEEP);
usr/src/uts/common/crypto/io/crypto.c
4567
buffer = kmem_alloc(len, KM_SLEEP);
usr/src/uts/common/crypto/io/crypto.c
492
newtable = kmem_zalloc(new_size, KM_SLEEP);
usr/src/uts/common/crypto/io/crypto.c
528
cm = kmem_zalloc(sizeof (crypto_minor_t), KM_SLEEP);
usr/src/uts/common/crypto/io/crypto.c
5316
buffer = kmem_alloc(len, KM_SLEEP);
usr/src/uts/common/crypto/io/crypto.c
6158
wrapped_key = kmem_alloc(wrapped_key_len, KM_SLEEP);
usr/src/uts/common/crypto/io/crypto.c
6319
wrapped_key = kmem_alloc(wrapped_key_len, KM_SLEEP);
usr/src/uts/common/crypto/io/crypto.c
955
mechanism_name = kmem_alloc(len, KM_SLEEP);
usr/src/uts/common/crypto/io/cryptoadm.c
541
entries = kmem_alloc(size, KM_SLEEP);
usr/src/uts/common/crypto/io/cryptoadm.c
622
entries = kmem_alloc(size, KM_SLEEP);
usr/src/uts/common/crypto/io/cryptoadm.c
704
entries = kmem_alloc(size, KM_SLEEP);
usr/src/uts/common/crypto/io/dca.c
1523
workp = kmem_zalloc(sizeof (dca_work_t), KM_SLEEP);
usr/src/uts/common/crypto/io/dca.c
1583
reqp = kmem_zalloc(sizeof (dca_request_t), KM_SLEEP);
usr/src/uts/common/crypto/io/dca.c
3651
error = dca_3desctxinit(ctx, mechanism, key, KM_SLEEP,
usr/src/uts/common/crypto/io/dca.c
3655
error = dca_3desctxinit(ctx, mechanism, key, KM_SLEEP,
usr/src/uts/common/crypto/io/dca.c
3660
error = dca_rsainit(ctx, mechanism, key, KM_SLEEP);
usr/src/uts/common/crypto/io/dca.c
3830
plaintext, ciphertext, KM_SLEEP, req,
usr/src/uts/common/crypto/io/dca.c
3835
plaintext, ciphertext, KM_SLEEP, req,
usr/src/uts/common/crypto/io/dca.c
3841
plaintext, ciphertext, KM_SLEEP, req, DCA_RSA_ENC);
usr/src/uts/common/crypto/io/dca.c
3873
error = dca_3desctxinit(ctx, mechanism, key, KM_SLEEP,
usr/src/uts/common/crypto/io/dca.c
3877
error = dca_3desctxinit(ctx, mechanism, key, KM_SLEEP,
usr/src/uts/common/crypto/io/dca.c
3882
error = dca_rsainit(ctx, mechanism, key, KM_SLEEP);
usr/src/uts/common/crypto/io/dca.c
4053
ciphertext, plaintext, KM_SLEEP, req,
usr/src/uts/common/crypto/io/dca.c
4058
ciphertext, plaintext, KM_SLEEP, req,
usr/src/uts/common/crypto/io/dca.c
4064
ciphertext, plaintext, KM_SLEEP, req, DCA_RSA_DEC);
usr/src/uts/common/crypto/io/dca.c
4104
error = dca_rsainit(ctx, mechanism, key, KM_SLEEP);
usr/src/uts/common/crypto/io/dca.c
4107
error = dca_dsainit(ctx, mechanism, key, KM_SLEEP,
usr/src/uts/common/crypto/io/dca.c
4221
data, signature, KM_SLEEP, req, DCA_RSA_SIGN);
usr/src/uts/common/crypto/io/dca.c
4225
data, signature, KM_SLEEP, req, DCA_DSA_SIGN);
usr/src/uts/common/crypto/io/dca.c
4257
error = dca_rsainit(ctx, mechanism, key, KM_SLEEP);
usr/src/uts/common/crypto/io/dca.c
4323
data, signature, KM_SLEEP, req, DCA_RSA_SIGNR);
usr/src/uts/common/crypto/io/dca.c
4359
error = dca_rsainit(ctx, mechanism, key, KM_SLEEP);
usr/src/uts/common/crypto/io/dca.c
4362
error = dca_dsainit(ctx, mechanism, key, KM_SLEEP,
usr/src/uts/common/crypto/io/dca.c
4476
signature, data, KM_SLEEP, req, DCA_RSA_VRFY);
usr/src/uts/common/crypto/io/dca.c
4480
data, signature, KM_SLEEP, req, DCA_DSA_VRFY);
usr/src/uts/common/crypto/io/dca.c
4512
error = dca_rsainit(ctx, mechanism, key, KM_SLEEP);
usr/src/uts/common/crypto/io/dca.c
4576
signature, data, KM_SLEEP, req, DCA_RSA_VRFYR);
usr/src/uts/common/crypto/io/dca_rng.c
217
if ((dca->dca_buf1 = kmem_alloc(RANDOM_BUFFER_SIZE, KM_SLEEP)) ==
usr/src/uts/common/crypto/io/dca_rng.c
223
if ((dca->dca_buf2 = kmem_alloc(RANDOM_BUFFER_SIZE, KM_SLEEP)) ==
usr/src/uts/common/crypto/io/dprov.c
1829
sizeof (dprov_session_t *), KM_SLEEP);
usr/src/uts/common/crypto/io/dprov.c
1973
mechanism, NULL, NULL, NULL, ctx, KM_SLEEP);
usr/src/uts/common/crypto/io/dprov.c
2109
mechanism, data, NULL, digest, NULL, KM_SLEEP);
usr/src/uts/common/crypto/io/dprov.c
2168
mechanism, NULL, key, NULL, ctx, 0, KM_SLEEP);
usr/src/uts/common/crypto/io/dprov.c
2270
mechanism, data, key, mac, NULL, session_id, KM_SLEEP);
usr/src/uts/common/crypto/io/dprov.c
2305
mechanism, data, key, mac, NULL, session_id, KM_SLEEP);
usr/src/uts/common/crypto/io/dprov.c
2387
req, mechanism, key, NULL, NULL, ctx, 0, KM_SLEEP);
usr/src/uts/common/crypto/io/dprov.c
2495
KM_SLEEP);
usr/src/uts/common/crypto/io/dprov.c
2528
req, mechanism, key, NULL, NULL, ctx, 0, KM_SLEEP);
usr/src/uts/common/crypto/io/dprov.c
2637
KM_SLEEP);
usr/src/uts/common/crypto/io/dprov.c
2705
mechanism, key, NULL, NULL, ctx, 0, KM_SLEEP);
usr/src/uts/common/crypto/io/dprov.c
2808
mechanism, key, data, signature, NULL, session_id, KM_SLEEP);
usr/src/uts/common/crypto/io/dprov.c
2836
mechanism, key, NULL, NULL, ctx, 0, KM_SLEEP);
usr/src/uts/common/crypto/io/dprov.c
2887
mechanism, key, data, signature, NULL, session_id, KM_SLEEP);
usr/src/uts/common/crypto/io/dprov.c
2924
mechanism, key, NULL, NULL, ctx, 0, KM_SLEEP);
usr/src/uts/common/crypto/io/dprov.c
3029
mechanism, key, data, signature, NULL, session_id, KM_SLEEP);
usr/src/uts/common/crypto/io/dprov.c
3057
req, mechanism, key, NULL, NULL, ctx, 0, KM_SLEEP);
usr/src/uts/common/crypto/io/dprov.c
3109
req, mechanism, key, data, signature, NULL, session_id, KM_SLEEP);
usr/src/uts/common/crypto/io/dprov.c
3274
NULL, NULL, NULL, KM_SLEEP);
usr/src/uts/common/crypto/io/dprov.c
3400
mac_key, ciphertext, plaintext, mac, KM_SLEEP);
usr/src/uts/common/crypto/io/dprov.c
3445
NULL, NULL, NULL, KM_SLEEP);
usr/src/uts/common/crypto/io/dprov.c
3567
mac_key, ciphertext, plaintext, mac, KM_SLEEP);
usr/src/uts/common/crypto/io/dprov.c
3614
mac_key, ciphertext, plaintext, mac, KM_SLEEP);
usr/src/uts/common/crypto/io/dprov.c
3940
provider_private, NULL, 0, NULL, KM_SLEEP);
usr/src/uts/common/crypto/io/dprov.c
7314
find_ctx = kmem_zalloc(sizeof (dprov_find_ctx_t), KM_SLEEP);
usr/src/uts/common/crypto/io/dprov.c
7671
attribute.oa_value = kmem_alloc(key_len, KM_SLEEP);
usr/src/uts/common/crypto/io/dprov.c
8082
plaintext_buf = kmem_alloc(wrapped_key_len, KM_SLEEP);
usr/src/uts/common/crypto/io/dprov.c
8271
digest_buf = kmem_alloc(hash_size, KM_SLEEP);
usr/src/uts/common/crypto/io/dprov.c
9244
object = kmem_zalloc(sizeof (dprov_object_t), KM_SLEEP);
usr/src/uts/common/crypto/io/dprov.c
9297
KM_SLEEP);
usr/src/uts/common/crypto/io/dprov.c
9314
object->do_attr[oattr].oa_value = kmem_alloc(1, KM_SLEEP);
usr/src/uts/common/crypto/io/dprov.c
9322
object->do_attr[oattr].oa_value = kmem_alloc(1, KM_SLEEP);
usr/src/uts/common/crypto/io/dprov.c
9330
object->do_attr[oattr].oa_value = kmem_alloc(1, KM_SLEEP);
usr/src/uts/common/crypto/io/dprov.c
9338
object->do_attr[oattr].oa_value = kmem_alloc(1, KM_SLEEP);
usr/src/uts/common/crypto/io/dprov.c
9529
object->do_attr[j].oa_value = kmem_alloc(new_len, KM_SLEEP);
usr/src/uts/common/crypto/io/swrand.c
615
KM_SLEEP);
usr/src/uts/common/crypto/io/viorand.c
262
state->vio_rdbufs_capacity, KM_SLEEP);
usr/src/uts/common/crypto/io/viorand.c
274
rb->rb_chain = virtio_chain_alloc(state->vio_rq, KM_SLEEP);
usr/src/uts/common/crypto/io/viorand.c
523
&viorand_dma_attr, DDI_DMA_READ | DDI_DMA_STREAMING, KM_SLEEP);
usr/src/uts/common/crypto/spi/kcf_spi.c
235
prov_desc->pd_name = kmem_alloc(strlen(name) + 1, KM_SLEEP);
usr/src/uts/common/crypto/spi/kcf_spi.c
935
new = kmem_alloc(sizeof (kcf_provider_list_t), KM_SLEEP);
usr/src/uts/common/disp/class.c
69
clp->cl_lock = kmem_alloc(sizeof (krwlock_t), KM_SLEEP);
usr/src/uts/common/disp/class.c
70
clp->cl_name = kmem_alloc(strlen(clname) + 1, KM_SLEEP);
usr/src/uts/common/disp/cmt.c
1239
lgrp = kmem_zalloc(sizeof (cmt_lgrp_t), KM_SLEEP);
usr/src/uts/common/disp/cmt.c
722
kmem_zalloc(sizeof (group_t), KM_SLEEP);
usr/src/uts/common/disp/cpucaps.c
264
cpucap_t *cap = kmem_zalloc(sizeof (cpucap_t), KM_SLEEP);
usr/src/uts/common/disp/cpupart.c
226
cp->cp_lgrploads = kmem_zalloc(sizeof (lpl_t) * sz, KM_SLEEP);
usr/src/uts/common/disp/cpupart.c
236
kmem_zalloc(sizeof (struct lgrp_ld *) * (sz + 1), KM_SLEEP);
usr/src/uts/common/disp/cpupart.c
238
kmem_zalloc(sizeof (int) * (sz + 1), KM_SLEEP);
usr/src/uts/common/disp/cpupart.c
826
pp = kmem_zalloc(sizeof (cpupart_t), KM_SLEEP);
usr/src/uts/common/disp/disp.c
346
sizeof (struct disp_queue_info), KM_SLEEP);
usr/src/uts/common/disp/disp.c
381
dptr->newdispq = kmem_zalloc(numpris * sizeof (dispq_t), KM_SLEEP);
usr/src/uts/common/disp/disp.c
383
sizeof (long), KM_SLEEP);
usr/src/uts/common/disp/disp.c
443
dp = kmem_alloc(sizeof (disp_t), KM_SLEEP);
usr/src/uts/common/disp/disp.c
454
newdispq = kmem_zalloc(v.v_nglobpris * sizeof (dispq_t), KM_SLEEP);
usr/src/uts/common/disp/disp.c
456
sizeof (long), KM_SLEEP);
usr/src/uts/common/disp/fss.c
472
fssbuf = kmem_zalloc(sizeof (fssbuf_t), KM_SLEEP);
usr/src/uts/common/disp/fss.c
493
fsslist = kmem_zalloc(cnt * sizeof (void *), KM_SLEEP);
usr/src/uts/common/disp/fss.c
497
fsslist[i] = kmem_zalloc(size, KM_SLEEP);
usr/src/uts/common/disp/fss.c
855
fsspsets = kmem_zalloc(sizeof (fsspset_t) * max_ncpus, KM_SLEEP);
usr/src/uts/common/disp/fx.c
393
tmpdpp = kmem_alloc(fxdpsz, KM_SLEEP);
usr/src/uts/common/disp/rt.c
312
tmpdpp = kmem_alloc(rtdpsz, KM_SLEEP);
usr/src/uts/common/disp/sysdc.c
1283
VERIFY0(CL_ALLOC(&buf, sysdccid, KM_SLEEP));
usr/src/uts/common/disp/thread.c
1079
ctx = kmem_alloc(sizeof (struct ctxop), KM_SLEEP);
usr/src/uts/common/disp/thread.c
1757
tsd = t->t_tsd = kmem_zalloc(sizeof (*tsd), KM_SLEEP);
usr/src/uts/common/disp/thread.c
179
kmem_alloc(sizeof (thread_free_lock_t) * THREAD_FREE_NUM, KM_SLEEP);
usr/src/uts/common/disp/thread.c
1805
tsd = curthread->t_tsd = kmem_zalloc(sizeof (*tsd), KM_SLEEP);
usr/src/uts/common/disp/thread.c
1875
new = kmem_zalloc(nsize, KM_SLEEP);
usr/src/uts/common/disp/thread.c
2327
buf = kmem_zalloc(THREAD_NAME_MAX, KM_SLEEP);
usr/src/uts/common/disp/thread.c
235
curthread->t_ts = kmem_cache_alloc(turnstile_cache, KM_SLEEP);
usr/src/uts/common/disp/thread.c
347
ts = kmem_cache_alloc(turnstile_cache, KM_SLEEP);
usr/src/uts/common/disp/thread.c
396
t = kmem_cache_alloc(thread_cache, KM_SLEEP);
usr/src/uts/common/disp/ts.c
471
tmpdpp = kmem_alloc(tsdpsz, KM_SLEEP);
usr/src/uts/common/dtrace/dcpc.c
1141
kmem_zalloc(cpc_ncounters * sizeof (dcpc_probe_t *), KM_SLEEP);
usr/src/uts/common/dtrace/dcpc.c
187
pp = kmem_zalloc(sizeof (dcpc_probe_t), KM_SLEEP);
usr/src/uts/common/dtrace/dcpc.c
226
p = str = kmem_alloc(len + 1, KM_SLEEP);
usr/src/uts/common/dtrace/dcpc.c
370
kmem_zalloc(sizeof (kcpc_attr_t), KM_SLEEP);
usr/src/uts/common/dtrace/dcpc.c
440
set = kmem_zalloc(sizeof (kcpc_set_t), KM_SLEEP);
usr/src/uts/common/dtrace/dcpc.c
443
kmem_zalloc(sizeof (kcpc_request_t) * active_requests, KM_SLEEP);
usr/src/uts/common/dtrace/dcpc.c
446
kmem_zalloc(active_requests * sizeof (uint64_t), KM_SLEEP);
usr/src/uts/common/dtrace/dcpc.c
471
set->ks_ctx = ctx = kcpc_ctx_alloc(KM_SLEEP);
usr/src/uts/common/dtrace/dtrace.c
10149
tlocals = kmem_zalloc(nsz, KM_SLEEP);
usr/src/uts/common/dtrace/dtrace.c
10200
statics = kmem_zalloc(newsize, KM_SLEEP);
usr/src/uts/common/dtrace/dtrace.c
10212
svar = kmem_zalloc(sizeof (dtrace_statvar_t), KM_SLEEP);
usr/src/uts/common/dtrace/dtrace.c
10217
kmem_zalloc(dsize, KM_SLEEP);
usr/src/uts/common/dtrace/dtrace.c
10239
new = kmem_zalloc(sizeof (dtrace_difo_t), KM_SLEEP);
usr/src/uts/common/dtrace/dtrace.c
10243
new->dtdo_buf = kmem_alloc(sz, KM_SLEEP);
usr/src/uts/common/dtrace/dtrace.c
10249
new->dtdo_strtab = kmem_alloc(dp->dtdo_strlen, KM_SLEEP);
usr/src/uts/common/dtrace/dtrace.c
10257
new->dtdo_inttab = kmem_alloc(sz, KM_SLEEP);
usr/src/uts/common/dtrace/dtrace.c
10265
new->dtdo_vartab = kmem_alloc(sz, KM_SLEEP);
usr/src/uts/common/dtrace/dtrace.c
10369
fmt = kmem_zalloc(len, KM_SLEEP);
usr/src/uts/common/dtrace/dtrace.c
10393
new = kmem_alloc((ndx + 1) * sizeof (char *), KM_SLEEP);
usr/src/uts/common/dtrace/dtrace.c
10458
pred = kmem_zalloc(sizeof (dtrace_predicate_t), KM_SLEEP);
usr/src/uts/common/dtrace/dtrace.c
10519
act = kmem_zalloc(sizeof (dtrace_actdesc_t), KM_SLEEP);
usr/src/uts/common/dtrace/dtrace.c
10574
ecb = kmem_zalloc(sizeof (dtrace_ecb_t), KM_SLEEP);
usr/src/uts/common/dtrace/dtrace.c
10598
ecbs = kmem_zalloc(necbs * sizeof (*ecbs), KM_SLEEP);
usr/src/uts/common/dtrace/dtrace.c
10783
agg = kmem_zalloc(sizeof (dtrace_aggregation_t), KM_SLEEP);
usr/src/uts/common/dtrace/dtrace.c
10933
aggs = kmem_zalloc(naggs * sizeof (*aggs), KM_SLEEP);
usr/src/uts/common/dtrace/dtrace.c
11179
action = kmem_zalloc(sizeof (dtrace_action_t), KM_SLEEP);
usr/src/uts/common/dtrace/dtrace.c
12060
enab = kmem_zalloc(sizeof (dtrace_enabling_t), KM_SLEEP);
usr/src/uts/common/dtrace/dtrace.c
12095
ndesc = kmem_zalloc(nsize, KM_SLEEP);
usr/src/uts/common/dtrace/dtrace.c
12115
new = kmem_zalloc(sizeof (dtrace_ecbdesc_t), KM_SLEEP);
usr/src/uts/common/dtrace/dtrace.c
12632
dof = kmem_zalloc(len, KM_SLEEP);
usr/src/uts/common/dtrace/dtrace.c
12710
dof = kmem_alloc(hdr.dofh_loadsz, KM_SLEEP);
usr/src/uts/common/dtrace/dtrace.c
12760
dof = kmem_alloc(loadsz, KM_SLEEP);
usr/src/uts/common/dtrace/dtrace.c
12929
dp = kmem_zalloc(sizeof (dtrace_difo_t), KM_SLEEP);
usr/src/uts/common/dtrace/dtrace.c
12982
*bufp = kmem_alloc(subsec->dofs_size, KM_SLEEP);
usr/src/uts/common/dtrace/dtrace.c
13143
fmt = kmem_alloc(i + 1, KM_SLEEP);
usr/src/uts/common/dtrace/dtrace.c
13216
ep = kmem_zalloc(sizeof (dtrace_ecbdesc_t), KM_SLEEP);
usr/src/uts/common/dtrace/dtrace.c
13618
dstate->dtds_percpu = kmem_cache_alloc(dtrace_state_cache, KM_SLEEP);
usr/src/uts/common/dtrace/dtrace.c
13816
state->dts_buffer = kmem_zalloc(bufsize, KM_SLEEP);
usr/src/uts/common/dtrace/dtrace.c
13817
state->dts_aggbuffer = kmem_zalloc(bufsize, KM_SLEEP);
usr/src/uts/common/dtrace/dtrace.c
15135
helper = kmem_zalloc(sizeof (dtrace_helper_action_t), KM_SLEEP);
usr/src/uts/common/dtrace/dtrace.c
15155
(helper->dtha_nactions = nactions), KM_SLEEP);
usr/src/uts/common/dtrace/dtrace.c
15269
hprov = kmem_zalloc(sizeof (dtrace_helper_provider_t), KM_SLEEP);
usr/src/uts/common/dtrace/dtrace.c
15291
sizeof (dtrace_helper_provider_t *), KM_SLEEP);
usr/src/uts/common/dtrace/dtrace.c
15648
help = kmem_zalloc(sizeof (dtrace_helpers_t), KM_SLEEP);
usr/src/uts/common/dtrace/dtrace.c
15650
DTRACE_NHELPER_ACTIONS, KM_SLEEP);
usr/src/uts/common/dtrace/dtrace.c
15789
KM_SLEEP);
usr/src/uts/common/dtrace/dtrace.c
15799
new->dtha_actions = kmem_alloc(sz, KM_SLEEP);
usr/src/uts/common/dtrace/dtrace.c
15827
sizeof (dtrace_helper_provider_t *), KM_SLEEP);
usr/src/uts/common/dtrace/dtrace.c
16087
range = kmem_zalloc(nsize, KM_SLEEP);
usr/src/uts/common/dtrace/dtrace.c
16338
kmem_zalloc(dtrace_helptrace_bufsize, KM_SLEEP);
usr/src/uts/common/dtrace/dtrace.c
16565
buf = kmem_alloc(size, KM_SLEEP);
usr/src/uts/common/dtrace/dtrace.c
16656
buf = kmem_alloc(size, KM_SLEEP);
usr/src/uts/common/dtrace/dtrace.c
7557
dtrace_hash_t *hash = kmem_zalloc(sizeof (dtrace_hash_t), KM_SLEEP);
usr/src/uts/common/dtrace/dtrace.c
7567
sizeof (dtrace_hashbucket_t *), KM_SLEEP);
usr/src/uts/common/dtrace/dtrace.c
7597
new_tab = kmem_zalloc(new_size * sizeof (void *), KM_SLEEP);
usr/src/uts/common/dtrace/dtrace.c
7637
bucket = kmem_zalloc(sizeof (dtrace_hashbucket_t), KM_SLEEP);
usr/src/uts/common/dtrace/dtrace.c
7760
char *new = kmem_zalloc((str != NULL ? strlen(str) : 0) + 1, KM_SLEEP);
usr/src/uts/common/dtrace/dtrace.c
8291
provider = kmem_zalloc(sizeof (dtrace_provider_t), KM_SLEEP);
usr/src/uts/common/dtrace/dtrace.c
8292
provider->dtpv_name = kmem_alloc(strlen(name) + 1, KM_SLEEP);
usr/src/uts/common/dtrace/dtrace.c
8653
probe = kmem_zalloc(sizeof (dtrace_probe_t), KM_SLEEP);
usr/src/uts/common/dtrace/dtrace.c
8678
probes = kmem_zalloc(nsize, KM_SLEEP);
usr/src/uts/common/dtrace/dtrace.c
9149
meta = kmem_zalloc(sizeof (dtrace_meta_t), KM_SLEEP);
usr/src/uts/common/dtrace/dtrace.c
9151
meta->dtm_name = kmem_alloc(strlen(name) + 1, KM_SLEEP);
usr/src/uts/common/dtrace/fasttrap.c
1209
new_fprc = kmem_zalloc(sizeof (fasttrap_proc_t), KM_SLEEP);
usr/src/uts/common/dtrace/fasttrap.c
1364
new_fp = kmem_zalloc(sizeof (fasttrap_provider_t), KM_SLEEP);
usr/src/uts/common/dtrace/fasttrap.c
1615
pp = kmem_zalloc(sizeof (fasttrap_probe_t), KM_SLEEP);
usr/src/uts/common/dtrace/fasttrap.c
1624
KM_SLEEP);
usr/src/uts/common/dtrace/fasttrap.c
1665
ftp_tps[pdata->ftps_noffs]), KM_SLEEP);
usr/src/uts/common/dtrace/fasttrap.c
1675
KM_SLEEP);
usr/src/uts/common/dtrace/fasttrap.c
1845
pp = kmem_zalloc(offsetof(fasttrap_probe_t, ftp_tps[ntps]), KM_SLEEP);
usr/src/uts/common/dtrace/fasttrap.c
1858
tp = kmem_zalloc(sizeof (fasttrap_tracepoint_t), KM_SLEEP);
usr/src/uts/common/dtrace/fasttrap.c
1877
tp = kmem_zalloc(sizeof (fasttrap_tracepoint_t), KM_SLEEP);
usr/src/uts/common/dtrace/fasttrap.c
1963
probe = kmem_alloc(size, KM_SLEEP);
usr/src/uts/common/dtrace/fasttrap.c
2172
sizeof (fasttrap_bucket_t), KM_SLEEP);
usr/src/uts/common/dtrace/fasttrap.c
2185
sizeof (fasttrap_bucket_t), KM_SLEEP);
usr/src/uts/common/dtrace/fasttrap.c
2198
sizeof (fasttrap_bucket_t), KM_SLEEP);
usr/src/uts/common/dtrace/fasttrap.c
234
sigqueue_t *sqp = kmem_zalloc(sizeof (sigqueue_t), KM_SLEEP);
usr/src/uts/common/dtrace/profile.c
180
prof = kmem_zalloc(sizeof (profile_probe_t), KM_SLEEP);
usr/src/uts/common/dtrace/profile.c
341
pcpu = kmem_zalloc(sizeof (profile_probe_percpu_t), KM_SLEEP);
usr/src/uts/common/dtrace/systrace.c
59
NSYSCALL, KM_SLEEP);
usr/src/uts/common/exec/elf/elf.c
1211
*phbasep = kmem_alloc(*phsizep, KM_SLEEP);
usr/src/uts/common/exec/elf/elf.c
1255
*shbasep = kmem_alloc(*shsizep, KM_SLEEP);
usr/src/uts/common/exec/elf/elf.c
1282
*shstrbasep = kmem_alloc(*shstrsizep, KM_SLEEP);
usr/src/uts/common/exec/elf/elf.c
1414
cons = kmem_zalloc(sizeof (Phdr), KM_SLEEP);
usr/src/uts/common/exec/elf/elf.c
177
ctx->ecc_buf = kmem_alloc(target, KM_SLEEP);
usr/src/uts/common/exec/elf/elf.c
2143
bigwad = kmem_alloc(bigsize, KM_SLEEP);
usr/src/uts/common/exec/elf/elf.c
2416
zeropg = kmem_zalloc(elf_zeropg_sz, KM_SLEEP);
usr/src/uts/common/exec/elf/elf.c
318
bigwad = kmem_alloc(sizeof (struct bigwad), KM_SLEEP);
usr/src/uts/common/exec/elf/elf.c
541
dyn = kmem_alloc(dynsize, KM_SLEEP);
usr/src/uts/common/exec/elf/elf.c
577
cap = kmem_alloc(capsize, KM_SLEEP);
usr/src/uts/common/exec/elf/elf_notes.c
122
pcrp = kmem_zalloc(size, KM_SLEEP);
usr/src/uts/common/exec/elf/elf_notes.c
270
bigwad = kmem_alloc(bigsize, KM_SLEEP);
usr/src/uts/common/exec/elf/elf_notes.c
506
ssd = kmem_alloc(ssdsize, KM_SLEEP);
usr/src/uts/common/exec/elf/old_notes.c
103
bigwad = kmem_alloc(bigsize, KM_SLEEP);
usr/src/uts/common/exec/intp/intp.c
217
idata.intp = kmem_alloc(INTPSZ, KM_SLEEP);
usr/src/uts/common/fs/autofs/auto_subr.c
1211
margs.optptr = kmem_alloc(MAX_MNTOPT_STR, KM_SLEEP);
usr/src/uts/common/fs/autofs/auto_subr.c
1396
fnp = kmem_zalloc(sizeof (*fnp), KM_SLEEP);
usr/src/uts/common/fs/autofs/auto_subr.c
1397
fnp->fn_vnode = vn_alloc(KM_SLEEP);
usr/src/uts/common/fs/autofs/auto_subr.c
1400
tmpname = kmem_alloc(strlen(name) + 1, KM_SLEEP);
usr/src/uts/common/fs/autofs/auto_subr.c
2584
p = buf = kmem_alloc(len, KM_SLEEP);
usr/src/uts/common/fs/autofs/auto_subr.c
306
argsp = kmem_alloc(sizeof (*argsp), KM_SLEEP);
usr/src/uts/common/fs/autofs/auto_subr.c
309
argsp->fnc_name = kmem_alloc(strlen(name) + 1, KM_SLEEP);
usr/src/uts/common/fs/autofs/auto_subr.c
405
xdr_argsp = kmem_zalloc(xdr_len + sizeof (*xdr_argsp), KM_SLEEP);
usr/src/uts/common/fs/autofs/auto_subr.c
431
orp = kmem_zalloc(orl, KM_SLEEP);
usr/src/uts/common/fs/autofs/auto_subr.c
490
orp = kmem_zalloc(nl, KM_SLEEP);
usr/src/uts/common/fs/autofs/auto_subr.c
662
resp = kmem_zalloc(sizeof (*resp), KM_SLEEP);
usr/src/uts/common/fs/autofs/auto_subr.c
688
KM_SLEEP);
usr/src/uts/common/fs/autofs/auto_subr.c
691
KM_SLEEP);
usr/src/uts/common/fs/autofs/auto_subr.c
760
xdrres = kmem_zalloc(sizeof (*xdrres), KM_SLEEP);
usr/src/uts/common/fs/autofs/auto_subr.c
840
tmp = kmem_zalloc(len, KM_SLEEP);
usr/src/uts/common/fs/autofs/auto_vfsops.c
224
fngp = kmem_zalloc(sizeof (*fngp), KM_SLEEP);
usr/src/uts/common/fs/autofs/auto_vfsops.c
469
fnip->fi_opts = kmem_alloc(len, KM_SLEEP);
usr/src/uts/common/fs/autofs/auto_vfsops.c
486
fnip->fi_map = kmem_alloc(len, KM_SLEEP);
usr/src/uts/common/fs/autofs/auto_vfsops.c
496
fnip = kmem_zalloc(sizeof (*fnip), KM_SLEEP);
usr/src/uts/common/fs/autofs/auto_vfsops.c
524
fnip->fi_addr.buf = kmem_alloc(args.addr.len, KM_SLEEP);
usr/src/uts/common/fs/autofs/auto_vfsops.c
546
fnip->fi_path = kmem_alloc(len, KM_SLEEP);
usr/src/uts/common/fs/autofs/auto_vfsops.c
563
fnip->fi_opts = kmem_alloc(len, KM_SLEEP);
usr/src/uts/common/fs/autofs/auto_vfsops.c
578
fnip->fi_map = kmem_alloc(len, KM_SLEEP);
usr/src/uts/common/fs/autofs/auto_vfsops.c
593
fnip->fi_subdir = kmem_alloc(len, KM_SLEEP);
usr/src/uts/common/fs/autofs/auto_vfsops.c
608
fnip->fi_key = kmem_alloc(len, KM_SLEEP);
usr/src/uts/common/fs/autofs/auto_vnops.c
984
dp = outbuf = kmem_zalloc(alloc_count, KM_SLEEP);
usr/src/uts/common/fs/autofs/auto_xdr.c
202
p->next = kmem_zalloc(sizeof (action_list), KM_SLEEP);
usr/src/uts/common/fs/bootfs/bootfs_construct.c
124
bnp->bvn_name = kmem_alloc(namelen + 1, KM_SLEEP);
usr/src/uts/common/fs/bootfs/bootfs_construct.c
151
bnp = kmem_cache_alloc(bootfs_node_cache, KM_SLEEP);
usr/src/uts/common/fs/bootfs/bootfs_construct.c
171
buf = kmem_alloc(namelen + 1, KM_SLEEP);
usr/src/uts/common/fs/bootfs/bootfs_construct.c
186
bnp = kmem_cache_alloc(bootfs_node_cache, KM_SLEEP);
usr/src/uts/common/fs/bootfs/bootfs_vfsops.c
130
bfs->bfs_mntpath = kmem_alloc(dpn.pn_pathlen + 1, KM_SLEEP);
usr/src/uts/common/fs/bootfs/bootfs_vnops.c
237
buf = kmem_alloc(bsize, KM_SLEEP);
usr/src/uts/common/fs/ctfs/ctfs_ctl.c
303
VERIFY(nvlist_alloc(&foo, NV_UNIQUE_NAME, KM_SLEEP) == 0);
usr/src/uts/common/fs/ctfs/ctfs_ctl.c
307
KM_SLEEP) == 0);
usr/src/uts/common/fs/ctfs/ctfs_root.c
234
data = kmem_alloc(sizeof (ctfs_vfs_t), KM_SLEEP);
usr/src/uts/common/fs/ctfs/ctfs_root.c
252
dirent = kmem_zalloc((ct_ntypes + 2) * sizeof (gfs_dirent_t), KM_SLEEP);
usr/src/uts/common/fs/ctfs/ctfs_sym.c
68
symnode->ctfs_sn_string = kmem_alloc(len, KM_SLEEP);
usr/src/uts/common/fs/dcfs/dc_vnops.c
441
saddr = kmem_cache_alloc(dp->dc_bufcache, KM_SLEEP);
usr/src/uts/common/fs/dcfs/dc_vnops.c
821
dp = kmem_cache_alloc(dcnode_cache, KM_SLEEP);
usr/src/uts/common/fs/dcfs/dc_vnops.c
964
hdr = kmem_alloc(hdrsize, KM_SLEEP);
usr/src/uts/common/fs/dev/sdev_comm.c
413
argp = kmem_zalloc(sizeof (sdev_door_arg_t), KM_SLEEP);
usr/src/uts/common/fs/dev/sdev_comm.c
457
strbuf = kmem_zalloc(MOD_MAXPATH, KM_SLEEP);
usr/src/uts/common/fs/dev/sdev_comm.c
466
namep = i_ddi_strdup(strbuf, KM_SLEEP);
usr/src/uts/common/fs/dev/sdev_ncache.c
245
np = kmem_zalloc(sizeof (nvp_devname_t), KM_SLEEP);
usr/src/uts/common/fs/dev/sdev_ncache.c
255
np->nvp_paths = kmem_zalloc(nstrs * sizeof (char *), KM_SLEEP);
usr/src/uts/common/fs/dev/sdev_ncache.c
257
np->nvp_paths[i] = i_ddi_strdup(strs[i], KM_SLEEP);
usr/src/uts/common/fs/dev/sdev_ncache.c
259
np->nvp_expirecnts = kmem_zalloc(nstrs * sizeof (int), KM_SLEEP);
usr/src/uts/common/fs/dev/sdev_ncache.c
295
rval = nvlist_alloc(&nvl, NV_UNIQUE_NAME, KM_SLEEP);
usr/src/uts/common/fs/dev/sdev_ncache.c
306
rval = nvlist_alloc(&sub_nvl, NV_UNIQUE_NAME, KM_SLEEP);
usr/src/uts/common/fs/dev/sdev_ncache.c
378
KM_SLEEP);
usr/src/uts/common/fs/dev/sdev_ncache.c
379
lp->ncn_name = kmem_alloc(n, KM_SLEEP);
usr/src/uts/common/fs/dev/sdev_ncache.c
449
np = kmem_zalloc(sizeof (nvp_devname_t), KM_SLEEP);
usr/src/uts/common/fs/dev/sdev_ncache.c
451
np->nvp_paths = kmem_zalloc(n * sizeof (char *), KM_SLEEP);
usr/src/uts/common/fs/dev/sdev_ncache.c
452
np->nvp_expirecnts = kmem_zalloc(n * sizeof (int), KM_SLEEP);
usr/src/uts/common/fs/dev/sdev_ncache.c
457
np->nvp_paths[i] = i_ddi_strdup(lp->ncn_name, KM_SLEEP);
usr/src/uts/common/fs/dev/sdev_ncache.c
671
path = kmem_alloc(n, KM_SLEEP);
usr/src/uts/common/fs/dev/sdev_ncache.c
731
ncl = kmem_zalloc(sizeof (sdev_nc_list_t), KM_SLEEP);
usr/src/uts/common/fs/dev/sdev_ncache.c
826
lp = kmem_zalloc(sizeof (sdev_nc_node_t), KM_SLEEP);
usr/src/uts/common/fs/dev/sdev_ncache.c
829
lp->ncn_name = kmem_alloc(n, KM_SLEEP);
usr/src/uts/common/fs/dev/sdev_plugin.c
520
new = kmem_alloc(sdev_vnodeops_tbl_size, KM_SLEEP);
usr/src/uts/common/fs/dev/sdev_plugin.c
588
spp = kmem_cache_alloc(sdev_plugin_cache, KM_SLEEP);
usr/src/uts/common/fs/dev/sdev_plugin.c
747
spp = kmem_cache_alloc(sdev_plugin_cache, KM_SLEEP);
usr/src/uts/common/fs/dev/sdev_profile.c
405
marg.expr = kmem_alloc(MAXNAMELEN, KM_SLEEP);
usr/src/uts/common/fs/dev/sdev_profile.c
487
dbuf = kmem_zalloc(dlen, KM_SLEEP);
usr/src/uts/common/fs/dev/sdev_profile.c
810
error = nvlist_alloc(nvlp, NV_UNIQUE_NAME, KM_SLEEP);
usr/src/uts/common/fs/dev/sdev_profile.c
858
name = kmem_alloc(MAXPATHLEN, KM_SLEEP);
usr/src/uts/common/fs/dev/sdev_subr.c
1059
link = i_ddi_strdup(odv->sdev_symlink, KM_SLEEP);
usr/src/uts/common/fs/dev/sdev_subr.c
1320
dbuf = kmem_zalloc(dlen, KM_SLEEP);
usr/src/uts/common/fs/dev/sdev_subr.c
1649
physpath = kmem_zalloc(MAXPATHLEN, KM_SLEEP);
usr/src/uts/common/fs/dev/sdev_subr.c
2196
bks_name = kmem_alloc(len, KM_SLEEP);
usr/src/uts/common/fs/dev/sdev_subr.c
2335
dp = outbuf = kmem_alloc(alloc_count, KM_SLEEP);
usr/src/uts/common/fs/dev/sdev_subr.c
2542
nm = kmem_alloc(MAXNAMELEN, KM_SLEEP);
usr/src/uts/common/fs/dev/sdev_subr.c
2709
dbuf = kmem_alloc(dlen, KM_SLEEP);
usr/src/uts/common/fs/dev/sdev_subr.c
2746
sizeof (char *), KM_SLEEP);
usr/src/uts/common/fs/dev/sdev_subr.c
2756
s = kmem_alloc(n, KM_SLEEP);
usr/src/uts/common/fs/dev/sdev_subr.c
279
dv->sdev_attr = kmem_zalloc(sizeof (struct vattr), KM_SLEEP);
usr/src/uts/common/fs/dev/sdev_subr.c
301
dv = kmem_cache_alloc(sdev_node_cache, KM_SLEEP);
usr/src/uts/common/fs/dev/sdev_subr.c
303
dv->sdev_name = kmem_alloc(nmlen, KM_SLEEP);
usr/src/uts/common/fs/dev/sdev_subr.c
307
dv->sdev_path = kmem_alloc(len, KM_SLEEP);
usr/src/uts/common/fs/dev/sdev_subr.c
396
dv->sdev_symlink = i_ddi_strdup((char *)args, KM_SLEEP);
usr/src/uts/common/fs/dev/sdev_subr.c
448
dv = kmem_cache_alloc(sdev_node_cache, KM_SLEEP);
usr/src/uts/common/fs/dev/sdev_subr.c
460
(char *)refstr_value(vfsp->vfs_mntpt), KM_SLEEP);
usr/src/uts/common/fs/dev/sdev_subr.c
463
dv->sdev_name = i_ddi_strdup("/dev", KM_SLEEP);
usr/src/uts/common/fs/dev/sdev_subr.c
465
dv->sdev_path = i_ddi_strdup(devdir, KM_SLEEP);
usr/src/uts/common/fs/dev/sdev_subr.c
566
buf = kmem_zalloc(MAXPATHLEN, KM_SLEEP);
usr/src/uts/common/fs/dev/sdev_subr.c
583
*link = i_ddi_strdup(buf, KM_SLEEP);
usr/src/uts/common/fs/dev/sdev_vfsops.c
231
args = kmem_zalloc(sizeof (*args), KM_SLEEP);
usr/src/uts/common/fs/dev/sdev_vfsops.c
332
sdev_data = kmem_zalloc(sizeof (struct sdev_data), KM_SLEEP);
usr/src/uts/common/fs/dev/sdev_vtops.c
118
char *link = kmem_zalloc(MAXPATHLEN, KM_SLEEP);
usr/src/uts/common/fs/dev/sdev_vtops.c
127
char *link = kmem_zalloc(MAXPATHLEN, KM_SLEEP);
usr/src/uts/common/fs/dev/sdev_vtops.c
264
char *link = kmem_zalloc(MAXPATHLEN, KM_SLEEP);
usr/src/uts/common/fs/dev/sdev_vtops.c
296
link = kmem_zalloc(MAXPATHLEN, KM_SLEEP);
usr/src/uts/common/fs/dev/sdev_zvolops.c
157
KM_SLEEP);
usr/src/uts/common/fs/dev/sdev_zvolops.c
195
zc = kmem_zalloc(sizeof (zfs_cmd_t), KM_SLEEP);
usr/src/uts/common/fs/dev/sdev_zvolops.c
252
dsname = kmem_zalloc(dslen, KM_SLEEP);
usr/src/uts/common/fs/dev/sdev_zvolops.c
383
zc = kmem_zalloc(sizeof (zfs_cmd_t), KM_SLEEP);
usr/src/uts/common/fs/dev/sdev_zvolops.c
854
zc = kmem_zalloc(sizeof (zfs_cmd_t), KM_SLEEP);
usr/src/uts/common/fs/devfs/devfs_subr.c
1107
char *curr = kmem_alloc(MAXPATHLEN, KM_SLEEP);
usr/src/uts/common/fs/devfs/devfs_subr.c
1159
dmd = kmem_zalloc(sizeof (*dmd), KM_SLEEP);
usr/src/uts/common/fs/devfs/devfs_subr.c
1642
dbuf = kmem_alloc(dlen, KM_SLEEP);
usr/src/uts/common/fs/devfs/devfs_subr.c
1752
nm = kmem_alloc(MAXNAMELEN, KM_SLEEP);
usr/src/uts/common/fs/devfs/devfs_subr.c
1782
dbuf = kmem_alloc(dlen, KM_SLEEP);
usr/src/uts/common/fs/devfs/devfs_subr.c
1906
next = kmem_zalloc(sizeof (*next), KM_SLEEP);
usr/src/uts/common/fs/devfs/devfs_subr.c
294
dv = kmem_cache_alloc(dv_node_cache, KM_SLEEP);
usr/src/uts/common/fs/devfs/devfs_subr.c
344
dv = kmem_cache_alloc(dv_node_cache, KM_SLEEP);
usr/src/uts/common/fs/devfs/devfs_subr.c
346
dv->dv_name = kmem_alloc(nmlen, KM_SLEEP);
usr/src/uts/common/fs/devfs/devfs_subr.c
395
dv = kmem_cache_alloc(dv_node_cache, KM_SLEEP);
usr/src/uts/common/fs/devfs/devfs_subr.c
397
dv->dv_name = kmem_alloc(nmlen, KM_SLEEP);
usr/src/uts/common/fs/devfs/devfs_subr.c
828
dv->dv_attr = kmem_alloc(sizeof (struct vattr), KM_SLEEP);
usr/src/uts/common/fs/devfs/devfs_subr.c
910
devnm = kmem_alloc(MAXNAMELEN, KM_SLEEP);
usr/src/uts/common/fs/devfs/devfs_subr.c
912
dmd = kmem_zalloc(sizeof (*dmd), KM_SLEEP);
usr/src/uts/common/fs/devfs/devfs_vfsops.c
216
devfs_data = kmem_zalloc(sizeof (struct devfs_data), KM_SLEEP);
usr/src/uts/common/fs/devfs/devfs_vfsops.c
330
dirpath = kmem_alloc(MAXPATHLEN, KM_SLEEP);
usr/src/uts/common/fs/devfs/devfs_vfsops.c
513
dirpath = kmem_alloc(MAXPATHLEN, KM_SLEEP);
usr/src/uts/common/fs/devfs/devfs_vnops.c
305
sizeof (struct vattr), KM_SLEEP);
usr/src/uts/common/fs/devfs/devfs_vnops.c
412
vattrp = kmem_zalloc(sizeof (*vattrp), KM_SLEEP);
usr/src/uts/common/fs/devfs/devfs_vnops.c
918
de = bufp = kmem_alloc(bufsz, KM_SLEEP);
usr/src/uts/common/fs/dnlc.c
378
nc_hash = kmem_zalloc(nc_hashsz * sizeof (*nc_hash), KM_SLEEP);
usr/src/uts/common/fs/doorfs/door_sys.c
1270
start = kmem_alloc(descsize, KM_SLEEP);
usr/src/uts/common/fs/doorfs/door_sys.c
2135
kmem_zalloc(sizeof (door_data_t), KM_SLEEP);
usr/src/uts/common/fs/doorfs/door_sys.c
2383
start = didpp = kmem_alloc(ds, KM_SLEEP);
usr/src/uts/common/fs/doorfs/door_sys.c
2396
ct->d_fpp = kmem_alloc(ct->d_fpp_size, KM_SLEEP);
usr/src/uts/common/fs/doorfs/door_sys.c
2477
ct->d_buf = kmem_alloc(ct->d_bufsize, KM_SLEEP);
usr/src/uts/common/fs/doorfs/door_sys.c
2548
start = didpp = kmem_alloc(dsize, KM_SLEEP);
usr/src/uts/common/fs/doorfs/door_sys.c
2555
ct->d_fpp = kmem_alloc(ct->d_fpp_size, KM_SLEEP);
usr/src/uts/common/fs/doorfs/door_sys.c
2619
start = didpp = kmem_alloc(dsize, KM_SLEEP);
usr/src/uts/common/fs/doorfs/door_sys.c
2691
fpp = ct->d_fpp = kmem_alloc(ct->d_fpp_size, KM_SLEEP);
usr/src/uts/common/fs/doorfs/door_sys.c
2789
ct->d_args.rbuf = kmem_alloc(result_size, KM_SLEEP);
usr/src/uts/common/fs/doorfs/door_sys.c
2806
ct->d_buf = kmem_alloc(ct->d_bufsize, KM_SLEEP);
usr/src/uts/common/fs/doorfs/door_sys.c
2810
ct->d_buf = kmem_alloc(ct->d_bufsize, KM_SLEEP);
usr/src/uts/common/fs/doorfs/door_sys.c
2857
start = didpp = kmem_alloc(dsize, KM_SLEEP);
usr/src/uts/common/fs/doorfs/door_sys.c
2868
ct->d_fpp = kmem_alloc(fpp_size, KM_SLEEP);
usr/src/uts/common/fs/doorfs/door_sys.c
2966
didpp = kmem_alloc(dsize, KM_SLEEP);
usr/src/uts/common/fs/doorfs/door_sys.c
3122
dup = kmem_zalloc(sizeof (*dup), KM_SLEEP);
usr/src/uts/common/fs/doorfs/door_sys.c
366
ddp = curthread->t_door = kmem_zalloc(sizeof (*ddp), KM_SLEEP);
usr/src/uts/common/fs/doorfs/door_sys.c
427
dp = kmem_zalloc(sizeof (door_node_t), KM_SLEEP);
usr/src/uts/common/fs/doorfs/door_sys.c
429
dp->door_vnode = vn_alloc(KM_SLEEP);
usr/src/uts/common/fs/doorfs/door_sys.c
855
start = didpp = kmem_alloc(dsize, KM_SLEEP);
usr/src/uts/common/fs/fd/fdops.c
349
vp = vn_alloc(KM_SLEEP);
usr/src/uts/common/fs/fd/fdops.c
390
vp = vn_alloc(KM_SLEEP);
usr/src/uts/common/fs/fdbuffer.c
102
fdb = kmem_cache_alloc(fdb_cache, KM_SLEEP);
usr/src/uts/common/fs/fdbuffer.c
130
fdb = kmem_cache_alloc(fdb_cache, KM_SLEEP);
usr/src/uts/common/fs/fdbuffer.c
226
this_hole = kmem_alloc(sizeof (fdb_holes_t), KM_SLEEP);
usr/src/uts/common/fs/fdbuffer.c
392
bp = kmem_alloc(sizeof (buf_t), KM_SLEEP);
usr/src/uts/common/fs/fdbuffer.c
412
NULL, KM_SLEEP);
usr/src/uts/common/fs/fem.c
2920
head = kmem_alloc(sizeof (*head), KM_SLEEP);
usr/src/uts/common/fs/fem.c
2947
sp = kmem_alloc(fl_ntob(numnodes), KM_SLEEP);
usr/src/uts/common/fs/fem.c
301
p = (fem_t *)kmem_alloc(sizeof (*p), KM_SLEEP);
usr/src/uts/common/fs/fem.c
316
p = (fsem_t *)kmem_alloc(sizeof (*p), KM_SLEEP);
usr/src/uts/common/fs/fifofs/fifosubr.c
399
fdp = kmem_cache_alloc(fnode_cache, KM_SLEEP);
usr/src/uts/common/fs/fifofs/fifosubr.c
505
fdp = kmem_cache_alloc(pipe_cache, KM_SLEEP);
usr/src/uts/common/fs/fs_subr.c
1072
vfs_t *vfsp = kmem_zalloc(sizeof (struct vfs), KM_SLEEP);
usr/src/uts/common/fs/fs_subr.c
633
vsecattr->vsa_aclentp = kmem_zalloc(aclsize, KM_SLEEP);
usr/src/uts/common/fs/fs_subr.c
889
lkdata = kmem_alloc(MAXREPARSELEN, KM_SLEEP);
usr/src/uts/common/fs/fs_subr.c
977
darg = kmem_alloc(dlen, KM_SLEEP);
usr/src/uts/common/fs/gfs.c
242
st->grd_dirent = kmem_zalloc(dirent_size, KM_SLEEP);
usr/src/uts/common/fs/gfs.c
466
fp = kmem_zalloc(size, KM_SLEEP);
usr/src/uts/common/fs/gfs.c
467
vp = vn_alloc(KM_SLEEP);
usr/src/uts/common/fs/gfs.c
536
dp->gfsd_nstatic * sizeof (gfs_dirent_t), KM_SLEEP);
usr/src/uts/common/fs/hsfs/hsfs_node.c
1481
rrip_name_str = kmem_alloc(rrip_name_size, KM_SLEEP);
usr/src/uts/common/fs/hsfs/hsfs_node.c
1482
rrip_tmp_name = kmem_alloc(rrip_name_size, KM_SLEEP);
usr/src/uts/common/fs/hsfs/hsfs_node.c
294
hp = kmem_cache_alloc(hsnode_cache, KM_SLEEP);
usr/src/uts/common/fs/hsfs/hsfs_node.c
297
hp->hs_vnode = vn_alloc(KM_SLEEP);
usr/src/uts/common/fs/hsfs/hsfs_node.c
806
cmpname = kmem_alloc((size_t)cmpname_size, KM_SLEEP);
usr/src/uts/common/fs/hsfs/hsfs_rrip.c
355
sym_link = kmem_alloc(MAXPATHLEN + 1, KM_SLEEP);
usr/src/uts/common/fs/hsfs/hsfs_rrip.c
409
tmp_sym_link = kmem_alloc(SYM_LINK_LEN(sym_link), KM_SLEEP);
usr/src/uts/common/fs/hsfs/hsfs_subr.c
407
ksp->ks_data = kmem_alloc(sizeof (kstat_named_t) * size, KM_SLEEP);
usr/src/uts/common/fs/hsfs/hsfs_susp_subr.c
489
*buf_pp = kmem_alloc((size_t)HS_SECTOR_SIZE, KM_SLEEP);
usr/src/uts/common/fs/hsfs/hsfs_vfsops.c
661
fsp = kmem_zalloc(sizeof (*fsp), KM_SLEEP);
usr/src/uts/common/fs/hsfs/hsfs_vfsops.c
662
svp = kmem_zalloc(sizeof (*svp), KM_SLEEP);
usr/src/uts/common/fs/hsfs/hsfs_vfsops.c
663
jvp = kmem_zalloc(sizeof (*jvp), KM_SLEEP);
usr/src/uts/common/fs/hsfs/hsfs_vfsops.c
728
fsp->hsfs_fsmnt = kmem_alloc(pathbufsz, KM_SLEEP);
usr/src/uts/common/fs/hsfs/hsfs_vfsops.c
916
fsp->hqueue = kmem_alloc(sizeof (struct hsfs_queue), KM_SLEEP);
usr/src/uts/common/fs/hsfs/hsfs_vnops.c
1170
bufs = kmem_zalloc(bufcnt * sizeof (struct buf), KM_SLEEP);
usr/src/uts/common/fs/hsfs/hsfs_vnops.c
1171
vas = kmem_alloc(bufcnt * sizeof (caddr_t), KM_SLEEP);
usr/src/uts/common/fs/hsfs/hsfs_vnops.c
1179
KM_SLEEP);
usr/src/uts/common/fs/hsfs/hsfs_vnops.c
1305
KM_SLEEP);
usr/src/uts/common/fs/hsfs/hsfs_vnops.c
1908
hqueue->nbuf = kmem_zalloc(sizeof (struct buf), KM_SLEEP);
usr/src/uts/common/fs/hsfs/hsfs_vnops.c
2103
iodata = kmem_alloc(bsize, KM_SLEEP);
usr/src/uts/common/fs/hsfs/hsfs_vnops.c
2124
prev->contig_chain = kmem_cache_alloc(hio_cache, KM_SLEEP);
usr/src/uts/common/fs/hsfs/hsfs_vnops.c
441
dname = kmem_alloc(dname_size, KM_SLEEP);
usr/src/uts/common/fs/hsfs/hsfs_vnops.c
444
outbuf = kmem_alloc(bufsize, KM_SLEEP);
usr/src/uts/common/fs/hsfs/hsfs_vnops.c
814
bufs = kmem_alloc(bufcnt * sizeof (struct buf), KM_SLEEP);
usr/src/uts/common/fs/hsfs/hsfs_vnops.c
815
vas = kmem_alloc(bufcnt * sizeof (caddr_t), KM_SLEEP);
usr/src/uts/common/fs/hsfs/hsfs_vnops.c
821
fio_done = kmem_alloc(bufcnt * sizeof (ksema_t), KM_SLEEP);
usr/src/uts/common/fs/hsfs/hsfs_vnops.c
926
KM_SLEEP);
usr/src/uts/common/fs/hsfs/hsfs_vnops.c
951
info = kmem_cache_alloc(hio_info_cache, KM_SLEEP);
usr/src/uts/common/fs/hsfs/hsfs_vnops.c
961
hsfs_ra_task, info, KM_SLEEP);
usr/src/uts/common/fs/lofs/lofs_subr.c
202
KM_SLEEP);
usr/src/uts/common/fs/lofs/lofs_subr.c
276
tlp = kmem_cache_alloc(lnode_cache, KM_SLEEP);
usr/src/uts/common/fs/lofs/lofs_subr.c
279
nvp = vn_alloc(KM_SLEEP);
usr/src/uts/common/fs/lofs/lofs_subr.c
331
lfs = kmem_zalloc(sizeof (*lfs), KM_SLEEP);
usr/src/uts/common/fs/lofs/lofs_subr.c
504
lrhp = kmem_alloc(sizeof (*lrhp), KM_SLEEP);
usr/src/uts/common/fs/lofs/lofs_vfsops.c
313
li = kmem_zalloc(sizeof (struct loinfo), KM_SLEEP);
usr/src/uts/common/fs/lookup.c
1139
dbuf = kmem_alloc(dlen, KM_SLEEP);
usr/src/uts/common/fs/lookup.c
1268
dw_entry = kmem_alloc(sizeof (*dw_entry), KM_SLEEP);
usr/src/uts/common/fs/lookup.c
1269
dw_entry->dw_name = kmem_alloc(complen + 1, KM_SLEEP);
usr/src/uts/common/fs/mntfs/mntvfsops.c
121
mnp->mnt_vnode = vn_alloc(KM_SLEEP);
usr/src/uts/common/fs/mntfs/mntvfsops.c
206
mnt = kmem_zalloc(sizeof (*mnt), KM_SLEEP);
usr/src/uts/common/fs/mntfs/mntvnops.c
1139
mnp = kmem_zalloc(sizeof (mntnode_t), KM_SLEEP);
usr/src/uts/common/fs/mntfs/mntvnops.c
1140
mnp->mnt_vnode = vn_alloc(KM_SLEEP);
usr/src/uts/common/fs/mntfs/mntvnops.c
1336
newpath = kmem_alloc(elemp->mnte_text_size, KM_SLEEP);
usr/src/uts/common/fs/mntfs/mntvnops.c
1452
kbufp = kmem_alloc(dbbufsize, KM_SLEEP);
usr/src/uts/common/fs/mntfs/mntvnops.c
1523
devlist = kmem_alloc(len, KM_SLEEP);
usr/src/uts/common/fs/mntfs/mntvnops.c
1564
pbuf = kmem_alloc(MAXPATHLEN, KM_SLEEP);
usr/src/uts/common/fs/mntfs/mntvnops.c
1645
prefbuf = kmem_alloc(MNT_LINE_MAX, KM_SLEEP);
usr/src/uts/common/fs/mntfs/mntvnops.c
451
copyp = kmem_zalloc(sizeof (mntelem_t), KM_SLEEP);
usr/src/uts/common/fs/mntfs/mntvnops.c
454
copyp->mnte_text = kmem_alloc(copyp->mnte_text_size, KM_SLEEP);
usr/src/uts/common/fs/mntfs/mntvnops.c
567
tempelemp = kmem_alloc(sizeof (mntelem_t), KM_SLEEP);
usr/src/uts/common/fs/mntfs/mntvnops.c
569
tempelemp->mnte_text = kmem_alloc(entry_length, KM_SLEEP);
usr/src/uts/common/fs/mntfs/mntvnops.c
693
kmem_alloc(new_entry_length, KM_SLEEP);
usr/src/uts/common/fs/mntfs/mntvnops.c
960
bufferp = kmem_alloc(len, KM_SLEEP);
usr/src/uts/common/fs/namefs/namevfs.c
425
nodep = kmem_zalloc(sizeof (struct namenode), KM_SLEEP);
usr/src/uts/common/fs/namefs/namevfs.c
499
nodep->nm_vnode = vn_alloc(KM_SLEEP);
usr/src/uts/common/fs/namefs/namevfs.c
542
resource_name = kmem_alloc(RESOURCE_NAME_SZ, KM_SLEEP);
usr/src/uts/common/fs/namefs/namevfs.c
543
svfsp = kmem_alloc(sizeof (statvfs64_t), KM_SLEEP);
usr/src/uts/common/fs/namefs/namevno.c
115
newnamep = kmem_zalloc(sizeof (struct namenode), KM_SLEEP);
usr/src/uts/common/fs/namefs/namevno.c
116
newvp = vn_alloc(KM_SLEEP);
usr/src/uts/common/fs/nfs/nfs3_srv.c
1447
iovp = kmem_alloc(sizeof (*iovp) * iovcnt, KM_SLEEP);
usr/src/uts/common/fs/nfs/nfs3_srv.c
3251
data = kmem_alloc(count, KM_SLEEP);
usr/src/uts/common/fs/nfs/nfs3_srv.c
3532
namlen = kmem_alloc(args->dircount, KM_SLEEP);
usr/src/uts/common/fs/nfs/nfs3_srv.c
3535
data = kmem_alloc(args->dircount, KM_SLEEP);
usr/src/uts/common/fs/nfs/nfs3_srv.c
3665
infop = kmem_alloc(nents * sizeof (struct entryplus3_info), KM_SLEEP);
usr/src/uts/common/fs/nfs/nfs3_srv.c
4406
ns = kmem_zalloc(sizeof (*ns), KM_SLEEP);
usr/src/uts/common/fs/nfs/nfs3_srv.c
841
data = kmem_alloc(MAXPATHLEN + 1, KM_SLEEP);
usr/src/uts/common/fs/nfs/nfs3_vfsops.c
1034
mi = kmem_zalloc(sizeof (*mi), KM_SLEEP);
usr/src/uts/common/fs/nfs/nfs3_vfsops.c
1699
svp = kmem_zalloc(sizeof (*svp), KM_SLEEP);
usr/src/uts/common/fs/nfs/nfs3_vfsops.c
1700
svp->sv_knconf = kmem_zalloc(sizeof (*svp->sv_knconf), KM_SLEEP);
usr/src/uts/common/fs/nfs/nfs3_vfsops.c
1701
svp->sv_knconf->knc_protofmly = kmem_alloc(KNC_STRSIZE, KM_SLEEP);
usr/src/uts/common/fs/nfs/nfs3_vfsops.c
1702
svp->sv_knconf->knc_proto = kmem_alloc(KNC_STRSIZE, KM_SLEEP);
usr/src/uts/common/fs/nfs/nfs3_vfsops.c
1729
svp->sv_hostname = kmem_alloc(svp->sv_hostnamelen, KM_SLEEP);
usr/src/uts/common/fs/nfs/nfs3_vfsops.c
1735
svp->sv_secdata = kmem_alloc(sizeof (*svp->sv_secdata), KM_SLEEP);
usr/src/uts/common/fs/nfs/nfs3_vfsops.c
295
knconf = kmem_zalloc(sizeof (*knconf), KM_SLEEP);
usr/src/uts/common/fs/nfs/nfs3_vfsops.c
312
pf = kmem_alloc(KNC_STRSIZE, KM_SLEEP);
usr/src/uts/common/fs/nfs/nfs3_vfsops.c
313
p = kmem_alloc(KNC_STRSIZE, KM_SLEEP);
usr/src/uts/common/fs/nfs/nfs3_vfsops.c
345
nargs->addr = kmem_alloc(sizeof (struct netbuf), KM_SLEEP);
usr/src/uts/common/fs/nfs/nfs3_vfsops.c
348
addr.buf = kmem_alloc(addr.len, KM_SLEEP);
usr/src/uts/common/fs/nfs/nfs3_vfsops.c
375
nargs->hostname = kmem_zalloc(hlen, KM_SLEEP);
usr/src/uts/common/fs/nfs/nfs3_vfsops.c
402
syncaddr.buf = kmem_alloc(syncaddr.len, KM_SLEEP);
usr/src/uts/common/fs/nfs/nfs3_vfsops.c
410
nargs->syncaddr = kmem_alloc(sizeof (struct netbuf), KM_SLEEP);
usr/src/uts/common/fs/nfs/nfs3_vfsops.c
422
nargs->netname = kmem_zalloc(nlen, KM_SLEEP);
usr/src/uts/common/fs/nfs/nfs3_vfsops.c
518
args = kmem_alloc(sizeof (struct nfs_args), KM_SLEEP);
usr/src/uts/common/fs/nfs/nfs3_vfsops.c
524
fhandle = kmem_alloc(sizeof (nfs_fhandle), KM_SLEEP);
usr/src/uts/common/fs/nfs/nfs3_vfsops.c
623
svp = kmem_zalloc(sizeof (*svp), KM_SLEEP);
usr/src/uts/common/fs/nfs/nfs3_vfsops.c
681
svp->sv_hostname = kmem_zalloc(svp->sv_hostnamelen, KM_SLEEP);
usr/src/uts/common/fs/nfs/nfs3_vfsops.c
836
secdata = kmem_alloc(sizeof (*secdata), KM_SLEEP);
usr/src/uts/common/fs/nfs/nfs3_vfsops.c
839
data = kmem_alloc(sizeof (*data), KM_SLEEP);
usr/src/uts/common/fs/nfs/nfs3_vfsops.c
847
data->knconf = kmem_alloc(sizeof (*knconf), KM_SLEEP);
usr/src/uts/common/fs/nfs/nfs3_vfsops.c
849
pf = kmem_alloc(KNC_STRSIZE, KM_SLEEP);
usr/src/uts/common/fs/nfs/nfs3_vfsops.c
850
p = kmem_alloc(KNC_STRSIZE, KM_SLEEP);
usr/src/uts/common/fs/nfs/nfs3_vfsops.c
859
data->netname = kmem_alloc(nlen, KM_SLEEP);
usr/src/uts/common/fs/nfs/nfs3_vfsops.c
867
secdata = kmem_alloc(sizeof (*secdata), KM_SLEEP);
usr/src/uts/common/fs/nfs/nfs3_vnops.c
1715
res.resok.data = kmem_alloc(MAXPATHLEN, KM_SLEEP);
usr/src/uts/common/fs/nfs/nfs3_vnops.c
3971
nrdc = rddir_cache_alloc(KM_SLEEP);
usr/src/uts/common/fs/nfs/nfs3_vnops.c
4101
rdc->entries = rddir_cache_buf_alloc(rdc->buflen, KM_SLEEP);
usr/src/uts/common/fs/nfs/nfs3_vnops.c
4103
rdc->entries = kmem_alloc(rdc->buflen, KM_SLEEP);
usr/src/uts/common/fs/nfs/nfs3_vnops.c
4211
rdc->entries = rddir_cache_buf_alloc(rdc->buflen, KM_SLEEP);
usr/src/uts/common/fs/nfs/nfs3_vnops.c
4213
rdc->entries = kmem_alloc(rdc->buflen, KM_SLEEP);
usr/src/uts/common/fs/nfs/nfs3_vnops.c
5641
dmapp = kmem_alloc(sizeof (nfs_delmap_args_t), KM_SLEEP);
usr/src/uts/common/fs/nfs/nfs3_vnops.c
5654
AS_UNMAP_EVENT, addr, len, KM_SLEEP);
usr/src/uts/common/fs/nfs/nfs3_vnops.c
761
base = kmem_alloc(bufsize, KM_SLEEP);
usr/src/uts/common/fs/nfs/nfs3_xdr.c
288
bp = kmem_alloc(bufsize, KM_SLEEP);
usr/src/uts/common/fs/nfs/nfs3_xdr.c
423
ptr = buf = kmem_alloc(otw_len, KM_SLEEP);
usr/src/uts/common/fs/nfs/nfs4_acache.c
227
acache4 = kmem_alloc(acache4size * sizeof (*acache4), KM_SLEEP);
usr/src/uts/common/fs/nfs/nfs4_acl.c
1287
result = aent = kmem_alloc(resultcount * sizeof (aclent_t), KM_SLEEP);
usr/src/uts/common/fs/nfs/nfs4_acl.c
1409
normacl = kmem_cache_alloc(nfs4_ace4_list_cache, KM_SLEEP);
usr/src/uts/common/fs/nfs/nfs4_acl.c
1411
dfacl = kmem_cache_alloc(nfs4_ace4_list_cache, KM_SLEEP);
usr/src/uts/common/fs/nfs/nfs4_acl.c
1987
sizeof (ace_t), KM_SLEEP);
usr/src/uts/common/fs/nfs/nfs4_acl.c
2024
sizeof (nfsace4), KM_SLEEP);
usr/src/uts/common/fs/nfs/nfs4_acl.c
2094
KM_SLEEP);
usr/src/uts/common/fs/nfs/nfs4_acl.c
598
result = acep = kmem_zalloc(resultsize * sizeof (nfsace4), KM_SLEEP);
usr/src/uts/common/fs/nfs/nfs4_acl.c
865
sizeof (nfsace4), KM_SLEEP);
usr/src/uts/common/fs/nfs/nfs4_acl.c
960
rc = kmem_cache_alloc(nfs4_ace4vals_cache, KM_SLEEP);
usr/src/uts/common/fs/nfs/nfs4_attr.c
260
KM_SLEEP);
usr/src/uts/common/fs/nfs/nfs4_attr.c
405
fattrp->attrlist4 = xdr_attrs = kmem_alloc(xdr_size, KM_SLEEP);
usr/src/uts/common/fs/nfs/nfs4_callback.c
1005
addrmask.buf = kmem_alloc(addrmask.maxlen, KM_SLEEP);
usr/src/uts/common/fs/nfs/nfs4_callback.c
1078
ncg = kmem_zalloc(sizeof (*ncg), KM_SLEEP);
usr/src/uts/common/fs/nfs/nfs4_callback.c
1081
sizeof (struct nfs4_server *), KM_SLEEP);
usr/src/uts/common/fs/nfs/nfs4_callback.c
1256
sizeof (SVC_CALLOUT), KM_SLEEP);
usr/src/uts/common/fs/nfs/nfs4_callback.c
1722
pp = kmem_alloc(sizeof (struct cb_recall_pass), KM_SLEEP);
usr/src/uts/common/fs/nfs/nfs4_callback.c
1811
pp = kmem_alloc(sizeof (rpcprog_t), KM_SLEEP);
usr/src/uts/common/fs/nfs/nfs4_callback.c
2368
pp = kmem_alloc(sizeof (struct cb_recall_pass), KM_SLEEP);
usr/src/uts/common/fs/nfs/nfs4_callback.c
2476
dp = kmem_alloc(sizeof (*dp), KM_SLEEP);
usr/src/uts/common/fs/nfs/nfs4_callback.c
295
fdata = kmem_alloc(cb_getattr_bytes, KM_SLEEP);
usr/src/uts/common/fs/nfs/nfs4_callback.c
568
kmem_alloc(resp->tag.utf8string_len, KM_SLEEP);
usr/src/uts/common/fs/nfs/nfs4_callback.c
601
KM_SLEEP);
usr/src/uts/common/fs/nfs/nfs4_callback.c
647
(i+1) * sizeof (nfs_cb_resop4), KM_SLEEP);
usr/src/uts/common/fs/nfs/nfs4_callback.c
830
p = kmem_alloc(sizeof (*p), KM_SLEEP);
usr/src/uts/common/fs/nfs/nfs4_client.c
2144
args = kmem_alloc(sizeof (*args), KM_SLEEP);
usr/src/uts/common/fs/nfs/nfs4_client.c
2846
mig = kmem_alloc(sizeof (*mig), KM_SLEEP);
usr/src/uts/common/fs/nfs/nfs4_client.c
321
KM_SLEEP);
usr/src/uts/common/fs/nfs/nfs4_client.c
3726
nsfh = kmem_alloc(sizeof (nfs4_sharedfh_t), KM_SLEEP);
usr/src/uts/common/fs/nfs/nfs4_client.c
3733
nsfh->sfh_fh.nfs_fh4_val = kmem_alloc(NFS4_FHSIZE, KM_SLEEP);
usr/src/uts/common/fs/nfs/nfs4_client.c
4072
fnp = kmem_alloc(sizeof (nfs4_fname_t), KM_SLEEP);
usr/src/uts/common/fs/nfs/nfs4_client.c
4079
fnp->fn_name = kmem_alloc(fnp->fn_len + 1, KM_SLEEP);
usr/src/uts/common/fs/nfs/nfs4_client.c
4177
name = kmem_alloc(MAXNAMELEN, KM_SLEEP);
usr/src/uts/common/fs/nfs/nfs4_client.c
4205
news = kmem_alloc(len, KM_SLEEP);
usr/src/uts/common/fs/nfs/nfs4_client.c
4215
news = kmem_alloc(len, KM_SLEEP);
usr/src/uts/common/fs/nfs/nfs4_client.c
4325
fnp->fn_name = kmem_alloc(newlen + 1, KM_SLEEP);
usr/src/uts/common/fs/nfs/nfs4_client_debug.c
1375
msg = kmem_zalloc(sizeof (*msg), KM_SLEEP);
usr/src/uts/common/fs/nfs/nfs4_client_debug.c
1436
msg = kmem_zalloc(sizeof (*msg), KM_SLEEP);
usr/src/uts/common/fs/nfs/nfs4_client_debug.c
145
ep->re_char2 = kmem_alloc(len + 1, KM_SLEEP);
usr/src/uts/common/fs/nfs/nfs4_client_debug.c
199
ep->re_char1 = kmem_alloc(len + 1, KM_SLEEP);
usr/src/uts/common/fs/nfs/nfs4_client_debug.c
310
ep->re_char1 = kmem_alloc(len + 1, KM_SLEEP);
usr/src/uts/common/fs/nfs/nfs4_client_debug.c
547
*mnt_pt = kmem_alloc(len, KM_SLEEP);
usr/src/uts/common/fs/nfs/nfs4_client_debug.c
828
fp = kmem_zalloc(sizeof (*fp), KM_SLEEP);
usr/src/uts/common/fs/nfs/nfs4_client_secinfo.c
211
sdata = kmem_alloc(sizeof (sec_data_t) * seccnt, KM_SLEEP);
usr/src/uts/common/fs/nfs/nfs4_client_secinfo.c
223
data = kmem_alloc(sizeof (gss_clntdata_t), KM_SLEEP);
usr/src/uts/common/fs/nfs/nfs4_client_secinfo.c
230
kmem_alloc(info->oid.sec_oid4_len, KM_SLEEP);
usr/src/uts/common/fs/nfs/nfs4_client_secinfo.c
259
sinfo = kmem_alloc(sizeof (sv_secinfo_t), KM_SLEEP);
usr/src/uts/common/fs/nfs/nfs4_client_secinfo.c
641
tmp_path = kmem_alloc(path_len + 1, KM_SLEEP);
usr/src/uts/common/fs/nfs/nfs4_client_secinfo.c
90
secinfo_support = kmem_alloc(sizeof (SECINFO4res), KM_SLEEP);
usr/src/uts/common/fs/nfs/nfs4_client_secinfo.c
94
KM_SLEEP);
usr/src/uts/common/fs/nfs/nfs4_client_state.c
1205
kmem_alloc(nown->lock_owner.owner_len, KM_SLEEP);
usr/src/uts/common/fs/nfs/nfs4_client_state.c
1748
bsep = kmem_alloc(sizeof (*bsep), KM_SLEEP);
usr/src/uts/common/fs/nfs/nfs4_client_state.c
2119
destcfp = kmem_alloc(destclen + 1, KM_SLEEP);
usr/src/uts/common/fs/nfs/nfs4_client_state.c
2139
kmem_alloc(open_args->owner.owner_len, KM_SLEEP);
usr/src/uts/common/fs/nfs/nfs4_client_state.c
688
oop = kmem_alloc(sizeof (nfs4_open_owner_t), KM_SLEEP);
usr/src/uts/common/fs/nfs/nfs4_client_state.c
736
osp = kmem_alloc(sizeof (nfs4_open_stream_t), KM_SLEEP);
usr/src/uts/common/fs/nfs/nfs4_client_state.c
824
lop = kmem_alloc(sizeof (nfs4_lock_owner_t), KM_SLEEP);
usr/src/uts/common/fs/nfs/nfs4_client_state.c
881
owner->owner_val = kmem_alloc(owner->owner_len, KM_SLEEP);
usr/src/uts/common/fs/nfs/nfs4_client_state.c
909
owner->owner_val = kmem_alloc(owner->owner_len, KM_SLEEP);
usr/src/uts/common/fs/nfs/nfs4_db.c
198
db = kmem_alloc(sizeof (rfs4_database_t), KM_SLEEP);
usr/src/uts/common/fs/nfs/nfs4_db.c
312
table = kmem_alloc(sizeof (rfs4_table_t), KM_SLEEP);
usr/src/uts/common/fs/nfs/nfs4_db.c
320
table->dbt_name = kmem_alloc(len+1, KM_SLEEP);
usr/src/uts/common/fs/nfs/nfs4_db.c
321
cache_name = kmem_alloc(len + 12 /* "_entry_cache" */ + 1, KM_SLEEP);
usr/src/uts/common/fs/nfs/nfs4_db.c
338
id_name = kmem_alloc(len + 9 /* "_id_space" */ + 1, KM_SLEEP);
usr/src/uts/common/fs/nfs/nfs4_db.c
425
idx = kmem_alloc(sizeof (rfs4_index_t), KM_SLEEP);
usr/src/uts/common/fs/nfs/nfs4_db.c
428
idx->dbi_keyname = kmem_alloc(strlen(keyname) + 1, KM_SLEEP);
usr/src/uts/common/fs/nfs/nfs4_db.c
449
KM_SLEEP);
usr/src/uts/common/fs/nfs/nfs4_db.c
521
entry = kmem_cache_alloc(table->dbt_mem_cache, KM_SLEEP);
usr/src/uts/common/fs/nfs/nfs4_dispatch.c
178
drp = kmem_zalloc(sizeof (rfs4_dupreq_t), KM_SLEEP);
usr/src/uts/common/fs/nfs/nfs4_dispatch.c
530
kmem_alloc(argsp->tag.utf8string_len, KM_SLEEP);
usr/src/uts/common/fs/nfs/nfs4_dispatch.c
590
kmem_alloc(argsp->tag.utf8string_len, KM_SLEEP);
usr/src/uts/common/fs/nfs/nfs4_dispatch.c
599
KM_SLEEP);
usr/src/uts/common/fs/nfs/nfs4_dispatch.c
69
drc = kmem_alloc(sizeof (rfs4_drc_t), KM_SLEEP);
usr/src/uts/common/fs/nfs/nfs4_dispatch.c
78
drc->dr_buckets = kmem_alloc(sizeof (list_t)*drc_hash_size, KM_SLEEP);
usr/src/uts/common/fs/nfs/nfs4_idmap.c
1068
KM_SLEEP);
usr/src/uts/common/fs/nfs/nfs4_idmap.c
1437
newp = kmem_cache_alloc(nfsidmap_cache, KM_SLEEP);
usr/src/uts/common/fs/nfs/nfs4_idmap.c
1439
newp->id_val = kmem_alloc(u8s->utf8string_len, KM_SLEEP);
usr/src/uts/common/fs/nfs/nfs4_idmap.c
1503
u8s->utf8string_val = kmem_alloc(p->id_len, KM_SLEEP);
usr/src/uts/common/fs/nfs/nfs4_idmap.c
1597
newp = kmem_cache_alloc(nfsidmap_cache, KM_SLEEP);
usr/src/uts/common/fs/nfs/nfs4_idmap.c
1599
newp->id_val = kmem_alloc(u8s->utf8string_len, KM_SLEEP);
usr/src/uts/common/fs/nfs/nfs4_idmap.c
237
nig = kmem_alloc(sizeof (*nig), KM_SLEEP);
usr/src/uts/common/fs/nfs/nfs4_idmap.c
368
mapargp = kmem_alloc(MAPID_ARG_LEN(u8s->utf8string_len), KM_SLEEP);
usr/src/uts/common/fs/nfs/nfs4_idmap.c
747
mapargp = kmem_alloc(MAPID_ARG_LEN(u8s->utf8string_len), KM_SLEEP);
usr/src/uts/common/fs/nfs/nfs4_recovery.c
1856
milist = kmem_alloc(nummi * sizeof (mntinfo4_t *), KM_SLEEP);
usr/src/uts/common/fs/nfs/nfs4_recovery.c
3020
destp = kmem_alloc(sizeof (nfs4_lost_rqst_t), KM_SLEEP);
usr/src/uts/common/fs/nfs/nfs4_recovery.c
3095
destp->lr_flk = kmem_alloc(sizeof (flock64_t), KM_SLEEP);
usr/src/uts/common/fs/nfs/nfs4_recovery.c
3456
srvnames = kmem_alloc(length, KM_SLEEP);
usr/src/uts/common/fs/nfs/nfs4_recovery.c
3482
destp = kmem_alloc(sizeof (nfs4_bseqid_entry_t), KM_SLEEP);
usr/src/uts/common/fs/nfs/nfs4_recovery.c
377
recovp = kmem_alloc(sizeof (recov_info_t), KM_SLEEP);
usr/src/uts/common/fs/nfs/nfs4_recovery.c
405
recovp = kmem_zalloc(sizeof (recov_info_t), KM_SLEEP);
usr/src/uts/common/fs/nfs/nfs4_rnode.c
1289
vplist = kmem_alloc(num * sizeof (*vplist), KM_SLEEP);
usr/src/uts/common/fs/nfs/nfs4_rnode.c
1764
KM_SLEEP);
usr/src/uts/common/fs/nfs/nfs4_rnode.c
1771
KM_SLEEP);
usr/src/uts/common/fs/nfs/nfs4_rnode.c
1923
rtable4 = kmem_alloc(rtable4size * sizeof (*rtable4), KM_SLEEP);
usr/src/uts/common/fs/nfs/nfs4_rnode.c
648
rp = kmem_cache_alloc(rnode4_cache, KM_SLEEP);
usr/src/uts/common/fs/nfs/nfs4_rnode.c
649
new_vp = vn_alloc(KM_SLEEP);
usr/src/uts/common/fs/nfs/nfs4_shadow.c
234
svp = kmem_cache_alloc(svnode_cache, KM_SLEEP);
usr/src/uts/common/fs/nfs/nfs4_shadow.c
235
svp->sv_r_vnode = vn_alloc(KM_SLEEP);
usr/src/uts/common/fs/nfs/nfs4_srv.c
1002
sip = kmem_alloc(sizeof (rfs4_servinst_t), KM_SLEEP);
usr/src/uts/common/fs/nfs/nfs4_srv.c
1016
oldstate = kmem_alloc(sizeof (rfs4_oldstate_t), KM_SLEEP);
usr/src/uts/common/fs/nfs/nfs4_srv.c
10192
comp4 = kmem_zalloc(ncomp * sizeof (component4), KM_SLEEP);
usr/src/uts/common/fs/nfs/nfs4_srv.c
1025
sizeof (rfs4_dss_path_t *), KM_SLEEP);
usr/src/uts/common/fs/nfs/nfs4_srv.c
10250
result = kmem_alloc(sizeof (fs_locations4), KM_SLEEP);
usr/src/uts/common/fs/nfs/nfs4_srv.c
10296
symbuf = kmem_zalloc(size, KM_SLEEP);
usr/src/uts/common/fs/nfs/nfs4_srv.c
10448
added_paths = kmem_zalloc(sz, KM_SLEEP);
usr/src/uts/common/fs/nfs/nfs4_srv.c
1316
resok_val = kmem_alloc(count * sizeof (secinfo4), KM_SLEEP);
usr/src/uts/common/fs/nfs/nfs4_srv.c
1333
si->sc_gss_mech_type->length, KM_SLEEP);
usr/src/uts/common/fs/nfs/nfs4_srv.c
1349
flavor_list = kmem_alloc(count * sizeof (int), KM_SLEEP);
usr/src/uts/common/fs/nfs/nfs4_srv.c
1368
resok_val = kmem_alloc(ret_cnt * sizeof (secinfo4), KM_SLEEP);
usr/src/uts/common/fs/nfs/nfs4_srv.c
1392
KM_SLEEP);
usr/src/uts/common/fs/nfs/nfs4_srv.c
2443
KM_SLEEP);
usr/src/uts/common/fs/nfs/nfs4_srv.c
2587
fattrp->attrlist4 = xdr_attrs = kmem_zalloc(xdr_size, KM_SLEEP);
usr/src/uts/common/fs/nfs/nfs4_srv.c
2714
kmem_alloc(cs->fh.nfs_fh4_len, KM_SLEEP);
usr/src/uts/common/fs/nfs/nfs4_srv.c
4052
data = kmem_alloc(MAXPATHLEN + 1, KM_SLEEP);
usr/src/uts/common/fs/nfs/nfs4_srv.c
5148
cs->saved_fh.nfs_fh4_val = kmem_alloc(NFS4_FHSIZE, KM_SLEEP);
usr/src/uts/common/fs/nfs/nfs4_srv.c
5970
iovp = kmem_alloc(sizeof (*iovp) * iovcnt, KM_SLEEP);
usr/src/uts/common/fs/nfs/nfs4_srv.c
6077
kmem_alloc(args->tag.utf8string_len, KM_SLEEP);
usr/src/uts/common/fs/nfs/nfs4_srv.c
6111
KM_SLEEP);
usr/src/uts/common/fs/nfs/nfs4_srv.c
6194
(i+1) * sizeof (nfs_resop4), KM_SLEEP);
usr/src/uts/common/fs/nfs/nfs4_srv.c
692
nsrv4 = kmem_zalloc(sizeof (*nsrv4), KM_SLEEP);
usr/src/uts/common/fs/nfs/nfs4_srv.c
8464
addr = kmem_alloc(len, KM_SLEEP);
usr/src/uts/common/fs/nfs/nfs4_srv.c
8467
netid = kmem_alloc(len, KM_SLEEP);
usr/src/uts/common/fs/nfs/nfs4_srv.c
8924
dp->owner.owner_val = kmem_alloc(len, KM_SLEEP);
usr/src/uts/common/fs/nfs/nfs4_srv.c
8940
dp->owner.owner_val = kmem_alloc(len, KM_SLEEP);
usr/src/uts/common/fs/nfs/nfs4_srv.c
956
dss_path = kmem_alloc(sizeof (rfs4_dss_path_t), KM_SLEEP);
usr/src/uts/common/fs/nfs/nfs4_srv.c
964
dss_path->path = kmem_alloc(len, KM_SLEEP);
usr/src/uts/common/fs/nfs/nfs4_srv_attr.c
858
kmem_alloc(NFS_FH4_LEN, KM_SLEEP);
usr/src/uts/common/fs/nfs/nfs4_srv_attr.c
863
kmem_alloc(fh->nfs_fh4_len, KM_SLEEP);
usr/src/uts/common/fs/nfs/nfs4_srv_deleg.c
1011
arg = kmem_alloc(sizeof (struct recall_arg), KM_SLEEP);
usr/src/uts/common/fs/nfs/nfs4_srv_deleg.c
1074
args = kmem_alloc(sizeof (struct master_recall_args), KM_SLEEP);
usr/src/uts/common/fs/nfs/nfs4_srv_deleg.c
645
addr = kmem_alloc(len, KM_SLEEP);
usr/src/uts/common/fs/nfs/nfs4_srv_deleg.c
648
netid = kmem_alloc(len, KM_SLEEP);
usr/src/uts/common/fs/nfs/nfs4_srv_deleg.c
856
argop = kmem_zalloc(argoplist_size, KM_SLEEP);
usr/src/uts/common/fs/nfs/nfs4_srv_deleg.c
874
fhp->nfs_fh4_len, KM_SLEEP);
usr/src/uts/common/fs/nfs/nfs4_srv_ns.c
161
exi = kmem_zalloc(sizeof (*exi), KM_SLEEP);
usr/src/uts/common/fs/nfs/nfs4_srv_ns.c
188
kex->ex_path = kmem_alloc(kex->ex_pathlen + 1, KM_SLEEP);
usr/src/uts/common/fs/nfs/nfs4_srv_ns.c
202
exi->exi_cache[i] = kmem_alloc(sizeof (avl_tree_t), KM_SLEEP);
usr/src/uts/common/fs/nfs/nfs4_srv_ns.c
274
treenode_t *tnode = kmem_zalloc(sizeof (*tnode), KM_SLEEP);
usr/src/uts/common/fs/nfs/nfs4_srv_ns.c
740
visp = kmem_alloc(sizeof (*visp), KM_SLEEP);
usr/src/uts/common/fs/nfs/nfs4_srv_readdir.c
615
rddir_data = kmem_alloc(rddir_data_len, KM_SLEEP);
usr/src/uts/common/fs/nfs/nfs4_state.c
1019
dir = kmem_alloc(dirlen, KM_SLEEP);
usr/src/uts/common/fs/nfs/nfs4_state.c
1110
error = nvlist_unpack(buf, buflen, &rfs4_dss_paths, KM_SLEEP);
usr/src/uts/common/fs/nfs/nfs4_state.c
1335
(rfs4_dss_numnewpaths + 1), KM_SLEEP);
usr/src/uts/common/fs/nfs/nfs4_state.c
154
dlo->owner_val = kmem_alloc(slo->owner_len, KM_SLEEP);
usr/src/uts/common/fs/nfs/nfs4_state.c
1782
path = kmem_alloc(pathlen, KM_SLEEP);
usr/src/uts/common/fs/nfs/nfs4_state.c
1847
cp->rc_nfs_client.id_val = kmem_alloc(client->id_len, KM_SLEEP);
usr/src/uts/common/fs/nfs/nfs4_state.c
197
kmem_alloc(sacep->who.utf8string_len, KM_SLEEP);
usr/src/uts/common/fs/nfs/nfs4_state.c
2288
kmem_alloc(openowner->owner_len, KM_SLEEP);
usr/src/uts/common/fs/nfs/nfs4_state.c
2356
kmem_alloc(fh->nfs_fh4_len, KM_SLEEP);
usr/src/uts/common/fs/nfs/nfs4_state.c
2483
lo->rl_owner.owner_val = kmem_alloc(lockowner->owner_len, KM_SLEEP);
usr/src/uts/common/fs/nfs/nfs4_state.c
2593
kmem_alloc(fh->nfs_fh4_len, KM_SLEEP);
usr/src/uts/common/fs/nfs/nfs4_state.c
433
ss_pn = kmem_alloc(sizeof (rfs4_ss_pn_t), KM_SLEEP);
usr/src/uts/common/fs/nfs/nfs4_state.c
533
cl_ss = kmem_alloc(sizeof (rfs4_oldstate_t), KM_SLEEP);
usr/src/uts/common/fs/nfs/nfs4_state.c
583
cl_ss->cl_id4.id_val = kmem_alloc(id_len, KM_SLEEP);
usr/src/uts/common/fs/nfs/nfs4_state.c
665
dirt = kmem_alloc(RFS4_SS_DIRSIZE, KM_SLEEP);
usr/src/uts/common/fs/nfs/nfs4_state.c
813
state = kmem_alloc(MAXPATHLEN, KM_SLEEP);
usr/src/uts/common/fs/nfs/nfs4_state.c
814
oldstate = kmem_alloc(MAXPATHLEN, KM_SLEEP);
usr/src/uts/common/fs/nfs/nfs4_stub_vnops.c
1049
dma = kmem_zalloc(sizeof (domount_args_t), KM_SLEEP);
usr/src/uts/common/fs/nfs/nfs4_stub_vnops.c
1142
esi = kmem_zalloc(sizeof (ephemeral_servinfo_t), KM_SLEEP);
usr/src/uts/common/fs/nfs/nfs4_stub_vnops.c
1166
esi->esi_hostname = kmem_zalloc(strlen(svp->sv_hostname) + 1, KM_SLEEP);
usr/src/uts/common/fs/nfs/nfs4_stub_vnops.c
1169
esi->esi_addr = kmem_zalloc(sizeof (struct netbuf), KM_SLEEP);
usr/src/uts/common/fs/nfs/nfs4_stub_vnops.c
1173
bufp->buf = kmem_zalloc(bufp->len, KM_SLEEP);
usr/src/uts/common/fs/nfs/nfs4_stub_vnops.c
1176
esi->esi_knconf = kmem_zalloc(sizeof (*esi->esi_knconf), KM_SLEEP);
usr/src/uts/common/fs/nfs/nfs4_stub_vnops.c
1180
sikncp->knc_protofmly = (caddr_t)kmem_zalloc(KNC_STRSIZE, KM_SLEEP);
usr/src/uts/common/fs/nfs/nfs4_stub_vnops.c
1183
sikncp->knc_proto = (caddr_t)kmem_zalloc(KNC_STRSIZE, KM_SLEEP);
usr/src/uts/common/fs/nfs/nfs4_stub_vnops.c
1202
bufp = kmem_zalloc(sizeof (struct netbuf), KM_SLEEP);
usr/src/uts/common/fs/nfs/nfs4_stub_vnops.c
1205
bufp->buf = kmem_zalloc(bufp->len, KM_SLEEP);
usr/src/uts/common/fs/nfs/nfs4_stub_vnops.c
1218
esi->esi_netname = kmem_zalloc(nmlen + 1, KM_SLEEP);
usr/src/uts/common/fs/nfs/nfs4_stub_vnops.c
1235
esi->esi_path = kmem_zalloc(esi->esi_path_len, KM_SLEEP);
usr/src/uts/common/fs/nfs/nfs4_stub_vnops.c
1288
xdr_argsp = kmem_zalloc(xdr_len + sizeof (*xdr_argsp), KM_SLEEP);
usr/src/uts/common/fs/nfs/nfs4_stub_vnops.c
1302
orig_resp = kmem_alloc(orig_reslen, KM_SLEEP);
usr/src/uts/common/fs/nfs/nfs4_stub_vnops.c
1432
argop = kmem_alloc(argoplist_size, KM_SLEEP);
usr/src/uts/common/fs/nfs/nfs4_stub_vnops.c
1557
stub_fh = kmem_alloc(sizeof (nfs_fh4), KM_SLEEP);
usr/src/uts/common/fs/nfs/nfs4_stub_vnops.c
1559
sizeof (fattr4_mounted_on_fileid), KM_SLEEP);
usr/src/uts/common/fs/nfs/nfs4_stub_vnops.c
1749
esi = kmem_zalloc(sizeof (ephemeral_servinfo_t), KM_SLEEP);
usr/src/uts/common/fs/nfs/nfs4_stub_vnops.c
1755
kmem_zalloc(fsp->server_val->utf8string_len + 1, KM_SLEEP);
usr/src/uts/common/fs/nfs/nfs4_stub_vnops.c
1760
bufp = kmem_alloc(sizeof (struct netbuf), KM_SLEEP);
usr/src/uts/common/fs/nfs/nfs4_stub_vnops.c
1763
bufp->buf = kmem_zalloc(bufp->len, KM_SLEEP);
usr/src/uts/common/fs/nfs/nfs4_stub_vnops.c
1767
esi->esi_knconf = kmem_zalloc(sizeof (*esi->esi_knconf), KM_SLEEP);
usr/src/uts/common/fs/nfs/nfs4_stub_vnops.c
1776
sikncp->knc_protofmly = (caddr_t)kmem_zalloc(KNC_STRSIZE, KM_SLEEP);
usr/src/uts/common/fs/nfs/nfs4_stub_vnops.c
1779
sikncp->knc_proto = (caddr_t)kmem_zalloc(KNC_STRSIZE, KM_SLEEP);
usr/src/uts/common/fs/nfs/nfs4_stub_vnops.c
1788
esi->esi_netname = kmem_zalloc(nfsfsloc.netnm_len, KM_SLEEP);
usr/src/uts/common/fs/nfs/nfs4_stub_vnops.c
1792
esi->esi_path = p = kmem_zalloc(MAXPATHLEN, KM_SLEEP);
usr/src/uts/common/fs/nfs/nfs4_stub_vnops.c
1878
mntpt = kmem_zalloc(mntpt_len + 1, KM_SLEEP);
usr/src/uts/common/fs/nfs/nfs4_stub_vnops.c
1900
uap = kmem_zalloc(sizeof (struct mounta), KM_SLEEP);
usr/src/uts/common/fs/nfs/nfs4_stub_vnops.c
1901
uap->spec = kmem_zalloc(spec_len + 1, KM_SLEEP);
usr/src/uts/common/fs/nfs/nfs4_stub_vnops.c
1985
nargs = kmem_zalloc(sizeof (struct nfs_args), KM_SLEEP);
usr/src/uts/common/fs/nfs/nfs4_stub_vnops.c
2082
secdata = kmem_alloc(sizeof (sec_data_t), KM_SLEEP);
usr/src/uts/common/fs/nfs/nfs4_stub_vnops.c
2200
eph = kmem_zalloc(sizeof (*eph), KM_SLEEP);
usr/src/uts/common/fs/nfs/nfs4_stub_vnops.c
3154
ntg = kmem_zalloc(sizeof (*ntg), KM_SLEEP);
usr/src/uts/common/fs/nfs/nfs4_stub_vnops.c
3259
mntopts = kmem_zalloc(MAX_MNTOPT_STR, KM_SLEEP);
usr/src/uts/common/fs/nfs/nfs4_stub_vnops.c
782
net = kmem_zalloc(sizeof (*net), KM_SLEEP);
usr/src/uts/common/fs/nfs/nfs4_stub_vnops.c
914
hostlist = kmem_zalloc(MAXPATHLEN, KM_SLEEP);
usr/src/uts/common/fs/nfs/nfs4_subr.c
1733
fhp->nfs_fh4_val = kmem_alloc(tmpfhp->nfs_fh4_len, KM_SLEEP);
usr/src/uts/common/fs/nfs/nfs4_subr.c
1761
pfhp->nfs_fh4_val = kmem_alloc(tmpfhp->nfs_fh4_len, KM_SLEEP);
usr/src/uts/common/fs/nfs/nfs4_subr.c
2392
rp->r_dir = kmem_alloc(sizeof (avl_tree_t), KM_SLEEP);
usr/src/uts/common/fs/nfs/nfs4_subr.c
2477
rdc = rddir4_cache_alloc(KM_SLEEP);
usr/src/uts/common/fs/nfs/nfs4_subr.c
2533
nrdc = rddir4_cache_alloc(KM_SLEEP);
usr/src/uts/common/fs/nfs/nfs4_subr.c
2761
nfscl = kmem_alloc(sizeof (*nfscl), KM_SLEEP);
usr/src/uts/common/fs/nfs/nfs4_subr.c
562
path = kmem_alloc(len + 1, KM_SLEEP);
usr/src/uts/common/fs/nfs/nfs4_subr.c
605
sp = kmem_alloc(len + 1, KM_SLEEP);
usr/src/uts/common/fs/nfs/nfs4_subr.c
646
str->utf8string_val = kmem_alloc(len, KM_SLEEP);
usr/src/uts/common/fs/nfs/nfs4_subr.c
663
KM_SLEEP);
usr/src/uts/common/fs/nfs/nfs4_subr.c
873
newch = kmem_alloc(sizeof (*newch), KM_SLEEP);
usr/src/uts/common/fs/nfs/nfs4_subr.c
880
KM_SLEEP);
usr/src/uts/common/fs/nfs/nfs4_subr.c
947
cp = kmem_cache_alloc(chtab4_cache, KM_SLEEP);
usr/src/uts/common/fs/nfs/nfs4_vfsops.c
1055
secdata = kmem_alloc(sizeof (*secdata), KM_SLEEP);
usr/src/uts/common/fs/nfs/nfs4_vfsops.c
1454
newpath = kmem_alloc(newpn.pn_pathlen + 1, KM_SLEEP);
usr/src/uts/common/fs/nfs/nfs4_vfsops.c
1496
knconf->knc_protofmly = kmem_zalloc(KNC_STRSIZE, KM_SLEEP);
usr/src/uts/common/fs/nfs/nfs4_vfsops.c
1497
knconf->knc_proto = kmem_zalloc(KNC_STRSIZE, KM_SLEEP);
usr/src/uts/common/fs/nfs/nfs4_vfsops.c
1506
saddr->buf = kmem_alloc(nfsfsloc->addr->maxlen, KM_SLEEP);
usr/src/uts/common/fs/nfs/nfs4_vfsops.c
1514
svp->sv_hostname = kmem_zalloc(host->utf8string_len + 1, KM_SLEEP);
usr/src/uts/common/fs/nfs/nfs4_vfsops.c
1528
spath = p = kmem_zalloc(MAXPATHLEN, KM_SLEEP);
usr/src/uts/common/fs/nfs/nfs4_vfsops.c
1550
new_path = kmem_zalloc(MAXPATHLEN, KM_SLEEP);
usr/src/uts/common/fs/nfs/nfs4_vfsops.c
1571
svp->sv_path = kmem_alloc(svp->sv_pathlen, KM_SLEEP);
usr/src/uts/common/fs/nfs/nfs4_vfsops.c
1595
secdata = kmem_alloc(sizeof (*secdata), KM_SLEEP);
usr/src/uts/common/fs/nfs/nfs4_vfsops.c
1629
orig_path = kmem_alloc(orig_pathlen, KM_SLEEP);
usr/src/uts/common/fs/nfs/nfs4_vfsops.c
2050
svp = kmem_zalloc(sizeof (*svp), KM_SLEEP);
usr/src/uts/common/fs/nfs/nfs4_vfsops.c
2058
svp->sv_path = kmem_alloc(svp->sv_pathlen, KM_SLEEP);
usr/src/uts/common/fs/nfs/nfs4_vfsops.c
2059
svp->sv_hostname = kmem_alloc(svp->sv_hostnamelen, KM_SLEEP);
usr/src/uts/common/fs/nfs/nfs4_vfsops.c
2068
taddr->buf = kmem_zalloc(saddr->maxlen, KM_SLEEP);
usr/src/uts/common/fs/nfs/nfs4_vfsops.c
2072
svp->sv_knconf = kmem_zalloc(sizeof (struct knetconfig), KM_SLEEP);
usr/src/uts/common/fs/nfs/nfs4_vfsops.c
2078
tknconf->knc_proto = kmem_zalloc(KNC_STRSIZE, KM_SLEEP);
usr/src/uts/common/fs/nfs/nfs4_vfsops.c
2083
tknconf->knc_protofmly = kmem_zalloc(KNC_STRSIZE, KM_SLEEP);
usr/src/uts/common/fs/nfs/nfs4_vfsops.c
2090
KM_SLEEP);
usr/src/uts/common/fs/nfs/nfs4_vfsops.c
2096
tknconf->knc_proto = kmem_zalloc(KNC_STRSIZE, KM_SLEEP);
usr/src/uts/common/fs/nfs/nfs4_vfsops.c
2102
KM_SLEEP);
usr/src/uts/common/fs/nfs/nfs4_vfsops.c
2151
kmem_alloc(origsvp->sv_pathlen, KM_SLEEP);
usr/src/uts/common/fs/nfs/nfs4_vfsops.c
2294
mi = kmem_zalloc(sizeof (*mi), KM_SLEEP);
usr/src/uts/common/fs/nfs/nfs4_vfsops.c
2620
resource = kmem_zalloc(len, KM_SLEEP);
usr/src/uts/common/fs/nfs/nfs4_vfsops.c
274
secdata = kmem_alloc(sizeof (*secdata), KM_SLEEP);
usr/src/uts/common/fs/nfs/nfs4_vfsops.c
277
data = kmem_alloc(sizeof (*data), KM_SLEEP);
usr/src/uts/common/fs/nfs/nfs4_vfsops.c
281
data->syncaddr.buf = (char *)kmem_alloc(syncaddr->len, KM_SLEEP);
usr/src/uts/common/fs/nfs/nfs4_vfsops.c
288
data->knconf = kmem_alloc(sizeof (*knconf), KM_SLEEP);
usr/src/uts/common/fs/nfs/nfs4_vfsops.c
290
pf = kmem_alloc(KNC_STRSIZE, KM_SLEEP);
usr/src/uts/common/fs/nfs/nfs4_vfsops.c
291
p = kmem_alloc(KNC_STRSIZE, KM_SLEEP);
usr/src/uts/common/fs/nfs/nfs4_vfsops.c
298
data->netname = kmem_alloc(nlen, KM_SLEEP);
usr/src/uts/common/fs/nfs/nfs4_vfsops.c
2996
svp = kmem_zalloc(sizeof (*svp), KM_SLEEP);
usr/src/uts/common/fs/nfs/nfs4_vfsops.c
2998
svp->sv_knconf = kmem_zalloc(sizeof (*svp->sv_knconf), KM_SLEEP);
usr/src/uts/common/fs/nfs/nfs4_vfsops.c
2999
svp->sv_knconf->knc_protofmly = kmem_alloc(KNC_STRSIZE, KM_SLEEP);
usr/src/uts/common/fs/nfs/nfs4_vfsops.c
3000
svp->sv_knconf->knc_proto = kmem_alloc(KNC_STRSIZE, KM_SLEEP);
usr/src/uts/common/fs/nfs/nfs4_vfsops.c
3030
svp->sv_hostname = kmem_alloc(svp->sv_hostnamelen, KM_SLEEP);
usr/src/uts/common/fs/nfs/nfs4_vfsops.c
3034
svp->sv_path = kmem_alloc(svp->sv_pathlen, KM_SLEEP);
usr/src/uts/common/fs/nfs/nfs4_vfsops.c
3040
svp->sv_secdata = kmem_alloc(sizeof (*svp->sv_secdata), KM_SLEEP);
usr/src/uts/common/fs/nfs/nfs4_vfsops.c
333
tsecdata = kmem_zalloc(sizeof (sec_data_t), KM_SLEEP);
usr/src/uts/common/fs/nfs/nfs4_vfsops.c
359
tdata = kmem_zalloc(sizeof (gss_clntdata_t), KM_SLEEP);
usr/src/uts/common/fs/nfs/nfs4_vfsops.c
363
KM_SLEEP);
usr/src/uts/common/fs/nfs/nfs4_vfsops.c
3893
np = kmem_zalloc(sizeof (struct nfs4_server), KM_SLEEP);
usr/src/uts/common/fs/nfs/nfs4_vfsops.c
3896
np->saddr.buf = kmem_alloc(svp->sv_addr.maxlen, KM_SLEEP);
usr/src/uts/common/fs/nfs/nfs4_vfsops.c
3920
np->clidtosend.id_val = kmem_alloc(np->clidtosend.id_len, KM_SLEEP);
usr/src/uts/common/fs/nfs/nfs4_vfsops.c
4263
args = kmem_alloc(sizeof (freemountargs_t), KM_SLEEP);
usr/src/uts/common/fs/nfs/nfs4_vfsops.c
4441
newpath = kmem_zalloc(MAXPATHLEN, KM_SLEEP);
usr/src/uts/common/fs/nfs/nfs4_vfsops.c
4473
newpath = kmem_zalloc(MAXPATHLEN, KM_SLEEP);
usr/src/uts/common/fs/nfs/nfs4_vfsops.c
4482
svp->sv_path = kmem_alloc(pathlen, KM_SLEEP);
usr/src/uts/common/fs/nfs/nfs4_vfsops.c
514
knconf = kmem_zalloc(sizeof (*knconf), KM_SLEEP);
usr/src/uts/common/fs/nfs/nfs4_vfsops.c
531
pf = kmem_alloc(KNC_STRSIZE, KM_SLEEP);
usr/src/uts/common/fs/nfs/nfs4_vfsops.c
532
p = kmem_alloc(KNC_STRSIZE, KM_SLEEP);
usr/src/uts/common/fs/nfs/nfs4_vfsops.c
565
nargs->addr = kmem_zalloc(sizeof (struct netbuf), KM_SLEEP);
usr/src/uts/common/fs/nfs/nfs4_vfsops.c
568
addr.buf = kmem_alloc(addr.len, KM_SLEEP);
usr/src/uts/common/fs/nfs/nfs4_vfsops.c
585
nargs->fh = kmem_alloc(pn.pn_pathlen + 1, KM_SLEEP);
usr/src/uts/common/fs/nfs/nfs4_vfsops.c
599
nargs->hostname = kmem_zalloc(hlen, KM_SLEEP);
usr/src/uts/common/fs/nfs/nfs4_vfsops.c
624
syncaddr.buf = kmem_alloc(syncaddr.len, KM_SLEEP);
usr/src/uts/common/fs/nfs/nfs4_vfsops.c
632
nargs->syncaddr = kmem_alloc(sizeof (struct netbuf), KM_SLEEP);
usr/src/uts/common/fs/nfs/nfs4_vfsops.c
643
nargs->netname = kmem_zalloc(nlen, KM_SLEEP);
usr/src/uts/common/fs/nfs/nfs4_vfsops.c
733
args = kmem_zalloc(sizeof (struct nfs_args), KM_SLEEP);
usr/src/uts/common/fs/nfs/nfs4_vfsops.c
836
svp = kmem_zalloc(sizeof (*svp), KM_SLEEP);
usr/src/uts/common/fs/nfs/nfs4_vfsops.c
890
svp->sv_hostname = kmem_zalloc(svp->sv_hostnamelen, KM_SLEEP);
usr/src/uts/common/fs/nfs/nfs4_vnops.c
1034
kmem_alloc(open_args->owner.owner_len, KM_SLEEP);
usr/src/uts/common/fs/nfs/nfs4_vnops.c
11131
dmapp = kmem_alloc(sizeof (nfs4_delmap_args_t), KM_SLEEP);
usr/src/uts/common/fs/nfs/nfs4_vnops.c
11144
AS_UNMAP_EVENT, addr, len, KM_SLEEP);
usr/src/uts/common/fs/nfs/nfs4_vnops.c
11154
delmap_call = kmem_alloc(sizeof (nfs4_delmapcall_t), KM_SLEEP);
usr/src/uts/common/fs/nfs/nfs4_vnops.c
13027
*argopp = kmem_zalloc(argoplist_size, KM_SLEEP);
usr/src/uts/common/fs/nfs/nfs4_vnops.c
15798
intersect_llp = (locklist_t *)kmem_alloc(sizeof (locklist_t), KM_SLEEP);
usr/src/uts/common/fs/nfs/nfs4_vnops.c
1883
kmem_alloc(open_args->owner.owner_len, KM_SLEEP);
usr/src/uts/common/fs/nfs/nfs4_vnops.c
2872
base = kmem_alloc(bufsize, KM_SLEEP);
usr/src/uts/common/fs/nfs/nfs4_vnops.c
5298
argop = kmem_alloc(argoplist_size, KM_SLEEP);
usr/src/uts/common/fs/nfs/nfs4_vnops.c
5730
argop = kmem_alloc(argoplist_size, KM_SLEEP);
usr/src/uts/common/fs/nfs/nfs4_vnops.c
6232
argop = argbase = kmem_alloc(argoplist_size, KM_SLEEP);
usr/src/uts/common/fs/nfs/nfs4_vnops.c
6902
argop = kmem_alloc(argoplist_size, KM_SLEEP);
usr/src/uts/common/fs/nfs/nfs4_vnops.c
7511
argop = kmem_alloc(argoplist_size, KM_SLEEP);
usr/src/uts/common/fs/nfs/nfs4_vnops.c
8178
args.array = argop = kmem_alloc(argoplist_size, KM_SLEEP);
usr/src/uts/common/fs/nfs/nfs4_vnops.c
8396
argop = kmem_alloc(argoplist_size, KM_SLEEP);
usr/src/uts/common/fs/nfs/nfs4_vnops.c
868
argop = kmem_alloc(argoplist_size, KM_SLEEP);
usr/src/uts/common/fs/nfs/nfs4_vnops.c
8879
contents = kmem_alloc(MAXPATHLEN, KM_SLEEP);
usr/src/uts/common/fs/nfs/nfs4_xdr.c
1272
kmem_alloc(*owner_length, KM_SLEEP);
usr/src/uts/common/fs/nfs/nfs4_xdr.c
1345
kmem_alloc(*group_length, KM_SLEEP);
usr/src/uts/common/fs/nfs/nfs4_xdr.c
1555
garp->n4g_ext_res = kmem_alloc(sizeof (ges), KM_SLEEP);
usr/src/uts/common/fs/nfs/nfs4_xdr.c
2147
garp->n4g_ext_res = kmem_alloc(sizeof (ges), KM_SLEEP);
usr/src/uts/common/fs/nfs/nfs4_xdr.c
2180
KM_SLEEP);
usr/src/uts/common/fs/nfs/nfs4_xdr.c
2244
rdc->entries = kmem_alloc(aobjp->dircount, KM_SLEEP);
usr/src/uts/common/fs/nfs/nfs4_xdr.c
496
bp = kmem_alloc(bufsize, KM_SLEEP);
usr/src/uts/common/fs/nfs/nfs4_xdr.c
503
objp->nfs_fh4_val = kmem_zalloc(sizeof (nfs_fh4_fmt_t), KM_SLEEP);
usr/src/uts/common/fs/nfs/nfs4_xdr.c
5133
objp->array = resop = kmem_zalloc(len, KM_SLEEP);
usr/src/uts/common/fs/nfs/nfs4_xdr.c
655
ptr = buf = kmem_alloc(otw_len, KM_SLEEP);
usr/src/uts/common/fs/nfs/nfs4_xdr.c
878
ug_cache_t *pug = kmem_alloc(sizeof (ug_cache_t), KM_SLEEP);
usr/src/uts/common/fs/nfs/nfs4x_dispatch.c
36
resp->array = kmem_zalloc(sz, KM_SLEEP);
usr/src/uts/common/fs/nfs/nfs4x_srv.c
181
nip = kmem_zalloc(sizeof (nfs_impl_id4), KM_SLEEP);
usr/src/uts/common/fs/nfs/nfs4x_srv.c
186
p = kmem_zalloc(len * sizeof (char), KM_SLEEP);
usr/src/uts/common/fs/nfs/nfs4x_srv.c
192
p = kmem_zalloc(len * sizeof (char), KM_SLEEP);
usr/src/uts/common/fs/nfs/nfs4x_srv.c
206
char *s = kmem_alloc(id_len, KM_SLEEP);
usr/src/uts/common/fs/nfs/nfs4x_srv.c
218
ss->eir_server_scope_val = kmem_alloc(id_len, KM_SLEEP);
usr/src/uts/common/fs/nfs/nfs4x_srv.c
97
pdup = (rpc_gss_principal_t)kmem_alloc(len, KM_SLEEP);
usr/src/uts/common/fs/nfs/nfs4x_state.c
298
p = kmem_zalloc(sizeof (rfs4_slot_t) * n, KM_SLEEP);
usr/src/uts/common/fs/nfs/nfs4x_state.c
341
cp = (sess_channel_t *)kmem_zalloc(sizeof (sess_channel_t), KM_SLEEP);
usr/src/uts/common/fs/nfs/nfs4x_state.c
351
bp = (sess_bcsd_t *)kmem_zalloc(sizeof (sess_bcsd_t), KM_SLEEP);
usr/src/uts/common/fs/nfs/nfs_acl_vnops.c
711
vsp->vsa_aclentp = kmem_alloc(aclsize, KM_SLEEP);
usr/src/uts/common/fs/nfs/nfs_acl_vnops.c
719
vsp->vsa_dfaclentp = kmem_alloc(aclsize, KM_SLEEP);
usr/src/uts/common/fs/nfs/nfs_acl_vnops.c
757
KM_SLEEP);
usr/src/uts/common/fs/nfs/nfs_acl_vnops.c
786
KM_SLEEP);
usr/src/uts/common/fs/nfs/nfs_auth.c
1101
*gids = kmem_alloc(sz, KM_SLEEP);
usr/src/uts/common/fs/nfs/nfs_auth.c
1125
KM_SLEEP);
usr/src/uts/common/fs/nfs/nfs_auth.c
1166
KM_SLEEP);
usr/src/uts/common/fs/nfs/nfs_auth.c
210
nag = kmem_zalloc(sizeof (*nag), KM_SLEEP);
usr/src/uts/common/fs/nfs/nfs_auth.c
421
abuf = (caddr_t)kmem_alloc(absz, KM_SLEEP);
usr/src/uts/common/fs/nfs/nfs_auth.c
595
sizeof (gid_t), KM_SLEEP);
usr/src/uts/common/fs/nfs/nfs_auth.c
894
addr.buf = kmem_alloc(addr.maxlen, KM_SLEEP);
usr/src/uts/common/fs/nfs/nfs_client.c
1918
args = kmem_alloc(sizeof (*args), KM_SLEEP);
usr/src/uts/common/fs/nfs/nfs_client.c
2665
mig = kmem_alloc(sizeof (*mig), KM_SLEEP);
usr/src/uts/common/fs/nfs/nfs_client.c
2936
buf = kmem_alloc(MAX_SHR_OWNER_LEN, KM_SLEEP);
usr/src/uts/common/fs/nfs/nfs_client.c
3048
new = kmem_alloc(sizeof (*new), KM_SLEEP);
usr/src/uts/common/fs/nfs/nfs_client.c
3051
new->lmpl_owner = kmem_alloc(len, KM_SLEEP);
usr/src/uts/common/fs/nfs/nfs_client.c
3340
delmap_call = kmem_alloc(sizeof (nfs_delmapcall_t), KM_SLEEP);
usr/src/uts/common/fs/nfs/nfs_cmd.c
294
kmem_zalloc(sizeof (struct charset_cache), KM_SLEEP);
usr/src/uts/common/fs/nfs/nfs_cmd.c
381
newname = kmem_zalloc(size, KM_SLEEP);
usr/src/uts/common/fs/nfs/nfs_cmd.c
422
newdata = kmem_zalloc(size, KM_SLEEP);
usr/src/uts/common/fs/nfs/nfs_cmd.c
479
newdata = kmem_zalloc(maxsize, KM_SLEEP);
usr/src/uts/common/fs/nfs/nfs_cmd.c
96
ncg = kmem_zalloc(sizeof (*ncg), KM_SLEEP);
usr/src/uts/common/fs/nfs/nfs_common.c
389
svp = kmem_zalloc(sizeof (*svp), KM_SLEEP);
usr/src/uts/common/fs/nfs/nfs_common.c
391
svp->sv_knconf = kmem_zalloc(sizeof (*svp->sv_knconf), KM_SLEEP);
usr/src/uts/common/fs/nfs/nfs_common.c
392
svp->sv_knconf->knc_protofmly = kmem_alloc(KNC_STRSIZE, KM_SLEEP);
usr/src/uts/common/fs/nfs/nfs_common.c
393
svp->sv_knconf->knc_proto = kmem_alloc(KNC_STRSIZE, KM_SLEEP);
usr/src/uts/common/fs/nfs/nfs_dlinet.c
1246
char *ip = kmem_alloc(len, KM_SLEEP);
usr/src/uts/common/fs/nfs/nfs_dlinet.c
1267
server_path_c = kmem_alloc(len + 1, KM_SLEEP);
usr/src/uts/common/fs/nfs/nfs_dlinet.c
1281
server_name_c = kmem_alloc(doptp->len + 1, KM_SLEEP);
usr/src/uts/common/fs/nfs/nfs_dlinet.c
1475
nbuf->buf = kmem_zalloc(MAX_ADDR_SIZE, KM_SLEEP);
usr/src/uts/common/fs/nfs/nfs_dlinet.c
1634
myaddr.buf = kmem_alloc(myaddr.maxlen, KM_SLEEP);
usr/src/uts/common/fs/nfs/nfs_dlinet.c
697
res.client_name = kmem_alloc(MAX_MACHINE_NAME + 1, KM_SLEEP);
usr/src/uts/common/fs/nfs/nfs_dlinet.c
698
res.domain_name = kmem_alloc(MAX_MACHINE_NAME + 1, KM_SLEEP);
usr/src/uts/common/fs/nfs/nfs_dlinet.c
866
res.server_name = kmem_alloc(MAX_MACHINE_NAME + 1, KM_SLEEP);
usr/src/uts/common/fs/nfs/nfs_dlinet.c
867
res.server_path = kmem_alloc(MAX_MACHINE_NAME + 1, KM_SLEEP);
usr/src/uts/common/fs/nfs/nfs_dlinet.c
984
pl = kmem_alloc(sizeof (PKT_LIST), KM_SLEEP);
usr/src/uts/common/fs/nfs/nfs_dlinet.c
986
pl->pkt = kmem_alloc(pl->len, KM_SLEEP);
usr/src/uts/common/fs/nfs/nfs_export.c
1416
exi = kmem_zalloc(sizeof (*exi), KM_SLEEP);
usr/src/uts/common/fs/nfs/nfs_export.c
1432
exi->exi_cache[i] = kmem_alloc(sizeof (avl_tree_t), KM_SLEEP);
usr/src/uts/common/fs/nfs/nfs_export.c
1498
pathbuf = kmem_alloc(MAXPATHLEN, KM_SLEEP);
usr/src/uts/common/fs/nfs/nfs_export.c
1504
kex->ex_path = kmem_alloc(kex->ex_pathlen + 1, KM_SLEEP);
usr/src/uts/common/fs/nfs/nfs_export.c
1513
log_buffer = kmem_alloc(MAXPATHLEN, KM_SLEEP);
usr/src/uts/common/fs/nfs/nfs_export.c
1521
kmem_alloc(kex->ex_log_bufferlen + 1, KM_SLEEP);
usr/src/uts/common/fs/nfs/nfs_export.c
1526
tagbuf = kmem_alloc(MAXPATHLEN, KM_SLEEP);
usr/src/uts/common/fs/nfs/nfs_export.c
1533
kex->ex_tag = kmem_alloc(kex->ex_taglen + 1, KM_SLEEP);
usr/src/uts/common/fs/nfs/nfs_export.c
1543
sp = kmem_zalloc(allocsize, KM_SLEEP);
usr/src/uts/common/fs/nfs/nfs_export.c
1559
sp2 = kmem_zalloc(allocsize2, KM_SLEEP);
usr/src/uts/common/fs/nfs/nfs_export.c
1618
mech_tmp = kmem_alloc(sizeof (*mech_tmp), KM_SLEEP);
usr/src/uts/common/fs/nfs/nfs_export.c
1628
elements_tmp = kmem_alloc(mech_tmp->length, KM_SLEEP);
usr/src/uts/common/fs/nfs/nfs_export.c
228
kmem_alloc(sizeof (rpc_gss_OID_desc), KM_SLEEP);
usr/src/uts/common/fs/nfs/nfs_export.c
233
KM_SLEEP);
usr/src/uts/common/fs/nfs/nfs_export.c
2867
kex->ex_index = kmem_alloc(len, KM_SLEEP);
usr/src/uts/common/fs/nfs/nfs_export.c
2991
p = kmem_alloc(sizeof (*p), KM_SLEEP);
usr/src/uts/common/fs/nfs/nfs_export.c
330
msec = kmem_zalloc(tcnt * sizeof (struct secinfo), KM_SLEEP);
usr/src/uts/common/fs/nfs/nfs_export.c
445
msec = kmem_zalloc(tcnt * sizeof (struct secinfo), KM_SLEEP);
usr/src/uts/common/fs/nfs/nfs_export.c
564
msec = kmem_zalloc(tcnt * sizeof (struct secinfo), KM_SLEEP);
usr/src/uts/common/fs/nfs/nfs_export.c
649
msec = kmem_zalloc(tcnt * sizeof (struct secinfo), KM_SLEEP);
usr/src/uts/common/fs/nfs/nfs_export.c
898
ne = kmem_zalloc(sizeof (*ne), KM_SLEEP);
usr/src/uts/common/fs/nfs/nfs_export.c
908
ne->exi_root = kmem_zalloc(sizeof (*ne->exi_root), KM_SLEEP);
usr/src/uts/common/fs/nfs/nfs_export.c
914
kmem_alloc(ne->exi_root->exi_export.ex_pathlen + 1, KM_SLEEP);
usr/src/uts/common/fs/nfs/nfs_export.c
943
KM_SLEEP);
usr/src/uts/common/fs/nfs/nfs_log.c
1123
kmem_zalloc(sizeof (*tparams), KM_SLEEP);
usr/src/uts/common/fs/nfs/nfs_log.c
1239
buf_inprog = (caddr_t)kmem_alloc(buf_inprog_len, KM_SLEEP);
usr/src/uts/common/fs/nfs/nfs_log.c
1292
*loghdr = (caddr_t)kmem_alloc(*freesize, KM_SLEEP);
usr/src/uts/common/fs/nfs/nfs_log.c
1777
pubpath = kmem_alloc(*alloc_length, KM_SLEEP);
usr/src/uts/common/fs/nfs/nfs_log.c
1897
namebuf = kmem_alloc(MAXPATHLEN + 4, KM_SLEEP);
usr/src/uts/common/fs/nfs/nfs_log.c
311
buffer = (struct log_buffer *)kmem_alloc(sizeof (*buffer), KM_SLEEP);
usr/src/uts/common/fs/nfs/nfs_log.c
314
buffer->lb_path = (caddr_t)kmem_alloc(namelen + 1, KM_SLEEP);
usr/src/uts/common/fs/nfs/nfs_log.c
440
name = (caddr_t)kmem_alloc(namelen + 1, KM_SLEEP);
usr/src/uts/common/fs/nfs/nfs_log.c
454
logfile = (struct log_file *)kmem_zalloc(sizeof (*logfile), KM_SLEEP);
usr/src/uts/common/fs/nfs/nfs_log_xdr.c
364
lnres = kmem_alloc(count + 1, KM_SLEEP);
usr/src/uts/common/fs/nfs/nfs_server.c
211
(nb)->buf = kmem_alloc((nb)->len, KM_SLEEP); \
usr/src/uts/common/fs/nfs/nfs_server.c
2644
ng = kmem_zalloc(sizeof (*ng), KM_SLEEP);
usr/src/uts/common/fs/nfs/nfs_server.c
3256
nfsuiop = kmem_cache_alloc(nfs_xuio_cache, KM_SLEEP);
usr/src/uts/common/fs/nfs/nfs_server.c
3336
iovarr = kmem_alloc(*iovcnt * sizeof (struct iovec), KM_SLEEP);
usr/src/uts/common/fs/nfs/nfs_server.c
474
addrmask.buf = kmem_alloc(addrmask.maxlen, KM_SLEEP);
usr/src/uts/common/fs/nfs/nfs_srv.c
1195
iovp = kmem_alloc(sizeof (*iovp) * iovcnt, KM_SLEEP);
usr/src/uts/common/fs/nfs/nfs_srv.c
1649
niovp = kmem_alloc(sizeof (*niovp) * iovcnt, KM_SLEEP);
usr/src/uts/common/fs/nfs/nfs_srv.c
2695
rd->rd_entries = kmem_alloc(rd->rd_bufsize, KM_SLEEP);
usr/src/uts/common/fs/nfs/nfs_srv.c
3125
ns = kmem_zalloc(sizeof (*ns), KM_SLEEP);
usr/src/uts/common/fs/nfs/nfs_srv.c
668
rl->rl_data = kmem_alloc(NFS_MAXPATHLEN, KM_SLEEP);
usr/src/uts/common/fs/nfs/nfs_stats.c
475
nfs_stats_ptr = kmem_zalloc(sizeof (*nfs_stats_ptr), KM_SLEEP);
usr/src/uts/common/fs/nfs/nfs_stats.c
56
ks_data = kmem_alloc(template_size, KM_SLEEP);
usr/src/uts/common/fs/nfs/nfs_subr.c
2538
rp = kmem_cache_alloc(rnode_cache, KM_SLEEP);
usr/src/uts/common/fs/nfs/nfs_subr.c
2539
new_vp = vn_alloc(KM_SLEEP);
usr/src/uts/common/fs/nfs/nfs_subr.c
2567
rp->r_path = kmem_alloc(len, KM_SLEEP);
usr/src/uts/common/fs/nfs/nfs_subr.c
2580
rp->r_path = kmem_alloc(2, KM_SLEEP);
usr/src/uts/common/fs/nfs/nfs_subr.c
3072
vplist = kmem_alloc(num * sizeof (*vplist), KM_SLEEP);
usr/src/uts/common/fs/nfs/nfs_subr.c
3377
news = kmem_alloc(MAXNAMELEN, KM_SLEEP);
usr/src/uts/common/fs/nfs/nfs_subr.c
3431
nfscl = kmem_alloc(sizeof (*nfscl), KM_SLEEP);
usr/src/uts/common/fs/nfs/nfs_subr.c
3522
rtable = kmem_alloc(rtablesize * sizeof (*rtable), KM_SLEEP);
usr/src/uts/common/fs/nfs/nfs_subr.c
3545
acache = kmem_alloc(acachesize * sizeof (*acache), KM_SLEEP);
usr/src/uts/common/fs/nfs/nfs_subr.c
358
newch = kmem_alloc(sizeof (*newch), KM_SLEEP);
usr/src/uts/common/fs/nfs/nfs_subr.c
365
KM_SLEEP);
usr/src/uts/common/fs/nfs/nfs_subr.c
429
cp = kmem_cache_alloc(chtab_cache, KM_SLEEP);
usr/src/uts/common/fs/nfs/nfs_subr.c
4711
tmppath = kmem_alloc(len, KM_SLEEP);
usr/src/uts/common/fs/nfs/nfs_subr.c
5068
srvnames = kmem_alloc(length, KM_SLEEP);
usr/src/uts/common/fs/nfs/nfs_subr.c
5242
dbuf = kmem_alloc(dlen, KM_SLEEP);
usr/src/uts/common/fs/nfs/nfs_sys.c
323
nfs4_dss_bufp = kmem_alloc(nfs4_dss_buflen, KM_SLEEP);
usr/src/uts/common/fs/nfs/nfs_vfsops.c
1098
p = kmem_alloc(sizeof (*p), KM_SLEEP);
usr/src/uts/common/fs/nfs/nfs_vfsops.c
1163
mi = kmem_zalloc(sizeof (*mi), KM_SLEEP);
usr/src/uts/common/fs/nfs/nfs_vfsops.c
1704
svp = kmem_zalloc(sizeof (*svp), KM_SLEEP);
usr/src/uts/common/fs/nfs/nfs_vfsops.c
1705
svp->sv_knconf = kmem_zalloc(sizeof (*svp->sv_knconf), KM_SLEEP);
usr/src/uts/common/fs/nfs/nfs_vfsops.c
1706
svp->sv_knconf->knc_protofmly = kmem_alloc(KNC_STRSIZE, KM_SLEEP);
usr/src/uts/common/fs/nfs/nfs_vfsops.c
1707
svp->sv_knconf->knc_proto = kmem_alloc(KNC_STRSIZE, KM_SLEEP);
usr/src/uts/common/fs/nfs/nfs_vfsops.c
1731
svp->sv_hostname = kmem_alloc(svp->sv_hostnamelen, KM_SLEEP);
usr/src/uts/common/fs/nfs/nfs_vfsops.c
1737
svp->sv_secdata = kmem_alloc(sizeof (*svp->sv_secdata), KM_SLEEP);
usr/src/uts/common/fs/nfs/nfs_vfsops.c
305
knconf = kmem_zalloc(sizeof (*knconf), KM_SLEEP);
usr/src/uts/common/fs/nfs/nfs_vfsops.c
322
pf = kmem_alloc(KNC_STRSIZE, KM_SLEEP);
usr/src/uts/common/fs/nfs/nfs_vfsops.c
323
p = kmem_alloc(KNC_STRSIZE, KM_SLEEP);
usr/src/uts/common/fs/nfs/nfs_vfsops.c
348
pc = kmem_alloc(sizeof (*pc), KM_SLEEP);
usr/src/uts/common/fs/nfs/nfs_vfsops.c
364
nargs->addr = kmem_alloc(sizeof (struct netbuf), KM_SLEEP);
usr/src/uts/common/fs/nfs/nfs_vfsops.c
367
addr.buf = kmem_alloc(addr.len, KM_SLEEP);
usr/src/uts/common/fs/nfs/nfs_vfsops.c
394
nargs->hostname = kmem_zalloc(hlen, KM_SLEEP);
usr/src/uts/common/fs/nfs/nfs_vfsops.c
422
syncaddr.buf = kmem_alloc(syncaddr.len, KM_SLEEP);
usr/src/uts/common/fs/nfs/nfs_vfsops.c
430
nargs->syncaddr = kmem_alloc(sizeof (struct netbuf), KM_SLEEP);
usr/src/uts/common/fs/nfs/nfs_vfsops.c
441
nargs->netname = kmem_zalloc(nlen, KM_SLEEP);
usr/src/uts/common/fs/nfs/nfs_vfsops.c
535
args = kmem_alloc(sizeof (struct nfs_args), KM_SLEEP);
usr/src/uts/common/fs/nfs/nfs_vfsops.c
541
fhandle = kmem_zalloc(sizeof (nfs_fhandle), KM_SLEEP);
usr/src/uts/common/fs/nfs/nfs_vfsops.c
650
svp = kmem_zalloc(sizeof (*svp), KM_SLEEP);
usr/src/uts/common/fs/nfs/nfs_vfsops.c
700
svp->sv_hostname = kmem_zalloc(svp->sv_hostnamelen, KM_SLEEP);
usr/src/uts/common/fs/nfs/nfs_vfsops.c
865
secdata = kmem_alloc(sizeof (*secdata), KM_SLEEP);
usr/src/uts/common/fs/nfs/nfs_vfsops.c
868
data = kmem_alloc(sizeof (*data), KM_SLEEP);
usr/src/uts/common/fs/nfs/nfs_vfsops.c
877
data->knconf = kmem_alloc(sizeof (*knconf), KM_SLEEP);
usr/src/uts/common/fs/nfs/nfs_vfsops.c
879
pf = kmem_alloc(KNC_STRSIZE, KM_SLEEP);
usr/src/uts/common/fs/nfs/nfs_vfsops.c
880
p = kmem_alloc(KNC_STRSIZE, KM_SLEEP);
usr/src/uts/common/fs/nfs/nfs_vfsops.c
889
data->netname = kmem_alloc(nlen, KM_SLEEP);
usr/src/uts/common/fs/nfs/nfs_vfsops.c
897
secdata = kmem_alloc(sizeof (*secdata), KM_SLEEP);
usr/src/uts/common/fs/nfs/nfs_vnops.c
1501
rl.rl_data = kmem_alloc(NFS_MAXPATHLEN, KM_SLEEP);
usr/src/uts/common/fs/nfs/nfs_vnops.c
3210
nrdc = rddir_cache_alloc(KM_SLEEP);
usr/src/uts/common/fs/nfs/nfs_vnops.c
3289
rd.rd_entries = kmem_alloc(rdc->buflen, KM_SLEEP);
usr/src/uts/common/fs/nfs/nfs_vnops.c
3335
KM_SLEEP);
usr/src/uts/common/fs/nfs/nfs_vnops.c
3337
rdc->entries = kmem_alloc(rdc->buflen, KM_SLEEP);
usr/src/uts/common/fs/nfs/nfs_vnops.c
466
base = kmem_alloc(bufsize, KM_SLEEP);
usr/src/uts/common/fs/nfs/nfs_vnops.c
4723
dmapp = kmem_alloc(sizeof (nfs_delmap_args_t), KM_SLEEP);
usr/src/uts/common/fs/nfs/nfs_vnops.c
4736
AS_UNMAP_EVENT, addr, len, KM_SLEEP);
usr/src/uts/common/fs/nfs/nfs_vnops.c
662
base = kmem_alloc(bufsize, KM_SLEEP);
usr/src/uts/common/fs/objfs/objfs_data.c
231
strdata = kmem_zalloc(len, KM_SLEEP);
usr/src/uts/common/fs/objfs/objfs_vfs.c
173
data = kmem_alloc(sizeof (objfs_vfs_t), KM_SLEEP);
usr/src/uts/common/fs/pathname.c
130
buf = kmem_alloc(MAXPATHLEN, KM_SLEEP);
usr/src/uts/common/fs/pathname.c
80
pnp->pn_path = pnp->pn_buf = kmem_alloc(sz, KM_SLEEP);
usr/src/uts/common/fs/pcfs/pc_dir.c
1356
w2_str = (uint16_t *)kmem_zalloc(PCMAXNAM_UTF16, KM_SLEEP);
usr/src/uts/common/fs/pcfs/pc_dir.c
1392
bpcdir = kmem_zalloc(ndirentries * sizeof (struct pcdir), KM_SLEEP);
usr/src/uts/common/fs/pcfs/pc_dir.c
1402
w2_str = (uint16_t *)kmem_zalloc(PCMAXNAM_UTF16, KM_SLEEP);
usr/src/uts/common/fs/pcfs/pc_node.c
143
pcp = kmem_zalloc(sizeof (struct pcnode), KM_SLEEP);
usr/src/uts/common/fs/pcfs/pc_node.c
144
vp = vn_alloc(KM_SLEEP);
usr/src/uts/common/fs/pcfs/pc_vfsops.c
2602
fatp = kmem_alloc(fatsize, KM_SLEEP);
usr/src/uts/common/fs/pcfs/pc_vfsops.c
2609
fat_changemap = kmem_zalloc(fat_changemapsize, KM_SLEEP);
usr/src/uts/common/fs/pcfs/pc_vfsops.c
734
fsp = kmem_zalloc(sizeof (*fsp), KM_SLEEP);
usr/src/uts/common/fs/pcfs/pc_vnops.c
2187
lfn_base = kmem_alloc(PCMAXNAM_UTF16, KM_SLEEP);
usr/src/uts/common/fs/pcfs/pc_vnops.c
2193
buf = kmem_alloc(PCMAXNAM_UTF16, KM_SLEEP);
usr/src/uts/common/fs/pcfs/pc_vnops.c
2291
outbuf = kmem_alloc(PCMAXNAMLEN + 1, KM_SLEEP);
usr/src/uts/common/fs/portfs/port.c
1060
elist = kmem_zalloc(nent * sizeof (int), KM_SLEEP);
usr/src/uts/common/fs/portfs/port.c
1396
kevp = kmem_alloc(eventsz * nmax, KM_SLEEP);
usr/src/uts/common/fs/portfs/port.c
1444
kevp32 = kmem_alloc(eventsz * nmax, KM_SLEEP);
usr/src/uts/common/fs/portfs/port.c
1821
pgetp = kmem_zalloc(sizeof (portget_t), KM_SLEEP);
usr/src/uts/common/fs/portfs/port.c
733
pp = kmem_zalloc(sizeof (port_t), KM_SLEEP);
usr/src/uts/common/fs/portfs/port.c
735
pp->port_vnode = vn_alloc(KM_SLEEP);
usr/src/uts/common/fs/portfs/port.c
826
portq->portq_pcp = kmem_zalloc(sizeof (port_fdcache_t), KM_SLEEP);
usr/src/uts/common/fs/portfs/port.c
835
PORT_SCACHE_SIZE * sizeof (port_source_t *), KM_SLEEP);
usr/src/uts/common/fs/portfs/port.c
870
pse = kmem_zalloc(sizeof (port_source_t), KM_SLEEP);
usr/src/uts/common/fs/portfs/port.c
995
plist = kmem_alloc(nent * sizeof (int), KM_SLEEP);
usr/src/uts/common/fs/portfs/port_fd.c
218
sizeof (portfd_t *), KM_SLEEP);
usr/src/uts/common/fs/portfs/port_fd.c
233
pfd = kmem_zalloc(sizeof (portfd_t), KM_SLEEP);
usr/src/uts/common/fs/portfs/port_fd.c
566
KM_SLEEP);
usr/src/uts/common/fs/portfs/port_fop.c
1047
pvfsp = kmem_zalloc(sizeof (portfop_vfs_t), KM_SLEEP);
usr/src/uts/common/fs/portfs/port_fop.c
1083
npvp = kmem_zalloc(sizeof (*npvp), KM_SLEEP);
usr/src/uts/common/fs/portfs/port_fop.c
1131
pfp = kmem_zalloc(sizeof (portfop_t), KM_SLEEP);
usr/src/uts/common/fs/portfs/port_fop.c
772
*cname = kmem_alloc(*len + 1, KM_SLEEP);
usr/src/uts/common/fs/portfs/port_fop.c
999
pfcp = kmem_zalloc(sizeof (portfop_cache_t), KM_SLEEP);
usr/src/uts/common/fs/proc/prcontrol.c
1554
sqp = kmem_zalloc(sizeof (sigqueue_t), KM_SLEEP);
usr/src/uts/common/fs/proc/prcontrol.c
2057
pwa = kmem_alloc(sizeof (struct watched_area), KM_SLEEP);
usr/src/uts/common/fs/proc/prcontrol.c
2139
clwp->lwp_spymaster = kmem_zalloc(sizeof (psinfo_t), KM_SLEEP);
usr/src/uts/common/fs/proc/prcontrol.c
2152
(void) CL_ALLOC(&bufp, cid, KM_SLEEP);
usr/src/uts/common/fs/proc/prcontrol.c
279
prwc->prwc_buflen, new_len, KM_SLEEP);
usr/src/uts/common/fs/proc/prcontrol.c
282
prwc->prwc_buflen, new_len, KM_SLEEP);
usr/src/uts/common/fs/proc/prioctl.c
1084
upup = kmem_zalloc(sizeof (*upup), KM_SLEEP);
usr/src/uts/common/fs/proc/prioctl.c
1907
thing = kmem_alloc(thingsize, KM_SLEEP);
usr/src/uts/common/fs/proc/prioctl.c
2662
upup = kmem_alloc(sizeof (*upup), KM_SLEEP);
usr/src/uts/common/fs/proc/prioctl.c
3643
buf = kmem_zalloc(size, KM_SLEEP);
usr/src/uts/common/fs/proc/prioctl.c
3754
buf = kmem_zalloc(size, KM_SLEEP);
usr/src/uts/common/fs/proc/prioctl.c
389
thing = kmem_alloc(thingsize, KM_SLEEP);
usr/src/uts/common/fs/proc/prsubr.c
1766
iol = kmem_alloc(initial_size, KM_SLEEP);
usr/src/uts/common/fs/proc/prsubr.c
1790
newiol = kmem_alloc(MAPSIZE, KM_SLEEP);
usr/src/uts/common/fs/proc/prsubr.c
2194
buf = kmem_zalloc(size, KM_SLEEP);
usr/src/uts/common/fs/proc/prsubr.c
2345
buf = kmem_zalloc(size, KM_SLEEP);
usr/src/uts/common/fs/proc/prsubr.c
2690
pathname = kmem_alloc(pathlen, KM_SLEEP);
usr/src/uts/common/fs/proc/prsubr.c
4182
pwp = kmem_zalloc(sizeof (struct watched_page), KM_SLEEP);
usr/src/uts/common/fs/proc/prsubr.c
4389
prpagev_t *pagev = kmem_alloc(sizeof (prpagev_t), KM_SLEEP);
usr/src/uts/common/fs/proc/prsubr.c
4401
kmem_alloc(pagev->pg_npages * sizeof (uint_t), KM_SLEEP);
usr/src/uts/common/fs/proc/prsubr.c
4405
kmem_alloc(pagev->pg_npages * sizeof (char), KM_SLEEP);
usr/src/uts/common/fs/proc/prsubr.c
4936
parr = kmem_zalloc(npages, KM_SLEEP);
usr/src/uts/common/fs/proc/prsubr.c
5138
parr = kmem_zalloc(npages, KM_SLEEP);
usr/src/uts/common/fs/proc/prusrio.c
58
bp = kmem_alloc(PAGESIZE, KM_SLEEP);
usr/src/uts/common/fs/proc/prvfsops.c
128
pnp->pr_vnode = vp = vn_alloc(KM_SLEEP);
usr/src/uts/common/fs/proc/prvfsops.c
216
pnp = kmem_alloc(sizeof (*pnp), KM_SLEEP);
usr/src/uts/common/fs/proc/prvnops.c
1052
KM_SLEEP);
usr/src/uts/common/fs/proc/prvnops.c
1076
prpriv_t *ppriv = kmem_zalloc(psize, KM_SLEEP);
usr/src/uts/common/fs/proc/prvnops.c
1111
sap = kmem_alloc((nsig-1) * sizeof (struct sigaction), KM_SLEEP);
usr/src/uts/common/fs/proc/prvnops.c
1193
ssd = kmem_alloc(size, KM_SLEEP);
usr/src/uts/common/fs/proc/prvnops.c
1217
pup = kmem_zalloc(sizeof (*pup), KM_SLEEP);
usr/src/uts/common/fs/proc/prvnops.c
1218
upup = kmem_alloc(sizeof (*upup), KM_SLEEP);
usr/src/uts/common/fs/proc/prvnops.c
1334
pup = kmem_zalloc(size + sizeof (prhusage_t), KM_SLEEP);
usr/src/uts/common/fs/proc/prvnops.c
1483
Bpwp = pwp = kmem_zalloc(size, KM_SLEEP);
usr/src/uts/common/fs/proc/prvnops.c
1515
sp = kmem_alloc(sizeof (*sp), KM_SLEEP);
usr/src/uts/common/fs/proc/prvnops.c
1592
pup = kmem_zalloc(sizeof (*pup), KM_SLEEP);
usr/src/uts/common/fs/proc/prvnops.c
1593
upup = kmem_alloc(sizeof (*upup), KM_SLEEP);
usr/src/uts/common/fs/proc/prvnops.c
1712
xreg = kmem_zalloc(size, KM_SLEEP);
usr/src/uts/common/fs/proc/prvnops.c
1795
gwp = kmem_zalloc(sizeof (gwindows_t), KM_SLEEP);
usr/src/uts/common/fs/proc/prvnops.c
1999
sp = kmem_alloc(sizeof (*sp), KM_SLEEP);
usr/src/uts/common/fs/proc/prvnops.c
2051
php = kmem_zalloc(size, KM_SLEEP);
usr/src/uts/common/fs/proc/prvnops.c
2135
php = kmem_zalloc(size, KM_SLEEP);
usr/src/uts/common/fs/proc/prvnops.c
2254
sap = kmem_alloc((nsig-1) * sizeof (struct sigaction32), KM_SLEEP);
usr/src/uts/common/fs/proc/prvnops.c
2329
pup = kmem_zalloc(sizeof (*pup), KM_SLEEP);
usr/src/uts/common/fs/proc/prvnops.c
2330
upup = kmem_alloc(sizeof (*upup), KM_SLEEP);
usr/src/uts/common/fs/proc/prvnops.c
2446
pup = kmem_zalloc(size + sizeof (prhusage_t), KM_SLEEP);
usr/src/uts/common/fs/proc/prvnops.c
2611
Bpwp = pwp = kmem_zalloc(size, KM_SLEEP);
usr/src/uts/common/fs/proc/prvnops.c
2644
sp = kmem_alloc(sizeof (*sp), KM_SLEEP);
usr/src/uts/common/fs/proc/prvnops.c
2730
pup = kmem_zalloc(sizeof (*pup), KM_SLEEP);
usr/src/uts/common/fs/proc/prvnops.c
2731
upup = kmem_alloc(sizeof (*upup), KM_SLEEP);
usr/src/uts/common/fs/proc/prvnops.c
2812
gwp = kmem_zalloc(sizeof (gwindows32_t), KM_SLEEP);
usr/src/uts/common/fs/proc/prvnops.c
2884
lwpname = kmem_zalloc(THREAD_NAME_MAX, KM_SLEEP);
usr/src/uts/common/fs/proc/prvnops.c
4827
pnp = kmem_zalloc(sizeof (prnode_t), KM_SLEEP);
usr/src/uts/common/fs/proc/prvnops.c
4832
pnp->pr_vnode = vn_alloc(KM_SLEEP);
usr/src/uts/common/fs/proc/prvnops.c
4849
pcp = kmem_zalloc(sizeof (prcommon_t), KM_SLEEP);
usr/src/uts/common/fs/proc/prvnops.c
4857
kmem_zalloc(nfiles * sizeof (vnode_t *), KM_SLEEP);
usr/src/uts/common/fs/proc/prvnops.c
5240
dir = kmem_zalloc(nalloc * sizeof (vnode_t *), KM_SLEEP);
usr/src/uts/common/fs/proc/prvnops.c
5295
KM_SLEEP);
usr/src/uts/common/fs/proc/prvnops.c
6189
dbuf = kmem_alloc(dlen, KM_SLEEP);
usr/src/uts/common/fs/proc/prvnops.c
6235
buf = kmem_alloc(MAXPATHLEN, KM_SLEEP);
usr/src/uts/common/fs/proc/prvnops.c
6247
buf = kmem_alloc(length, KM_SLEEP);
usr/src/uts/common/fs/proc/prvnops.c
740
sp = kmem_alloc(sizeof (*sp), KM_SLEEP);
usr/src/uts/common/fs/proc/prvnops.c
773
php = kmem_zalloc(size, KM_SLEEP);
usr/src/uts/common/fs/proc/prvnops.c
935
php = kmem_zalloc(size, KM_SLEEP);
usr/src/uts/common/fs/sharefs/sharefs_vfsops.c
199
data = kmem_alloc(sizeof (sharefs_vfs_t), KM_SLEEP);
usr/src/uts/common/fs/sharefs/sharefs_vnops.c
87
sft->sharefs_snap = kmem_zalloc(sft->sharefs_size + 1, KM_SLEEP);
usr/src/uts/common/fs/sharefs/sharetab.c
201
sht = kmem_zalloc(sizeof (*sht), KM_SLEEP);
usr/src/uts/common/fs/sharefs/sharetab.c
203
sht->s_fstype = kmem_zalloc(n + 1, KM_SLEEP);
usr/src/uts/common/fs/sharefs/sharetab.c
289
sg = kmem_zalloc(sizeof (*sg), KM_SLEEP);
usr/src/uts/common/fs/sharefs/sharetab.c
395
sh = kmem_zalloc(sizeof (share_t), KM_SLEEP);
usr/src/uts/common/fs/sharefs/sharetab.c
398
buf = kmem_zalloc(bufsz + 1, KM_SLEEP);
usr/src/uts/common/fs/sharefs/sharetab.c
63
sh->sh_##field = kmem_alloc(len + 1, KM_SLEEP); \
usr/src/uts/common/fs/smbclnt/netsmb/smb2_sign.c
110
vcp->vc_mackey = kmem_zalloc(vcp->vc_mackeylen, KM_SLEEP);
usr/src/uts/common/fs/smbclnt/netsmb/smb2_smb.c
594
unc_name = kmem_alloc(unc_len, KM_SLEEP);
usr/src/uts/common/fs/smbclnt/netsmb/smb3_crypt.c
63
mech = kmem_zalloc(sizeof (*mech), KM_SLEEP);
usr/src/uts/common/fs/smbclnt/netsmb/smb_conn.c
410
vcp = kmem_zalloc(sizeof (struct smb_vc), KM_SLEEP);
usr/src/uts/common/fs/smbclnt/netsmb/smb_conn.c
678
ssp = kmem_zalloc(sizeof (struct smb_share), KM_SLEEP);
usr/src/uts/common/fs/smbclnt/netsmb/smb_conn.c
940
fhp = kmem_zalloc(sizeof (struct smb_fh), KM_SLEEP);
usr/src/uts/common/fs/smbclnt/netsmb/smb_iod.c
1747
vcp->vc_ssnkey = kmem_alloc(vcp->vc_ssnkeylen, KM_SLEEP);
usr/src/uts/common/fs/smbclnt/netsmb/smb_pass.c
291
cpid = kmem_zalloc(sizeof (smb_passid_t), KM_SLEEP);
usr/src/uts/common/fs/smbclnt/netsmb/smb_pass.c
345
cpid = kmem_alloc(sizeof (smb_passid_t), KM_SLEEP);
usr/src/uts/common/fs/smbclnt/netsmb/smb_pass.c
373
pk = kmem_alloc(sizeof (*pk), KM_SLEEP);
usr/src/uts/common/fs/smbclnt/netsmb/smb_rq.c
112
rqp = (struct smb_rq *)kmem_alloc(sizeof (struct smb_rq), KM_SLEEP);
usr/src/uts/common/fs/smbclnt/netsmb/smb_rq.c
1580
t2p = kmem_alloc(sizeof (*t2p), KM_SLEEP);
usr/src/uts/common/fs/smbclnt/netsmb/smb_rq.c
674
t2p = (struct smb_t2rq *)kmem_alloc(sizeof (*t2p), KM_SLEEP);
usr/src/uts/common/fs/smbclnt/netsmb/smb_rq.c
694
ntp = (struct smb_ntrq *)kmem_alloc(sizeof (*ntp), KM_SLEEP);
usr/src/uts/common/fs/smbclnt/netsmb/smb_sign.c
87
vcp->vc_mackey = kmem_zalloc(vcp->vc_mackeylen, KM_SLEEP);
usr/src/uts/common/fs/smbclnt/netsmb/smb_smb.c
707
unc_name = kmem_alloc(unc_len, KM_SLEEP);
usr/src/uts/common/fs/smbclnt/netsmb/smb_subrs.c
1062
cbuf = kmem_alloc(cbufalloc, KM_SLEEP);
usr/src/uts/common/fs/smbclnt/netsmb/smb_subrs.c
1147
cbuf = kmem_alloc(cbufalloc, KM_SLEEP);
usr/src/uts/common/fs/smbclnt/netsmb/smb_tran.c
115
sa2 = kmem_alloc(len, KM_SLEEP);
usr/src/uts/common/fs/smbclnt/netsmb/smb_trantcp.c
510
nbp = kmem_zalloc(sizeof (struct nbpcb), KM_SLEEP);
usr/src/uts/common/fs/smbclnt/netsmb/smb_usr.c
125
ioc = kmem_alloc(sizeof (*ioc), KM_SLEEP);
usr/src/uts/common/fs/smbclnt/netsmb/smb_usr.c
228
ioc = kmem_alloc(sizeof (*ioc), KM_SLEEP);
usr/src/uts/common/fs/smbclnt/netsmb/smb_usr.c
299
ioc = kmem_alloc(sizeof (*ioc), KM_SLEEP);
usr/src/uts/common/fs/smbclnt/netsmb/smb_usr.c
384
ioc = kmem_alloc(sizeof (*ioc), KM_SLEEP);
usr/src/uts/common/fs/smbclnt/netsmb/smb_usr.c
494
ossn = kmem_alloc(sizeof (*ossn), KM_SLEEP);
usr/src/uts/common/fs/smbclnt/netsmb/smb_usr.c
633
tcon = kmem_alloc(sizeof (*tcon), KM_SLEEP);
usr/src/uts/common/fs/smbclnt/smbfs/smbfs_acl.c
467
vsa->vsa_aclentp = kmem_alloc(vsa->vsa_aclentsz, KM_SLEEP);
usr/src/uts/common/fs/smbclnt/smbfs/smbfs_client.c
713
smg = kmem_alloc(sizeof (*smg), KM_SLEEP);
usr/src/uts/common/fs/smbclnt/smbfs/smbfs_node.c
138
cp = kmem_alloc(nmlen + 1, KM_SLEEP);
usr/src/uts/common/fs/smbclnt/smbfs/smbfs_smb.c
585
ctx = kmem_zalloc(sizeof (*ctx), KM_SLEEP);
usr/src/uts/common/fs/smbclnt/smbfs/smbfs_smb1.c
696
ctx->f_name = kmem_alloc(ctx->f_namesz, KM_SLEEP);
usr/src/uts/common/fs/smbclnt/smbfs/smbfs_smb2.c
723
ctx->f_name = kmem_alloc(ctx->f_namesz, KM_SLEEP);
usr/src/uts/common/fs/smbclnt/smbfs/smbfs_subr2.c
1074
vplist = kmem_alloc(num * sizeof (*vplist), KM_SLEEP);
usr/src/uts/common/fs/smbclnt/smbfs/smbfs_subr2.c
259
rpath = kmem_alloc(rpalloc, KM_SLEEP);
usr/src/uts/common/fs/smbclnt/smbfs/smbfs_subr2.c
417
np = kmem_cache_alloc(smbnode_cache, KM_SLEEP);
usr/src/uts/common/fs/smbclnt/smbfs/smbfs_subr2.c
418
new_vp = vn_alloc(KM_SLEEP);
usr/src/uts/common/fs/smbclnt/smbfs/smbfs_subr2.c
427
new_rpath = kmem_alloc(rplen + 1, KM_SLEEP);
usr/src/uts/common/fs/smbclnt/smbfs/smbfs_vfsops.c
546
smi = kmem_zalloc(sizeof (*smi), KM_SLEEP);
usr/src/uts/common/fs/smbclnt/smbfs/smbfs_vnops.c
2842
tmpname = kmem_alloc(MAXNAMELEN, KM_SLEEP);
usr/src/uts/common/fs/smbclnt/smbfs/smbfs_vnops.c
3417
dp = kmem_alloc(dbufsiz, KM_SLEEP);
usr/src/uts/common/fs/smbclnt/smbfs/smbfs_vnops.c
4546
dmapp = kmem_zalloc(sizeof (*dmapp), KM_SLEEP);
usr/src/uts/common/fs/smbclnt/smbfs/smbfs_xattr.c
361
ctx->f_name = kmem_alloc(ctx->f_namesz, KM_SLEEP);
usr/src/uts/common/fs/smbsrv/smb2_create.c
883
op->sd = kmem_alloc(sizeof (smb_sd_t), KM_SLEEP);
usr/src/uts/common/fs/smbsrv/smb2_durable.c
1077
(void) nvlist_alloc(&of->dh_nvlist, NV_UNIQUE_NAME, KM_SLEEP);
usr/src/uts/common/fs/smbsrv/smb2_durable.c
1160
buf = kmem_zalloc(buflen, KM_SLEEP);
usr/src/uts/common/fs/smbsrv/smb2_durable.c
1163
NV_ENCODE_XDR, KM_SLEEP);
usr/src/uts/common/fs/smbsrv/smb2_durable.c
1252
vec = kmem_alloc(vec_sz, KM_SLEEP);
usr/src/uts/common/fs/smbsrv/smb2_durable.c
392
nvl_buf = kmem_alloc(smb2_dh_max_cah_size, KM_SLEEP);
usr/src/uts/common/fs/smbsrv/smb2_durable.c
393
str_info = kmem_alloc(sizeof (smb_streaminfo_t), KM_SLEEP);
usr/src/uts/common/fs/smbsrv/smb2_durable.c
919
rc = nvlist_unpack(fbuf, flen, nvlpp, KM_SLEEP);
usr/src/uts/common/fs/smbsrv/smb2_lease.c
172
newlease = kmem_cache_alloc(smb_lease_cache, KM_SLEEP);
usr/src/uts/common/fs/smbsrv/smb2_qinfo_quota.c
84
request.qq_root_path = kmem_zalloc(MAXPATHLEN, KM_SLEEP);
usr/src/uts/common/fs/smbsrv/smb2_query_dir.c
324
tbuf = kmem_alloc(tbuflen, KM_SLEEP);
usr/src/uts/common/fs/smbsrv/smb2_read.c
51
su = kmem_zalloc(sizeof (*su), KM_SLEEP);
usr/src/uts/common/fs/smbsrv/smb2_setinfo_quota.c
69
root_path = kmem_zalloc(MAXPATHLEN, KM_SLEEP);
usr/src/uts/common/fs/smbsrv/smb2_signing.c
90
mech = kmem_zalloc(sizeof (*mech), KM_SLEEP);
usr/src/uts/common/fs/smbsrv/smb31_preauth.c
62
mech = kmem_zalloc(sizeof (*mech), KM_SLEEP);
usr/src/uts/common/fs/smbsrv/smb3_encrypt.c
89
mech = kmem_zalloc(sizeof (*mech), KM_SLEEP);
usr/src/uts/common/fs/smbsrv/smb_acl.c
1004
vsecattr->vsa_aclentp = kmem_alloc(*aclbsize, KM_SLEEP);
usr/src/uts/common/fs/smbsrv/smb_acl.c
1054
vsecattr->vsa_aclentp = kmem_alloc(*aclbsize, KM_SLEEP);
usr/src/uts/common/fs/smbsrv/smb_acl.c
123
acl = kmem_zalloc(size, KM_SLEEP);
usr/src/uts/common/fs/smbsrv/smb_acl.c
427
sidstr = kmem_alloc(SMB_SID_STRSZ, KM_SLEEP);
usr/src/uts/common/fs/smbsrv/smb_acl.c
618
acl->acl_aclp = kmem_zalloc(acl->acl_entry_size * acenum, KM_SLEEP);
usr/src/uts/common/fs/smbsrv/smb_acl.c
925
KM_SLEEP);
usr/src/uts/common/fs/smbsrv/smb_acl.c
940
acl_info->acl_aclp = kmem_alloc(aclbsize, KM_SLEEP);
usr/src/uts/common/fs/smbsrv/smb_alloc.c
227
smh = kmem_zalloc(size + sizeof (smb_mem_header_t), KM_SLEEP);
usr/src/uts/common/fs/smbsrv/smb_alloc.c
229
smh = kmem_alloc(size + sizeof (smb_mem_header_t), KM_SLEEP);
usr/src/uts/common/fs/smbsrv/smb_authenticate.c
148
sbuf = kmem_alloc(slen, KM_SLEEP);
usr/src/uts/common/fs/smbsrv/smb_authenticate.c
466
token = kmem_zalloc(sizeof (smb_token_t), KM_SLEEP);
usr/src/uts/common/fs/smbsrv/smb_authenticate.c
650
*recvbuf = kmem_alloc(hdr->lmh_msglen, KM_SLEEP);
usr/src/uts/common/fs/smbsrv/smb_common_transact.c
1876
xa = kmem_zalloc(sizeof (smb_xa_t), KM_SLEEP);
usr/src/uts/common/fs/smbsrv/smb_cred.c
142
lp = kmem_zalloc(KSIDLIST_MEM(token_grps->i_cnt), KM_SLEEP);
usr/src/uts/common/fs/smbsrv/smb_delete.c
377
odirent = kmem_alloc(sizeof (smb_odirent_t), KM_SLEEP);
usr/src/uts/common/fs/smbsrv/smb_dfs.c
415
target = kmem_alloc(MAXPATHLEN, KM_SLEEP);
usr/src/uts/common/fs/smbsrv/smb_dfs.c
614
target = kmem_alloc(MAXPATHLEN, KM_SLEEP);
usr/src/uts/common/fs/smbsrv/smb_find.c
648
vdb = kmem_alloc(sizeof (smb_vdb_t), KM_SLEEP);
usr/src/uts/common/fs/smbsrv/smb_fsops.c
1111
longname = kmem_alloc(MAXNAMELEN, KM_SLEEP);
usr/src/uts/common/fs/smbsrv/smb_fsops.c
1934
*sname = kmem_alloc(MAXNAMELEN, KM_SLEEP);
usr/src/uts/common/fs/smbsrv/smb_fsops.c
1935
fname = kmem_alloc(MAXNAMELEN, KM_SLEEP);
usr/src/uts/common/fs/smbsrv/smb_fsops.c
1996
od_name = kmem_alloc(MAXNAMELEN, KM_SLEEP);
usr/src/uts/common/fs/smbsrv/smb_fsops.c
2101
od_name = kmem_alloc(MAXNAMELEN, KM_SLEEP);
usr/src/uts/common/fs/smbsrv/smb_fsops.c
2113
longname = kmem_alloc(MAXNAMELEN, KM_SLEEP);
usr/src/uts/common/fs/smbsrv/smb_fsops.c
320
fname = kmem_alloc(MAXNAMELEN, KM_SLEEP);
usr/src/uts/common/fs/smbsrv/smb_fsops.c
321
sname = kmem_alloc(MAXNAMELEN, KM_SLEEP);
usr/src/uts/common/fs/smbsrv/smb_fsops.c
335
longname = kmem_alloc(MAXNAMELEN, KM_SLEEP);
usr/src/uts/common/fs/smbsrv/smb_fsops.c
629
longname = kmem_alloc(MAXNAMELEN, KM_SLEEP);
usr/src/uts/common/fs/smbsrv/smb_fsops.c
759
fname = kmem_alloc(MAXNAMELEN, KM_SLEEP);
usr/src/uts/common/fs/smbsrv/smb_fsops.c
760
sname = kmem_alloc(MAXNAMELEN, KM_SLEEP);
usr/src/uts/common/fs/smbsrv/smb_fsops.c
819
longname = kmem_alloc(MAXNAMELEN, KM_SLEEP);
usr/src/uts/common/fs/smbsrv/smb_fsops.c
907
odirent = kmem_alloc(sizeof (smb_odirent_t), KM_SLEEP);
usr/src/uts/common/fs/smbsrv/smb_fsops.c
971
longname = kmem_alloc(MAXNAMELEN, KM_SLEEP);
usr/src/uts/common/fs/smbsrv/smb_idmap.c
195
sib->sib_maps = kmem_zalloc(sib->sib_size, KM_SLEEP);
usr/src/uts/common/fs/smbsrv/smb_init.c
375
ioc = kmem_zalloc(alloclen, KM_SLEEP);
usr/src/uts/common/fs/smbsrv/smb_kdoor.c
276
buf = kmem_zalloc(len, KM_SLEEP);
usr/src/uts/common/fs/smbsrv/smb_kshare.c
116
buf = kmem_alloc(SMB_SHARE_DSIZE, KM_SLEEP);
usr/src/uts/common/fs/smbsrv/smb_kshare.c
122
lmshare = kmem_alloc(sizeof (smb_share_t), KM_SLEEP);
usr/src/uts/common/fs/smbsrv/smb_kshare.c
133
str = kmem_alloc(MAXPATHLEN, KM_SLEEP);
usr/src/uts/common/fs/smbsrv/smb_kshare.c
384
rc = nvlist_unpack(ioc->shr, ioc->shrlen, &shrlist, KM_SLEEP);
usr/src/uts/common/fs/smbsrv/smb_kshare.c
479
ux = kmem_cache_alloc(smb_kshare_cache_unexport, KM_SLEEP);
usr/src/uts/common/fs/smbsrv/smb_kshare.c
853
shr = kmem_cache_alloc(smb_kshare_cache_share, KM_SLEEP);
usr/src/uts/common/fs/smbsrv/smb_kshare.c
952
shr = kmem_cache_alloc(smb_kshare_cache_share, KM_SLEEP);
usr/src/uts/common/fs/smbsrv/smb_kutil.c
1968
smb_hash_t *hash = kmem_alloc(sizeof (*hash), KM_SLEEP);
usr/src/uts/common/fs/smbsrv/smb_kutil.c
1977
KM_SLEEP);
usr/src/uts/common/fs/smbsrv/smb_kutil.c
268
KM_SLEEP);
usr/src/uts/common/fs/smbsrv/smb_kutil.c
455
dtor = kmem_cache_alloc(smb_dtor_cache, KM_SLEEP);
usr/src/uts/common/fs/smbsrv/smb_kutil.c
668
dtor = kmem_cache_alloc(smb_dtor_cache, KM_SLEEP);
usr/src/uts/common/fs/smbsrv/smb_lock.c
993
lock = kmem_cache_alloc(smb_cache_lock, KM_SLEEP);
usr/src/uts/common/fs/smbsrv/smb_mangle_name.c
391
buf = kmem_alloc(SMB_UNMANGLE_BUFSIZE, KM_SLEEP);
usr/src/uts/common/fs/smbsrv/smb_mbuf_util.c
112
mbc = kmem_cache_alloc(smb_mbc_cache, KM_SLEEP);
usr/src/uts/common/fs/smbsrv/smb_mbuf_util.c
226
buf = kmem_alloc(len, KM_SLEEP);
usr/src/uts/common/fs/smbsrv/smb_mbuf_util.c
657
m = kmem_cache_alloc(smb_mbuf_cache, KM_SLEEP);
usr/src/uts/common/fs/smbsrv/smb_mbuf_util.c
673
p = kmem_cache_alloc(smb_mbufcl_cache, KM_SLEEP);
usr/src/uts/common/fs/smbsrv/smb_net.c
385
vdb = kmem_alloc(sizeof (*vdb), KM_SLEEP);
usr/src/uts/common/fs/smbsrv/smb_node.c
1238
node = kmem_cache_alloc(smb_node_cache, KM_SLEEP);
usr/src/uts/common/fs/smbsrv/smb_node.c
655
buf = kmem_alloc(SMB_ODIR_BUFSIZE, KM_SLEEP);
usr/src/uts/common/fs/smbsrv/smb_nt_transact_create.c
112
op->sd = kmem_alloc(sizeof (smb_sd_t), KM_SLEEP);
usr/src/uts/common/fs/smbsrv/smb_nt_transact_quota.c
133
request.qq_root_path = kmem_zalloc(MAXPATHLEN, KM_SLEEP);
usr/src/uts/common/fs/smbsrv/smb_nt_transact_quota.c
269
root_path = kmem_zalloc(MAXPATHLEN, KM_SLEEP);
usr/src/uts/common/fs/smbsrv/smb_nt_transact_security.c
471
sid = kmem_alloc(sidlen, KM_SLEEP);
usr/src/uts/common/fs/smbsrv/smb_odir.c
630
odirent = kmem_alloc(sizeof (smb_odirent_t), KM_SLEEP);
usr/src/uts/common/fs/smbsrv/smb_odir.c
727
odirent = kmem_alloc(sizeof (smb_odirent_t), KM_SLEEP);
usr/src/uts/common/fs/smbsrv/smb_odir.c
934
od = kmem_cache_alloc(smb_cache_odir, KM_SLEEP);
usr/src/uts/common/fs/smbsrv/smb_ofile.c
1868
buf = kmem_zalloc(MAXPATHLEN, KM_SLEEP);
usr/src/uts/common/fs/smbsrv/smb_ofile.c
1878
path = kmem_zalloc(MAXPATHLEN, KM_SLEEP);
usr/src/uts/common/fs/smbsrv/smb_ofile.c
1913
fi->fi_username = kmem_alloc(fi->fi_namelen, KM_SLEEP);
usr/src/uts/common/fs/smbsrv/smb_ofile.c
343
of = kmem_cache_alloc(smb_cache_ofile, KM_SLEEP);
usr/src/uts/common/fs/smbsrv/smb_opipe.c
208
buf = kmem_alloc(buflen, KM_SLEEP);
usr/src/uts/common/fs/smbsrv/smb_opipe.c
58
opipe = kmem_cache_alloc(smb_cache_opipe, KM_SLEEP);
usr/src/uts/common/fs/smbsrv/smb_pathname.c
193
usepath = kmem_alloc(SMB_MAXPATHLEN, KM_SLEEP);
usr/src/uts/common/fs/smbsrv/smb_pathname.c
241
KM_SLEEP);
usr/src/uts/common/fs/smbsrv/smb_pathname.c
478
component = kmem_alloc(MAXNAMELEN, KM_SLEEP);
usr/src/uts/common/fs/smbsrv/smb_pathname.c
479
real_name = kmem_alloc(MAXNAMELEN, KM_SLEEP);
usr/src/uts/common/fs/smbsrv/smb_print.c
129
sp = kmem_zalloc(sizeof (smb_kspooldoc_t), KM_SLEEP);
usr/src/uts/common/fs/smbsrv/smb_print.c
251
param = kmem_zalloc(sizeof (smb_rw_param_t), KM_SLEEP);
usr/src/uts/common/fs/smbsrv/smb_query_fileinfo.c
245
qinfo = kmem_alloc(sizeof (smb_queryinfo_t), KM_SLEEP);
usr/src/uts/common/fs/smbsrv/smb_query_fileinfo.c
318
qinfo = kmem_alloc(sizeof (smb_queryinfo_t), KM_SLEEP);
usr/src/uts/common/fs/smbsrv/smb_quota.c
167
qsid = kmem_zalloc(sizeof (smb_quota_sid_t), KM_SLEEP);
usr/src/uts/common/fs/smbsrv/smb_quota.c
236
quota = kmem_zalloc(sizeof (smb_quota_t), KM_SLEEP);
usr/src/uts/common/fs/smbsrv/smb_quota.c
391
request.qq_root_path = kmem_zalloc(MAXPATHLEN, KM_SLEEP);
usr/src/uts/common/fs/smbsrv/smb_quota.c
86
sid = kmem_zalloc(sizeof (smb_quota_sid_t), KM_SLEEP);
usr/src/uts/common/fs/smbsrv/smb_read.c
150
param = kmem_zalloc(sizeof (smb_rw_param_t), KM_SLEEP);
usr/src/uts/common/fs/smbsrv/smb_read.c
273
param = kmem_zalloc(sizeof (smb_rw_param_t), KM_SLEEP);
usr/src/uts/common/fs/smbsrv/smb_read.c
66
param = kmem_zalloc(sizeof (smb_rw_param_t), KM_SLEEP);
usr/src/uts/common/fs/smbsrv/smb_server.c
2410
event = kmem_cache_alloc(smb_cache_event, KM_SLEEP);
usr/src/uts/common/fs/smbsrv/smb_server.c
2669
sf = kmem_zalloc(sizeof (smb_spoolfid_t), KM_SLEEP);
usr/src/uts/common/fs/smbsrv/smb_server.c
436
sv = kmem_zalloc(sizeof (smb_server_t), KM_SLEEP);
usr/src/uts/common/fs/smbsrv/smb_server.c
468
sizeof (smb_disp_stats_t), KM_SLEEP);
usr/src/uts/common/fs/smbsrv/smb_server.c
471
sizeof (smb_disp_stats_t), KM_SLEEP);
usr/src/uts/common/fs/smbsrv/smb_server.c
863
spdoc = kmem_zalloc(sizeof (*spdoc), KM_SLEEP);
usr/src/uts/common/fs/smbsrv/smb_session.c
1339
sr = kmem_cache_alloc(smb_cache_request, KM_SLEEP);
usr/src/uts/common/fs/smbsrv/smb_session.c
227
names = kmem_alloc(hdr.xh_length, KM_SLEEP);
usr/src/uts/common/fs/smbsrv/smb_session.c
270
wbuf = kmem_alloc((SMB_PI_MAX_HOST * sizeof (smb_wchar_t)), KM_SLEEP);
usr/src/uts/common/fs/smbsrv/smb_session.c
705
session = kmem_cache_alloc(smb_cache_session, KM_SLEEP);
usr/src/uts/common/fs/smbsrv/smb_set_fileinfo.c
288
name = kmem_alloc(MAXNAMELEN, KM_SLEEP);
usr/src/uts/common/fs/smbsrv/smb_signing.c
159
mech = kmem_zalloc(sizeof (*mech), KM_SLEEP);
usr/src/uts/common/fs/smbsrv/smb_signing.c
179
sign->mackey = kmem_alloc(sign->mackey_len, KM_SLEEP);
usr/src/uts/common/fs/smbsrv/smb_tree.c
1510
*namestr = kmem_alloc(*namelen, KM_SLEEP);
usr/src/uts/common/fs/smbsrv/smb_tree.c
918
tree = kmem_cache_alloc(smb_cache_tree, KM_SLEEP);
usr/src/uts/common/fs/smbsrv/smb_user.c
245
user = kmem_cache_alloc(smb_cache_user, KM_SLEEP);
usr/src/uts/common/fs/smbsrv/smb_user.c
621
fq_name = kmem_alloc(MAXNAMELEN, KM_SLEEP);
usr/src/uts/common/fs/smbsrv/smb_user.c
995
buf = kmem_alloc(MAXNAMELEN, KM_SLEEP);
usr/src/uts/common/fs/smbsrv/smb_vops.c
1245
solaris_stream_name = kmem_alloc(MAXNAMELEN, KM_SLEEP);
usr/src/uts/common/fs/smbsrv/smb_vops.c
1254
name = kmem_zalloc(MAXNAMELEN, KM_SLEEP);
usr/src/uts/common/fs/smbsrv/smb_vops.c
1285
solaris_stream_name = kmem_alloc(MAXNAMELEN, KM_SLEEP);
usr/src/uts/common/fs/smbsrv/smb_vops.c
1313
solaris_stream_name = kmem_alloc(MAXNAMELEN, KM_SLEEP);
usr/src/uts/common/fs/smbsrv/smb_vops.c
891
buf = kmem_zalloc(MAXNAMELEN, KM_SLEEP);
usr/src/uts/common/fs/smbsrv/smb_vops.c
924
tbuf = kmem_zalloc(MAXNAMELEN, KM_SLEEP);
usr/src/uts/common/fs/smbsrv/smb_vops.c
931
fbuf = kmem_zalloc(MAXNAMELEN, KM_SLEEP);
usr/src/uts/common/fs/smbsrv/smb_vss.c
207
path = kmem_alloc(MAXPATHLEN, KM_SLEEP);
usr/src/uts/common/fs/smbsrv/smb_vss.c
95
root_path = kmem_zalloc(MAXPATHLEN, KM_SLEEP);
usr/src/uts/common/fs/smbsrv/smb_write.c
138
param = kmem_zalloc(sizeof (smb_rw_param_t), KM_SLEEP);
usr/src/uts/common/fs/smbsrv/smb_write.c
240
param = kmem_zalloc(sizeof (smb_rw_param_t), KM_SLEEP);
usr/src/uts/common/fs/smbsrv/smb_write.c
378
param = kmem_zalloc(sizeof (smb_rw_param_t), KM_SLEEP);
usr/src/uts/common/fs/smbsrv/smb_write.c
55
param = kmem_zalloc(sizeof (smb_rw_param_t), KM_SLEEP);
usr/src/uts/common/fs/sockfs/sockcommon.c
83
int kmflags = (flags == SOCKET_SLEEP) ? KM_SLEEP : KM_NOSLEEP;
usr/src/uts/common/fs/sockfs/sockcommon_sops.c
1795
abuf = kmem_alloc(addrlen, KM_SLEEP);
usr/src/uts/common/fs/sockfs/sockcommon_sops.c
1808
control = kmem_zalloc(controllen, KM_SLEEP);
usr/src/uts/common/fs/sockfs/sockcommon_sops.c
1867
control = kmem_zalloc(controllen, KM_SLEEP);
usr/src/uts/common/fs/sockfs/sockcommon_subr.c
1242
kmflags = (sflags & SOCKET_NOSLEEP) ? KM_NOSLEEP : KM_SLEEP;
usr/src/uts/common/fs/sockfs/sockcommon_subr.c
2328
so->so_protocol, devpath, KM_SLEEP, &error);
usr/src/uts/common/fs/sockfs/sockfilter.c
1205
modpath = kmem_alloc(MAXPATHLEN, KM_SLEEP);
usr/src/uts/common/fs/sockfs/sockfilter.c
1461
mod = kmem_zalloc(sizeof (sof_module_t), KM_SLEEP);
usr/src/uts/common/fs/sockfs/sockfilter.c
1462
mod->sofm_name = kmem_alloc(strlen(name) + 1, KM_SLEEP);
usr/src/uts/common/fs/sockfs/sockparams.c
870
KM_SLEEP);
usr/src/uts/common/fs/sockfs/socksubr.c
163
char *pathname = kmem_alloc(MAXPATHLEN, KM_SLEEP);
usr/src/uts/common/fs/sockfs/socksubr.c
720
buf = kmem_alloc(size, KM_SLEEP);
usr/src/uts/common/fs/sockfs/socksubr.c
822
fdbuf = kmem_alloc(fdbufsize, KM_SLEEP);
usr/src/uts/common/fs/sockfs/socksyscalls.c
1115
aiov = kmem_alloc(iovsize, KM_SLEEP);
usr/src/uts/common/fs/sockfs/socksyscalls.c
1130
aiov32 = kmem_alloc(iov32size, KM_SLEEP);
usr/src/uts/common/fs/sockfs/socksyscalls.c
122
buf = kmem_alloc(MAXPATHLEN, KM_SLEEP);
usr/src/uts/common/fs/sockfs/socksyscalls.c
1265
control = kmem_alloc(controllen, KM_SLEEP);
usr/src/uts/common/fs/sockfs/socksyscalls.c
1402
aiov = kmem_alloc(iovsize, KM_SLEEP);
usr/src/uts/common/fs/sockfs/socksyscalls.c
1417
aiov32 = kmem_alloc(iov32size, KM_SLEEP);
usr/src/uts/common/fs/sockfs/socksyscalls.c
1547
sock_addrp = (struct sockaddr *)kmem_alloc(sock_addrlen, KM_SLEEP);
usr/src/uts/common/fs/sockfs/socksyscalls.c
1584
sock_addrp = (struct sockaddr *)kmem_alloc(sock_addrlen, KM_SLEEP);
usr/src/uts/common/fs/sockfs/socksyscalls.c
1628
optval = kmem_alloc(optlen, KM_SLEEP);
usr/src/uts/common/fs/sockfs/socksyscalls.c
1673
&buffer : kmem_alloc((size_t)option_len, KM_SLEEP);
usr/src/uts/common/fs/sockfs/socksyscalls.c
1714
buf = kmem_alloc(MAXPATHLEN, KM_SLEEP);
usr/src/uts/common/fs/sockfs/socksyscalls.c
1721
kdevpath = kmem_alloc(pathlen, KM_SLEEP);
usr/src/uts/common/fs/sockfs/socksyscalls.c
1726
kmodule = kmem_alloc(pathlen, KM_SLEEP);
usr/src/uts/common/fs/sockfs/socksyscalls.c
1735
kdevpath, pathlen, 0, KM_SLEEP, &error);
usr/src/uts/common/fs/sockfs/socksyscalls.c
1789
ent = kmem_zalloc(sizeof (sof_entry_t), KM_SLEEP);
usr/src/uts/common/fs/sockfs/socksyscalls.c
1850
ent->sofe_hintarg = kmem_alloc(len, KM_SLEEP);
usr/src/uts/common/fs/sockfs/socksyscalls.c
1871
ent->sofe_socktuple = kmem_alloc(tuplesz, KM_SLEEP);
usr/src/uts/common/fs/sockfs/socksyscalls.c
2089
snfq = kmem_zalloc(sizeof (struct sendfile_queue), KM_SLEEP);
usr/src/uts/common/fs/sockfs/socksyscalls.c
2324
sr = (snf_req_t *)kmem_zalloc(sizeof (snf_req_t), KM_SLEEP);
usr/src/uts/common/fs/sockfs/socksyscalls.c
239
faddr = (char *)kmem_alloc(namelen, KM_SLEEP);
usr/src/uts/common/fs/sockfs/socksyscalls.c
2573
KM_SLEEP);
usr/src/uts/common/fs/sockfs/socksyscalls.c
266
nfaddr = (char *)kmem_alloc(namelen + 1, KM_SLEEP);
usr/src/uts/common/fs/sockfs/socksyscalls.c
2664
snfi = kmem_alloc(sizeof (*snfi), KM_SLEEP);
usr/src/uts/common/fs/sockfs/socksyscalls.c
413
name = kmem_alloc(namelen, KM_SLEEP);
usr/src/uts/common/fs/sockfs/socksyscalls.c
470
name = kmem_alloc(namelen, KM_SLEEP);
usr/src/uts/common/fs/sockfs/socksyscalls.c
704
addrp = (struct sockaddr *)kmem_alloc(addrlen, KM_SLEEP);
usr/src/uts/common/fs/sockfs/socktpi.c
290
so = kmem_cache_alloc(cp, KM_SLEEP);
usr/src/uts/common/fs/sockfs/socktpi.c
3192
abuf = kmem_alloc(addrlen, KM_SLEEP);
usr/src/uts/common/fs/sockfs/socktpi.c
3205
control = kmem_zalloc(controllen, KM_SLEEP);
usr/src/uts/common/fs/sockfs/socktpi.c
3271
control = kmem_zalloc(controllen, KM_SLEEP);
usr/src/uts/common/fs/sockfs/socktpi.c
4800
addr = kmem_alloc(addrlen, KM_SLEEP);
usr/src/uts/common/fs/sockfs/socktpi.c
4925
addr = kmem_alloc(addrlen, KM_SLEEP);
usr/src/uts/common/fs/sockfs/socktpi.c
6003
kstrlist.sl_modlist = kmem_zalloc(kstrlistsize, KM_SLEEP);
usr/src/uts/common/fs/sockfs/socktpi.c
6329
(void) sotpi_info_create(so, KM_SLEEP);
usr/src/uts/common/fs/sockfs/socktpi.c
6461
sti->sti_laddr_sa = kmem_alloc(sti->sti_laddr_maxlen * 2, KM_SLEEP);
usr/src/uts/common/fs/sockfs/socktpi.c
6687
smodp = kmem_zalloc(sizeof (*smodp), KM_SLEEP);
usr/src/uts/common/fs/sockfs/socktpi.c
6688
smodp->smod_name = kmem_alloc(sizeof (SOTPI_SMOD_NAME), KM_SLEEP);
usr/src/uts/common/fs/sockfs/sodirect.c
365
sodp = kmem_cache_alloc(sock_sod_cache, KM_SLEEP);
usr/src/uts/common/fs/specfs/specsubr.c
1031
path = kmem_alloc(MAXPATHLEN, KM_SLEEP);
usr/src/uts/common/fs/specfs/specsubr.c
138
nsp = kmem_cache_alloc(snode_cache, KM_SLEEP);
usr/src/uts/common/fs/specfs/specsubr.c
139
csp = kmem_cache_alloc(snode_cache, KM_SLEEP);
usr/src/uts/common/fs/specfs/specsubr.c
230
sp = kmem_cache_alloc(snode_cache, KM_SLEEP);
usr/src/uts/common/fs/specfs/specsubr.c
591
nsp = kmem_cache_alloc(snode_cache, KM_SLEEP);
usr/src/uts/common/fs/specfs/specsubr.c
976
path = kmem_alloc(MAXPATHLEN, KM_SLEEP);
usr/src/uts/common/fs/swapfs/swap_subr.c
175
KM_SLEEP);
usr/src/uts/common/fs/swapfs/swap_subr.c
188
kmem_zalloc(sw_freelist_size*sizeof (struct async_reqs), KM_SLEEP);
usr/src/uts/common/fs/swapfs/swap_subr.c
225
vp = vn_alloc(KM_SLEEP);
usr/src/uts/common/fs/tmpfs/tmp_subr.c
117
return (kmem_zalloc(size, KM_SLEEP));
usr/src/uts/common/fs/tmpfs/tmp_tnode.c
195
t->tn_vnode = vn_alloc(KM_SLEEP);
usr/src/uts/common/fs/tmpfs/tmp_vnops.c
1511
outbuf = kmem_alloc(bufsize, KM_SLEEP);
usr/src/uts/common/fs/udfs/udf_bmap.c
1057
sizeof (struct icb_ext), KM_SLEEP);
usr/src/uts/common/fs/udfs/udf_bmap.c
1109
if ((error = ud_bump_ext_count(ip, KM_SLEEP)) != 0) {
usr/src/uts/common/fs/udfs/udf_bmap.c
1177
if ((error = ud_bump_ext_count(ip, KM_SLEEP))
usr/src/uts/common/fs/udfs/udf_bmap.c
1268
bp = (struct buf *)kmem_zalloc(biosize(), KM_SLEEP);
usr/src/uts/common/fs/udfs/udf_bmap.c
1277
bp->b_un.b_addr = kmem_zalloc(bp->b_bcount, KM_SLEEP);
usr/src/uts/common/fs/udfs/udf_bmap.c
265
ip->i_ext_count * sizeof (struct icb_ext), KM_SLEEP);
usr/src/uts/common/fs/udfs/udf_bmap.c
631
addr = kmem_zalloc(count * sizeof (struct icb_ext), KM_SLEEP);
usr/src/uts/common/fs/udfs/udf_bmap.c
662
sizeof (struct icb_ext), KM_SLEEP);
usr/src/uts/common/fs/udfs/udf_bmap.c
949
if ((error = ud_bump_ext_count(ip, KM_SLEEP)) != 0) {
usr/src/uts/common/fs/udfs/udf_bmap.c
996
ASSERT(sleep_flag == KM_SLEEP);
usr/src/uts/common/fs/udfs/udf_dir.c
1039
addr = kmem_zalloc(desc_len, KM_SLEEP);
usr/src/uts/common/fs/udfs/udf_dir.c
1307
buf = (uint8_t *)kmem_zalloc(udf_vfsp->udf_lbsize, KM_SLEEP);
usr/src/uts/common/fs/udfs/udf_dir.c
177
dname = kmem_zalloc(1024, KM_SLEEP);
usr/src/uts/common/fs/udfs/udf_dir.c
178
buf = kmem_zalloc(udf_vfsp->udf_lbsize, KM_SLEEP);
usr/src/uts/common/fs/udfs/udf_dir.c
472
buf = kmem_zalloc(udf_vfsp->udf_lbsize, KM_SLEEP);
usr/src/uts/common/fs/udfs/udf_dir.c
665
buf = (uint8_t *)kmem_zalloc(udf_vfsp->udf_lbsize, KM_SLEEP);
usr/src/uts/common/fs/udfs/udf_dir.c
895
dname = (uint8_t *)kmem_zalloc(1024, KM_SLEEP);
usr/src/uts/common/fs/udfs/udf_inode.c
351
KM_SLEEP);
usr/src/uts/common/fs/udfs/udf_inode.c
353
vp = vn_alloc(KM_SLEEP);
usr/src/uts/common/fs/udfs/udf_inode.c
735
sizeof (struct icb_ext), KM_SLEEP);
usr/src/uts/common/fs/udfs/udf_inode.c
760
KM_SLEEP);
usr/src/uts/common/fs/udfs/udf_inode.c
797
sizeof (struct icb_ext), KM_SLEEP);
usr/src/uts/common/fs/udfs/udf_inode.c
823
KM_SLEEP);
usr/src/uts/common/fs/udfs/udf_subr.c
1551
w2_str = (uint16_t *)kmem_zalloc(512, KM_SLEEP);
usr/src/uts/common/fs/udfs/udf_vfsops.c
1008
kmem_zalloc(sizeof (struct udf_vfs), KM_SLEEP);
usr/src/uts/common/fs/udfs/udf_vfsops.c
1147
sizeof (struct ud_part), KM_SLEEP);
usr/src/uts/common/fs/udfs/udf_vfsops.c
1280
(udf_vfsp->udf_nmaps + 1), KM_SLEEP);
usr/src/uts/common/fs/udfs/udf_vfsops.c
1307
(udf_vfsp->udf_nmaps + 1), KM_SLEEP);
usr/src/uts/common/fs/udfs/udf_vfsops.c
1345
KM_SLEEP);
usr/src/uts/common/fs/udfs/udf_vfsops.c
1708
KM_SLEEP);
usr/src/uts/common/fs/udfs/udf_vfsops.c
1710
KM_SLEEP);
usr/src/uts/common/fs/udfs/udf_vfsops.c
1712
KM_SLEEP);
usr/src/uts/common/fs/udfs/udf_vfsops.c
817
udf_vfsp->udf_fsmnt = kmem_zalloc(strlen(name) + 1, KM_SLEEP);
usr/src/uts/common/fs/udfs/udf_vnops.c
1153
outb = outbuf = (char *)kmem_alloc((uint32_t)bufsize, KM_SLEEP);
usr/src/uts/common/fs/udfs/udf_vnops.c
1157
dname = (uint8_t *)kmem_zalloc(1024, KM_SLEEP);
usr/src/uts/common/fs/udfs/udf_vnops.c
1158
buf = (uint8_t *)kmem_zalloc(udf_vfsp->udf_lbsize, KM_SLEEP);
usr/src/uts/common/fs/udfs/udf_vnops.c
1288
dname = kmem_zalloc(1024, KM_SLEEP);
usr/src/uts/common/fs/udfs/udf_vnops.c
1289
uname = kmem_zalloc(PAGESIZE, KM_SLEEP);
usr/src/uts/common/fs/udfs/udf_vnops.c
1423
dname = kmem_zalloc(1024, KM_SLEEP);
usr/src/uts/common/fs/udfs/udf_vnops.c
1424
uname = kmem_zalloc(PAGESIZE, KM_SLEEP);
usr/src/uts/common/fs/udfs/udf_vnops.c
3475
mm = (mio_master_t *)kmem_zalloc(alloc_sz, KM_SLEEP);
usr/src/uts/common/fs/ufs/lufs.c
318
nebp = kmem_alloc(nb, KM_SLEEP);
usr/src/uts/common/fs/ufs/lufs.c
369
ul = (ml_unit_t *)kmem_zalloc(sizeof (*ul), KM_SLEEP);
usr/src/uts/common/fs/ufs/lufs_debug.c
142
tp = kmem_zalloc(sizeof (threadtrans_t), KM_SLEEP);
usr/src/uts/common/fs/ufs/lufs_debug.c
341
bufp = kmem_alloc(me->me_nb, KM_SLEEP);
usr/src/uts/common/fs/ufs/lufs_debug.c
404
tsl = kmem_zalloc(sizeof (*tsl), KM_SLEEP);
usr/src/uts/common/fs/ufs/lufs_debug.c
69
(sizeof (struct toptrace) * toptracemax), KM_SLEEP);
usr/src/uts/common/fs/ufs/lufs_log.c
178
sv = kmem_cache_alloc(lufs_sv, KM_SLEEP);
usr/src/uts/common/fs/ufs/lufs_log.c
190
lbp = kmem_cache_alloc(lufs_bp, KM_SLEEP);
usr/src/uts/common/fs/ufs/lufs_log.c
195
pblkno, ldl_strategy_done, &lbp->lb_buf, KM_SLEEP);
usr/src/uts/common/fs/ufs/lufs_log.c
328
newbp = kmem_zalloc(sizeof (buf_t), KM_SLEEP);
usr/src/uts/common/fs/ufs/lufs_log.c
456
bp = kmem_zalloc(sizeof (buf_t), KM_SLEEP);
usr/src/uts/common/fs/ufs/lufs_log.c
464
cb->cb_va = kmem_alloc(bufsize, KM_SLEEP);
usr/src/uts/common/fs/ufs/lufs_log.c
500
cb->cb_va = kmem_alloc(bufsize, KM_SLEEP);
usr/src/uts/common/fs/ufs/lufs_log.c
512
bp = kmem_alloc(sizeof (buf_t), KM_SLEEP);
usr/src/uts/common/fs/ufs/lufs_map.c
164
mtm = kmem_zalloc(sizeof (mt_map_t), KM_SLEEP);
usr/src/uts/common/fs/ufs/lufs_map.c
1653
me = kmem_cache_alloc(mapentry_cache, KM_SLEEP);
usr/src/uts/common/fs/ufs/lufs_map.c
173
KM_SLEEP);
usr/src/uts/common/fs/ufs/lufs_map.c
1872
me = kmem_cache_alloc(mapentry_cache, KM_SLEEP);
usr/src/uts/common/fs/ufs/lufs_map.c
303
me = kmem_cache_alloc(mapentry_cache, KM_SLEEP);
usr/src/uts/common/fs/ufs/lufs_thread.c
320
bp2 = kmem_alloc(sizeof (buf_t), KM_SLEEP);
usr/src/uts/common/fs/ufs/lufs_thread.c
458
roll_bufs = kmem_alloc(nmblk * MAPBLOCKSIZE, KM_SLEEP);
usr/src/uts/common/fs/ufs/lufs_thread.c
459
rbs = kmem_alloc(nmblk * sizeof (rollbuf_t), KM_SLEEP);
usr/src/uts/common/fs/ufs/lufs_top.c
362
tp = kmem_zalloc(sizeof (threadtrans_t), KM_SLEEP);
usr/src/uts/common/fs/ufs/quota.c
132
dquot = kmem_zalloc(ndquot * sizeof (struct dquot), KM_SLEEP);
usr/src/uts/common/fs/ufs/ufs_acl.c
1017
sp = kmem_zalloc(sizeof (si_t), KM_SLEEP);
usr/src/uts/common/fs/ufs/ufs_acl.c
1145
KM_SLEEP);
usr/src/uts/common/fs/ufs/ufs_acl.c
1193
kmem_zalloc(numacls * sizeof (aclent_t), KM_SLEEP);
usr/src/uts/common/fs/ufs/ufs_acl.c
1284
aclp1 = kmem_alloc(sizeof (ufs_ic_acl_t), KM_SLEEP);
usr/src/uts/common/fs/ufs/ufs_acl.c
1344
tsp = kmem_zalloc(sizeof (si_t), KM_SLEEP);
usr/src/uts/common/fs/ufs/ufs_acl.c
1424
dsp = kmem_zalloc(sizeof (si_t), KM_SLEEP);
usr/src/uts/common/fs/ufs/ufs_acl.c
1576
buffer = kmem_zalloc((acl_size + def_acl_size), KM_SLEEP);
usr/src/uts/common/fs/ufs/ufs_acl.c
1908
si_cachea = kmem_zalloc(si_cachecnt * sizeof (si_t *), KM_SLEEP);
usr/src/uts/common/fs/ufs/ufs_acl.c
1910
si_cachei = kmem_zalloc(si_cachecnt * sizeof (si_t *), KM_SLEEP);
usr/src/uts/common/fs/ufs/ufs_acl.c
486
acldata = kmem_zalloc((size_t)sip->i_size, KM_SLEEP);
usr/src/uts/common/fs/ufs/ufs_acl.c
515
kmem_zalloc(numacls * sizeof (aclent_t), KM_SLEEP);
usr/src/uts/common/fs/ufs/ufs_acl.c
530
kmem_zalloc(numacls * sizeof (aclent_t), KM_SLEEP);
usr/src/uts/common/fs/ufs/ufs_acl.c
736
KM_SLEEP);
usr/src/uts/common/fs/ufs/ufs_acl.c
976
uaclp = kmem_alloc(sizeof (ufs_ic_acl_t), KM_SLEEP);
usr/src/uts/common/fs/ufs/ufs_alloc.c
1696
KM_SLEEP);
usr/src/uts/common/fs/ufs/ufs_directio.c
179
ufs_directio_zero_buf = kmem_zalloc(ufs_directio_zero_len, KM_SLEEP);
usr/src/uts/common/fs/ufs/ufs_directio.c
261
dbp = kmem_cache_alloc(directio_buf_cache, KM_SLEEP);
usr/src/uts/common/fs/ufs/ufs_inode.c
309
ihead = kmem_zalloc(inohsz * sizeof (union ihead), KM_SLEEP);
usr/src/uts/common/fs/ufs/ufs_inode.c
310
ih_lock = kmem_zalloc(inohsz * sizeof (kmutex_t), KM_SLEEP);
usr/src/uts/common/fs/ufs/ufs_inode.c
342
ip = kmem_cache_alloc(inode_cache, KM_SLEEP);
usr/src/uts/common/fs/ufs/ufs_snap.c
237
KM_SLEEP);
usr/src/uts/common/fs/ufs/ufs_subr.c
1249
bps = kmem_alloc(NSIBUF * sizeof (buf_t), KM_SLEEP);
usr/src/uts/common/fs/ufs/ufs_subr.c
1250
bufs = kmem_alloc(NSIBUF * SI_BUFSZ, KM_SLEEP);
usr/src/uts/common/fs/ufs/ufs_subr.c
1326
sip = kmem_alloc((size_t)fs->fs_cssize, KM_SLEEP);
usr/src/uts/common/fs/ufs/ufs_subr.c
1407
bp->b_un.b_addr = kmem_alloc(size, KM_SLEEP);
usr/src/uts/common/fs/ufs/ufs_thread.c
788
KM_SLEEP);
usr/src/uts/common/fs/ufs/ufs_thread.c
790
KM_SLEEP);
usr/src/uts/common/fs/ufs/ufs_vfsops.c
872
ufsvfsp = kmem_zalloc(sizeof (struct ufsvfs), KM_SLEEP);
usr/src/uts/common/fs/ufs/ufs_vnops.c
1526
kmem_alloc(lockfs.lf_comlen, KM_SLEEP);
usr/src/uts/common/fs/ufs/ufs_vnops.c
1757
kmem_alloc(fcm_size, KM_SLEEP);
usr/src/uts/common/fs/ufs/ufs_vnops.c
1816
ls = kmem_zalloc(sizeof (*ls), KM_SLEEP);
usr/src/uts/common/fs/ufs/ufs_vnops.c
3859
outbuf = kmem_alloc(bufsize, KM_SLEEP);
usr/src/uts/common/fs/vfs.c
1024
li = kmem_zalloc(sizeof (*li), KM_SLEEP);
usr/src/uts/common/fs/vfs.c
1065
li = kmem_zalloc(sizeof (*li), KM_SLEEP);
usr/src/uts/common/fs/vfs.c
1239
inargs = kmem_alloc(MAX_MNTOPT_STR, KM_SLEEP);
usr/src/uts/common/fs/vfs.c
1304
KM_SLEEP);
usr/src/uts/common/fs/vfs.c
1359
mountpt = kmem_alloc(pnp->pn_pathlen + 1, KM_SLEEP);
usr/src/uts/common/fs/vfs.c
1466
vfsp = vfs_alloc(KM_SLEEP);
usr/src/uts/common/fs/vfs.c
1905
sp = kmem_alloc(len, KM_SLEEP);
usr/src/uts/common/fs/vfs.c
2069
result = kmem_alloc((i + extend + 1) * sizeof (char *), KM_SLEEP);
usr/src/uts/common/fs/vfs.c
2072
result[j] = kmem_alloc(strlen(moc[j]) + 1, KM_SLEEP);
usr/src/uts/common/fs/vfs.c
2090
dp = kmem_alloc(strlen(sp) + 1, KM_SLEEP);
usr/src/uts/common/fs/vfs.c
2101
dp = kmem_alloc(strlen(sp) + 1, KM_SLEEP);
usr/src/uts/common/fs/vfs.c
2127
motbl = kmem_zalloc((count + extra) * sizeof (mntopt_t), KM_SLEEP);
usr/src/uts/common/fs/vfs.c
2208
*dp = kmem_alloc(strlen(*sp2) + 1, KM_SLEEP);
usr/src/uts/common/fs/vfs.c
2214
char **nres = kmem_alloc(bytes, KM_SLEEP);
usr/src/uts/common/fs/vfs.c
2253
motbl = kmem_alloc(count * sizeof (mntopt_t), KM_SLEEP);
usr/src/uts/common/fs/vfs.c
2368
sp = kmem_alloc(strlen(opt) + 1, KM_SLEEP);
usr/src/uts/common/fs/vfs.c
2381
sp = kmem_alloc(strlen(arg) + 1, KM_SLEEP);
usr/src/uts/common/fs/vfs.c
2434
motbl = kmem_zalloc(count * sizeof (mntopt_t), KM_SLEEP);
usr/src/uts/common/fs/vfs.c
2445
mop->mo_name = kmem_alloc(strlen(tag) + 1, KM_SLEEP);
usr/src/uts/common/fs/vfs.c
2464
char *buf = kmem_alloc(MAX_MNTOPT_STR, KM_SLEEP);
usr/src/uts/common/fs/vfs.c
2855
tvp = vn_alloc(KM_SLEEP);
usr/src/uts/common/fs/vfs.c
3145
mipp = (struct ipmnt *)kmem_alloc(sizeof (struct ipmnt), KM_SLEEP);
usr/src/uts/common/fs/vfs.c
3883
vswp->vsw_name = kmem_alloc(strlen(type) + 1, KM_SLEEP);
usr/src/uts/common/fs/vfs.c
435
*actual = (vfsops_t *)kmem_alloc(sizeof (vfsops_t), KM_SLEEP);
usr/src/uts/common/fs/vfs.c
4774
path = kmem_alloc(strsize + 1, KM_SLEEP);
usr/src/uts/common/fs/vfs.c
576
vfsp->vfs_implp = kmem_alloc(sizeof (vfs_impl_t), KM_SLEEP);
usr/src/uts/common/fs/vfs.c
853
rvfs_list = kmem_zalloc(vfshsz * sizeof (rvfs_t), KM_SLEEP);
usr/src/uts/common/fs/vfs.c
954
path = kmem_alloc(plen + MAXPATHLEN, KM_SLEEP);
usr/src/uts/common/fs/vnode.c
2098
vep = kmem_alloc(sizeof (*vep), KM_SLEEP);
usr/src/uts/common/fs/vnode.c
2301
*actual = (vnodeops_t *)kmem_alloc(sizeof (vnodeops_t), KM_SLEEP);
usr/src/uts/common/fs/vnode.c
3079
buf = kmem_alloc(len + 1, KM_SLEEP);
usr/src/uts/common/fs/vnode.c
3156
buf = kmem_alloc(buflen, KM_SLEEP);
usr/src/uts/common/fs/vnode.c
3297
buf = kmem_alloc(buflen, KM_SLEEP);
usr/src/uts/common/fs/vnode.c
446
vsp = kmem_alloc(sizeof (vopstats_t), KM_SLEEP);
usr/src/uts/common/fs/vnode.c
4518
vsd_list = kmem_alloc(sizeof (list_t), KM_SLEEP);
usr/src/uts/common/fs/vnode.c
4619
vsd = vp->v_vsd = kmem_zalloc(sizeof (*vsd), KM_SLEEP);
usr/src/uts/common/fs/vnode.c
4711
new = kmem_zalloc(nsize, KM_SLEEP);
usr/src/uts/common/fs/vnode.c
600
(sizeof (vopstats_t *) * nfstype), KM_SLEEP);
usr/src/uts/common/fs/vnode.c
683
vskp = kmem_cache_alloc(vsk_anchor_cache, KM_SLEEP);
usr/src/uts/common/fs/xattr.c
418
if (nvlist_alloc(&nvl_sid, NV_UNIQUE_NAME, KM_SLEEP))
usr/src/uts/common/fs/xattr.c
434
if (nvlist_alloc(&nvl_sid, NV_UNIQUE_NAME, KM_SLEEP))
usr/src/uts/common/fs/xattr.c
463
if (nvlist_alloc(&nvl, NV_UNIQUE_NAME, KM_SLEEP)) {
usr/src/uts/common/fs/xattr.c
538
if (nvlist_alloc(&nvl, NV_UNIQUE_NAME, KM_SLEEP))
usr/src/uts/common/fs/xattr.c
553
buf = kmem_alloc(filesize, KM_SLEEP);
usr/src/uts/common/fs/xattr.c
555
KM_SLEEP) == 0);
usr/src/uts/common/fs/xattr.c
600
buf = kmem_alloc(size, KM_SLEEP);
usr/src/uts/common/fs/xattr.c
605
if (nvlist_unpack(buf, size, &nvp, KM_SLEEP) != 0) {
usr/src/uts/common/fs/zfs/aggsum.c
90
KM_SLEEP);
usr/src/uts/common/fs/zfs/arc.c
1382
KM_SLEEP);
usr/src/uts/common/fs/zfs/arc.c
1491
hdr->b_l1hdr.b_thawed = kmem_alloc(1, KM_SLEEP);
usr/src/uts/common/fs/zfs/arc.c
2770
l2arc_data_free_t *df = kmem_alloc(sizeof (*df), KM_SLEEP);
usr/src/uts/common/fs/zfs/arc.c
3466
hdr = kmem_cache_alloc(hdr_l2only_cache, KM_SLEEP);
usr/src/uts/common/fs/zfs/arc.c
4052
markers = kmem_zalloc(sizeof (*markers) * num_sublists, KM_SLEEP);
usr/src/uts/common/fs/zfs/arc.c
4054
markers[i] = kmem_cache_alloc(hdr_full_cache, KM_SLEEP);
usr/src/uts/common/fs/zfs/arc.c
5375
void *buf = kmem_alloc(psize, KM_SLEEP);
usr/src/uts/common/fs/zfs/arc.c
5698
KM_SLEEP);
usr/src/uts/common/fs/zfs/arc.c
5926
acb = kmem_zalloc(sizeof (arc_callback_t), KM_SLEEP);
usr/src/uts/common/fs/zfs/arc.c
5995
KM_SLEEP);
usr/src/uts/common/fs/zfs/arc.c
6705
callback = kmem_zalloc(sizeof (arc_write_callback_t), KM_SLEEP);
usr/src/uts/common/fs/zfs/arc.c
8655
sizeof (l2arc_write_callback_t), KM_SLEEP);
usr/src/uts/common/fs/zfs/arc.c
8903
adddev = kmem_zalloc(sizeof (l2arc_dev_t), KM_SLEEP);
usr/src/uts/common/fs/zfs/arc.c
8916
adddev->l2ad_dev_hdr = kmem_zalloc(l2dhdr_asize, KM_SLEEP);
usr/src/uts/common/fs/zfs/arc.c
9213
this_lb = kmem_zalloc(sizeof (*this_lb), KM_SLEEP);
usr/src/uts/common/fs/zfs/arc.c
9214
next_lb = kmem_zalloc(sizeof (*next_lb), KM_SLEEP);
usr/src/uts/common/fs/zfs/arc.c
9287
lb_ptr_buf = kmem_zalloc(sizeof (l2arc_lb_ptr_buf_t), KM_SLEEP);
usr/src/uts/common/fs/zfs/arc.c
9289
KM_SLEEP);
usr/src/uts/common/fs/zfs/arc.c
9743
cb = kmem_zalloc(sizeof (l2arc_read_callback_t), KM_SLEEP);
usr/src/uts/common/fs/zfs/arc.c
9829
lb_ptr_buf = kmem_zalloc(sizeof (l2arc_lb_ptr_buf_t), KM_SLEEP);
usr/src/uts/common/fs/zfs/arc.c
9830
lb_ptr_buf->lb_ptr = kmem_zalloc(sizeof (l2arc_log_blkptr_t), KM_SLEEP);
usr/src/uts/common/fs/zfs/bplist.c
48
bplist_entry_t *bpe = kmem_alloc(sizeof (*bpe), KM_SLEEP);
usr/src/uts/common/fs/zfs/btree.c
1082
KM_SLEEP);
usr/src/uts/common/fs/zfs/btree.c
1119
uint8_t *buf = kmem_alloc(size, KM_SLEEP);
usr/src/uts/common/fs/zfs/btree.c
1632
uint8_t *tmp = kmem_alloc(size, KM_SLEEP);
usr/src/uts/common/fs/zfs/btree.c
1867
*cookie = kmem_alloc(sizeof (**cookie), KM_SLEEP);
usr/src/uts/common/fs/zfs/btree.c
623
size, KM_SLEEP);
usr/src/uts/common/fs/zfs/btree.c
686
BTREE_CORE_ELEMS * size, KM_SLEEP);
usr/src/uts/common/fs/zfs/btree.c
699
uint8_t *tmp_buf = kmem_alloc(size, KM_SLEEP);
usr/src/uts/common/fs/zfs/btree.c
815
KM_SLEEP);
usr/src/uts/common/fs/zfs/btree.c
830
uint8_t *buf = kmem_alloc(size, KM_SLEEP);
usr/src/uts/common/fs/zfs/dbuf.c
1755
dn->dn_dirtyctx_firstset = kmem_alloc(1, KM_SLEEP);
usr/src/uts/common/fs/zfs/dbuf.c
1825
dr = kmem_zalloc(sizeof (dbuf_dirty_record_t), KM_SLEEP);
usr/src/uts/common/fs/zfs/dbuf.c
2529
db = kmem_cache_alloc(dbuf_kmem_cache, KM_SLEEP);
usr/src/uts/common/fs/zfs/dbuf.c
2836
dbuf_prefetch_arg_t *dpa = kmem_zalloc(sizeof (*dpa), KM_SLEEP);
usr/src/uts/common/fs/zfs/ddt.c
497
ddh_total = kmem_zalloc(sizeof (ddt_histogram_t), KM_SLEEP);
usr/src/uts/common/fs/zfs/ddt.c
654
dde = kmem_zalloc(sizeof (ddt_entry_t), KM_SLEEP);
usr/src/uts/common/fs/zfs/ddt.c
805
ddt = kmem_zalloc(sizeof (*ddt), KM_SLEEP);
usr/src/uts/common/fs/zfs/dmu.c
1302
uio->uio_iov = kmem_zalloc(nblk * sizeof (iovec_t), KM_SLEEP);
usr/src/uts/common/fs/zfs/dmu.c
1304
priv = kmem_zalloc(sizeof (dmu_xuio_t), KM_SLEEP);
usr/src/uts/common/fs/zfs/dmu.c
1306
priv->bufs = kmem_zalloc(nblk * sizeof (arc_buf_t *), KM_SLEEP);
usr/src/uts/common/fs/zfs/dmu.c
1964
dsa = kmem_alloc(sizeof (dmu_sync_arg_t), KM_SLEEP);
usr/src/uts/common/fs/zfs/dmu.c
2155
dsa = kmem_alloc(sizeof (dmu_sync_arg_t), KM_SLEEP);
usr/src/uts/common/fs/zfs/dmu.c
586
dbp = kmem_zalloc(sizeof (dmu_buf_t *) * nblks, KM_SLEEP);
usr/src/uts/common/fs/zfs/dmu_objset.c
1675
blkptr_t *blkptr_copy = kmem_alloc(sizeof (*os->os_rootbp), KM_SLEEP);
usr/src/uts/common/fs/zfs/dmu_objset.c
1765
sync_dnodes_arg_t *sda = kmem_alloc(sizeof (*sda), KM_SLEEP);
usr/src/uts/common/fs/zfs/dmu_objset.c
1926
uqn = kmem_zalloc(sizeof (*uqn), KM_SLEEP);
usr/src/uts/common/fs/zfs/dmu_objset.c
2104
kmem_alloc(sizeof (*uua), KM_SLEEP);
usr/src/uts/common/fs/zfs/dmu_objset.c
2609
attr = kmem_alloc(sizeof (zap_attribute_t), KM_SLEEP);
usr/src/uts/common/fs/zfs/dmu_objset.c
2624
kmem_alloc(sizeof (*child_dcp), KM_SLEEP);
usr/src/uts/common/fs/zfs/dmu_objset.c
2745
dcp = kmem_alloc(sizeof (*dcp), KM_SLEEP);
usr/src/uts/common/fs/zfs/dmu_objset.c
2844
attr = kmem_alloc(sizeof (zap_attribute_t), KM_SLEEP);
usr/src/uts/common/fs/zfs/dmu_objset.c
427
os = kmem_zalloc(sizeof (objset_t), KM_SLEEP);
usr/src/uts/common/fs/zfs/dmu_objset.c
623
sizeof (os->os_obj_next_percpu[0]), KM_SLEEP);
usr/src/uts/common/fs/zfs/dmu_recv.c
1918
ra->next_rrd = kmem_zalloc(sizeof (*ra->next_rrd), KM_SLEEP);
usr/src/uts/common/fs/zfs/dmu_recv.c
2014
struct receive_objnode *node = kmem_zalloc(sizeof (*node), KM_SLEEP);
usr/src/uts/common/fs/zfs/dmu_recv.c
2069
buf = kmem_zalloc(size, KM_SLEEP);
usr/src/uts/common/fs/zfs/dmu_recv.c
2148
void *buf = kmem_zalloc(size, KM_SLEEP);
usr/src/uts/common/fs/zfs/dmu_recv.c
2431
kmem_alloc(sizeof (avl_tree_t), KM_SLEEP);
usr/src/uts/common/fs/zfs/dmu_recv.c
2453
payload = kmem_alloc(payloadlen, KM_SLEEP);
usr/src/uts/common/fs/zfs/dmu_recv.c
2462
err = nvlist_unpack(payload, payloadlen, &begin_nvl, KM_SLEEP);
usr/src/uts/common/fs/zfs/dmu_recv.c
2558
ra.rrd = kmem_zalloc(sizeof (*ra.rrd), KM_SLEEP);
usr/src/uts/common/fs/zfs/dmu_recv.c
2871
gmep = kmem_alloc(sizeof (*gmep), KM_SLEEP);
usr/src/uts/common/fs/zfs/dmu_send.c
1071
dsp = kmem_zalloc(sizeof (dmu_sendarg_t), KM_SLEEP);
usr/src/uts/common/fs/zfs/dmu_send.c
685
record = kmem_zalloc(sizeof (struct send_block_record), KM_SLEEP);
usr/src/uts/common/fs/zfs/dmu_send.c
718
data = kmem_zalloc(sizeof (*data), KM_SLEEP);
usr/src/uts/common/fs/zfs/dmu_send.c
994
drr = kmem_zalloc(sizeof (dmu_replay_record_t), KM_SLEEP);
usr/src/uts/common/fs/zfs/dmu_tx.c
117
txh = kmem_zalloc(sizeof (dmu_tx_hold_t), KM_SLEEP);
usr/src/uts/common/fs/zfs/dmu_tx.c
1192
dcb = kmem_alloc(sizeof (dmu_tx_callback_t), KM_SLEEP);
usr/src/uts/common/fs/zfs/dmu_tx.c
50
dmu_tx_t *tx = kmem_zalloc(sizeof (dmu_tx_t), KM_SLEEP);
usr/src/uts/common/fs/zfs/dmu_zfetch.c
225
zstream_t *zs = kmem_zalloc(sizeof (*zs), KM_SLEEP);
usr/src/uts/common/fs/zfs/dnode.c
1375
epb * sizeof (dnode_handle_t), KM_SLEEP);
usr/src/uts/common/fs/zfs/dnode.c
440
dn = kmem_cache_alloc(dnode_cache, KM_SLEEP);
usr/src/uts/common/fs/zfs/dsl_crypt.c
1007
km = kmem_zalloc(sizeof (dsl_key_mapping_t), KM_SLEEP);
usr/src/uts/common/fs/zfs/dsl_crypt.c
119
wkey = kmem_alloc(sizeof (dsl_wrapping_key_t), KM_SLEEP);
usr/src/uts/common/fs/zfs/dsl_crypt.c
124
wkey->wk_key.ck_data = kmem_alloc(WRAPPING_KEY_LEN, KM_SLEEP);
usr/src/uts/common/fs/zfs/dsl_crypt.c
1465
zc = kmem_alloc(sizeof (zap_cursor_t), KM_SLEEP);
usr/src/uts/common/fs/zfs/dsl_crypt.c
1466
za = kmem_alloc(sizeof (zap_attribute_t), KM_SLEEP);
usr/src/uts/common/fs/zfs/dsl_crypt.c
164
dcp = kmem_zalloc(sizeof (dsl_crypto_params_t), KM_SLEEP);
usr/src/uts/common/fs/zfs/dsl_crypt.c
1741
keylocation = kmem_alloc(ZAP_MAXVALUELEN, KM_SLEEP);
usr/src/uts/common/fs/zfs/dsl_crypt.c
2441
ret = nvlist_alloc(&nvl, NV_UNIQUE_NAME, KM_SLEEP);
usr/src/uts/common/fs/zfs/dsl_crypt.c
562
dck = kmem_zalloc(sizeof (dsl_crypto_key_t), KM_SLEEP);
usr/src/uts/common/fs/zfs/dsl_dataset.c
2072
VERIFY0(nvlist_alloc(&val, 0, KM_SLEEP));
usr/src/uts/common/fs/zfs/dsl_dataset.c
2144
compressed = kmem_alloc(packed_size, KM_SLEEP);
usr/src/uts/common/fs/zfs/dsl_dataset.c
2152
str = kmem_alloc(compressed_size * 2 + 1, KM_SLEEP);
usr/src/uts/common/fs/zfs/dsl_dataset.c
2407
char *buf = kmem_alloc(ZAP_MAXVALUELEN, KM_SLEEP);
usr/src/uts/common/fs/zfs/dsl_dataset.c
3429
snap = kmem_alloc(sizeof (*snap), KM_SLEEP);
usr/src/uts/common/fs/zfs/dsl_dataset.c
346
data = kmem_alloc(int_size * num_int, KM_SLEEP);
usr/src/uts/common/fs/zfs/dsl_dataset.c
350
kmem_alloc(sizeof (*ftuaa), KM_SLEEP);
usr/src/uts/common/fs/zfs/dsl_dataset.c
534
ds = kmem_zalloc(sizeof (dsl_dataset_t), KM_SLEEP);
usr/src/uts/common/fs/zfs/dsl_deadlist.c
268
dle = kmem_alloc(sizeof (*dle), KM_SLEEP);
usr/src/uts/common/fs/zfs/dsl_deadlist.c
82
dsl_deadlist_entry_t *dle = kmem_alloc(sizeof (*dle), KM_SLEEP);
usr/src/uts/common/fs/zfs/dsl_deleg.c
326
VERIFY(nvlist_alloc(nvp, NV_UNIQUE_NAME, KM_SLEEP) == 0);
usr/src/uts/common/fs/zfs/dsl_deleg.c
492
permnode = kmem_alloc(sizeof (perm_set_t), KM_SLEEP);
usr/src/uts/common/fs/zfs/dsl_destroy.c
541
VERIFY0(nvlist_alloc(&snaps_normalized, 0, KM_SLEEP));
usr/src/uts/common/fs/zfs/dsl_destroy.c
549
VERIFY0(nvlist_alloc(&arg, 0, KM_SLEEP));
usr/src/uts/common/fs/zfs/dsl_destroy.c
555
VERIFY0(nvlist_alloc(&wrapper, 0, KM_SLEEP));
usr/src/uts/common/fs/zfs/dsl_dir.c
1359
tr = kmem_zalloc(sizeof (struct tempreserve), KM_SLEEP);
usr/src/uts/common/fs/zfs/dsl_dir.c
1393
tr_list = kmem_alloc(sizeof (list_t), KM_SLEEP);
usr/src/uts/common/fs/zfs/dsl_dir.c
1402
tr = kmem_zalloc(sizeof (struct tempreserve), KM_SLEEP);
usr/src/uts/common/fs/zfs/dsl_dir.c
184
dd = kmem_zalloc(sizeof (dsl_dir_t), KM_SLEEP);
usr/src/uts/common/fs/zfs/dsl_dir.c
543
zc = kmem_alloc(sizeof (zap_cursor_t), KM_SLEEP);
usr/src/uts/common/fs/zfs/dsl_dir.c
544
za = kmem_alloc(sizeof (zap_attribute_t), KM_SLEEP);
usr/src/uts/common/fs/zfs/dsl_pool.c
191
dp = kmem_zalloc(sizeof (dsl_pool_t), KM_SLEEP);
usr/src/uts/common/fs/zfs/dsl_prop.c
1013
VERIFY(nvlist_alloc(&propval, NV_UNIQUE_NAME, KM_SLEEP) == 0);
usr/src/uts/common/fs/zfs/dsl_prop.c
1019
KM_SLEEP);
usr/src/uts/common/fs/zfs/dsl_prop.c
1061
VERIFY(nvlist_alloc(nvp, NV_UNIQUE_NAME, KM_SLEEP) == 0);
usr/src/uts/common/fs/zfs/dsl_prop.c
1179
VERIFY(nvlist_alloc(&propval, NV_UNIQUE_NAME, KM_SLEEP) == 0);
usr/src/uts/common/fs/zfs/dsl_prop.c
1201
VERIFY(nvlist_alloc(&propval, NV_UNIQUE_NAME, KM_SLEEP) == 0);
usr/src/uts/common/fs/zfs/dsl_prop.c
241
pr = kmem_alloc(sizeof (dsl_prop_record_t), KM_SLEEP);
usr/src/uts/common/fs/zfs/dsl_prop.c
294
cbr = kmem_alloc(sizeof (dsl_prop_cb_record_t), KM_SLEEP);
usr/src/uts/common/fs/zfs/dsl_prop.c
596
za = kmem_alloc(sizeof (zap_attribute_t), KM_SLEEP);
usr/src/uts/common/fs/zfs/dsl_prop.c
751
tbuf = kmem_alloc(ZAP_MAXVALUELEN, KM_SLEEP);
usr/src/uts/common/fs/zfs/dsl_scan.c
1133
sds = kmem_zalloc(sizeof (*sds), KM_SLEEP);
usr/src/uts/common/fs/zfs/dsl_scan.c
1461
spc = kmem_alloc(sizeof (scan_prefetch_ctx_t), KM_SLEEP);
usr/src/uts/common/fs/zfs/dsl_scan.c
1526
spic = kmem_alloc(sizeof (scan_prefetch_issue_ctx_t), KM_SLEEP);
usr/src/uts/common/fs/zfs/dsl_scan.c
1926
bp_toread = kmem_alloc(sizeof (blkptr_t), KM_SLEEP);
usr/src/uts/common/fs/zfs/dsl_scan.c
2294
char *dsname = kmem_alloc(MAXNAMELEN, KM_SLEEP);
usr/src/uts/common/fs/zfs/dsl_scan.c
2333
char *dsname = kmem_alloc(ZFS_MAX_DATASET_NAME_LEN, KM_SLEEP);
usr/src/uts/common/fs/zfs/dsl_scan.c
3018
KM_SLEEP);
usr/src/uts/common/fs/zfs/dsl_scan.c
356
return (kmem_cache_alloc(sio_cache[nr_dvas - 1], KM_SLEEP));
usr/src/uts/common/fs/zfs/dsl_scan.c
4032
dsl_scan_io_queue_t *q = kmem_zalloc(sizeof (*q), KM_SLEEP);
usr/src/uts/common/fs/zfs/dsl_scan.c
447
scn = dp->dp_scan = kmem_zalloc(sizeof (dsl_scan_t), KM_SLEEP);
usr/src/uts/common/fs/zfs/dsl_scan.c
773
kmem_alloc(sizeof (zfs_all_blkstats_t), KM_SLEEP);
usr/src/uts/common/fs/zfs/dsl_synctask.c
176
dsl_sync_task_t *dst = kmem_zalloc(sizeof (*dst), KM_SLEEP);
usr/src/uts/common/fs/zfs/dsl_userhold.c
103
char *nameval = kmem_zalloc(len + 2, KM_SLEEP);
usr/src/uts/common/fs/zfs/dsl_userhold.c
248
ca = kmem_alloc(sizeof (*ca), KM_SLEEP);
usr/src/uts/common/fs/zfs/dsl_userhold.c
337
VERIFY(0 == nvlist_alloc(&dduha.dduha_chkholds, 0, KM_SLEEP));
usr/src/uts/common/fs/zfs/dsl_userhold.c
675
za = kmem_alloc(sizeof (zap_attribute_t), KM_SLEEP);
usr/src/uts/common/fs/zfs/edonr_zfs.c
101
ctx = kmem_zalloc(sizeof (*ctx), KM_SLEEP);
usr/src/uts/common/fs/zfs/metaslab.c
2216
mrap = kmem_zalloc(sizeof (*mrap), KM_SLEEP);
usr/src/uts/common/fs/zfs/metaslab.c
2563
ms = kmem_zalloc(sizeof (metaslab_t), KM_SLEEP);
usr/src/uts/common/fs/zfs/metaslab.c
375
mc = kmem_zalloc(sizeof (metaslab_class_t), KM_SLEEP);
usr/src/uts/common/fs/zfs/metaslab.c
384
sizeof (zfs_refcount_t), KM_SLEEP);
usr/src/uts/common/fs/zfs/metaslab.c
386
sizeof (uint64_t), KM_SLEEP);
usr/src/uts/common/fs/zfs/metaslab.c
4184
metaslab_rt_arg_t *mrap = kmem_zalloc(sizeof (*mrap), KM_SLEEP);
usr/src/uts/common/fs/zfs/metaslab.c
4401
kmem_cache_alloc(metaslab_alloc_trace_cache, KM_SLEEP);
usr/src/uts/common/fs/zfs/metaslab.c
4687
metaslab_t *search = kmem_alloc(sizeof (*search), KM_SLEEP);
usr/src/uts/common/fs/zfs/metaslab.c
485
KM_SLEEP);
usr/src/uts/common/fs/zfs/metaslab.c
796
mg = kmem_zalloc(sizeof (metaslab_group_t), KM_SLEEP);
usr/src/uts/common/fs/zfs/metaslab.c
801
KM_SLEEP);
usr/src/uts/common/fs/zfs/metaslab.c
803
KM_SLEEP);
usr/src/uts/common/fs/zfs/metaslab.c
814
sizeof (zfs_refcount_t), KM_SLEEP);
usr/src/uts/common/fs/zfs/metaslab.c
816
sizeof (uint64_t), KM_SLEEP);
usr/src/uts/common/fs/zfs/metaslab.c
995
KM_SLEEP);
usr/src/uts/common/fs/zfs/multilist.c
77
multilist_t *ml = kmem_alloc(sizeof (*ml), KM_SLEEP);
usr/src/uts/common/fs/zfs/multilist.c
83
ml->ml_num_sublists, KM_SLEEP);
usr/src/uts/common/fs/zfs/range_tree.c
194
range_tree_t *rt = kmem_zalloc(sizeof (range_tree_t), KM_SLEEP);
usr/src/uts/common/fs/zfs/refcount.c
146
ref = kmem_cache_alloc(reference_cache, KM_SLEEP);
usr/src/uts/common/fs/zfs/refcount.c
202
KM_SLEEP);
usr/src/uts/common/fs/zfs/rrwlock.c
106
rn = kmem_alloc(sizeof (*rn), KM_SLEEP);
usr/src/uts/common/fs/zfs/sa.c
1012
sa = kmem_zalloc(sizeof (sa_os_t), KM_SLEEP);
usr/src/uts/common/fs/zfs/sa.c
1060
za.za_num_integers, KM_SLEEP);
usr/src/uts/common/fs/zfs/sa.c
1387
handle = kmem_cache_alloc(sa_cache, KM_SLEEP);
usr/src/uts/common/fs/zfs/sa.c
1531
bulk = kmem_zalloc(sizeof (sa_bulk_attr_t) * ZPL_END, KM_SLEEP);
usr/src/uts/common/fs/zfs/sa.c
1532
attrs = kmem_zalloc(sizeof (sa_bulk_attr_t) * ZPL_END, KM_SLEEP);
usr/src/uts/common/fs/zfs/sa.c
1722
idx_tab = kmem_zalloc(sizeof (sa_idx_tab_t), KM_SLEEP);
usr/src/uts/common/fs/zfs/sa.c
1724
kmem_zalloc(sizeof (uint32_t) * sa->sa_num_attrs, KM_SLEEP);
usr/src/uts/common/fs/zfs/sa.c
1729
tb->lot_var_sizes, KM_SLEEP);
usr/src/uts/common/fs/zfs/sa.c
1852
old_data[0] = kmem_alloc(bonus_data_size, KM_SLEEP);
usr/src/uts/common/fs/zfs/sa.c
1865
old_data[1] = kmem_alloc(spill_data_size, KM_SLEEP);
usr/src/uts/common/fs/zfs/sa.c
1886
attr_desc = kmem_zalloc(sizeof (sa_bulk_attr_t) * attr_count, KM_SLEEP);
usr/src/uts/common/fs/zfs/sa.c
413
tb = kmem_zalloc(sizeof (sa_lot_t), KM_SLEEP);
usr/src/uts/common/fs/zfs/sa.c
417
tb->lot_attrs = kmem_alloc(size, KM_SLEEP);
usr/src/uts/common/fs/zfs/sa.c
723
KM_SLEEP);
usr/src/uts/common/fs/zfs/sa.c
847
kmem_zalloc(count * sizeof (sa_attr_type_t), KM_SLEEP);
usr/src/uts/common/fs/zfs/sa.c
906
kmem_zalloc(sizeof (sa_attr_table_t) * sa_attr_count, KM_SLEEP);
usr/src/uts/common/fs/zfs/sa.c
931
kmem_zalloc(strlen(za.za_name) +1, KM_SLEEP);
usr/src/uts/common/fs/zfs/sa.c
957
KM_SLEEP);
usr/src/uts/common/fs/zfs/sa.c
975
kmem_zalloc(strlen(reg_attrs[i].sa_name) + 1, KM_SLEEP);
usr/src/uts/common/fs/zfs/skein_zfs.c
84
ctx = kmem_zalloc(sizeof (*ctx), KM_SLEEP);
usr/src/uts/common/fs/zfs/spa.c
1646
KM_SLEEP);
usr/src/uts/common/fs/zfs/spa.c
1694
KM_SLEEP);
usr/src/uts/common/fs/zfs/spa.c
1745
nl2cache * sizeof (void *), KM_SLEEP);
usr/src/uts/common/fs/zfs/spa.c
1841
sav->sav_count * sizeof (void *), KM_SLEEP);
usr/src/uts/common/fs/zfs/spa.c
1871
packed = kmem_alloc(nvsize, KM_SLEEP);
usr/src/uts/common/fs/zfs/spa.c
1934
KM_SLEEP);
usr/src/uts/common/fs/zfs/spa.c
1935
VERIFY(nvlist_alloc(&nv, NV_UNIQUE_NAME, KM_SLEEP) == 0);
usr/src/uts/common/fs/zfs/spa.c
2332
vd = kmem_zalloc(gcount * sizeof (vdev_t *), KM_SLEEP);
usr/src/uts/common/fs/zfs/spa.c
262
VERIFY(nvlist_alloc(&propval, NV_UNIQUE_NAME, KM_SLEEP) == 0);
usr/src/uts/common/fs/zfs/spa.c
2819
KM_SLEEP);
usr/src/uts/common/fs/zfs/spa.c
3093
VERIFY(nvlist_alloc(&unsup_feat, NV_UNIQUE_NAME, KM_SLEEP) ==
usr/src/uts/common/fs/zfs/spa.c
403
VERIFY(nvlist_alloc(nvp, NV_UNIQUE_NAME, KM_SLEEP) == 0);
usr/src/uts/common/fs/zfs/spa.c
453
KM_SLEEP);
usr/src/uts/common/fs/zfs/spa.c
4594
KM_SLEEP) == 0);
usr/src/uts/common/fs/zfs/spa.c
471
strval = kmem_alloc(za.za_num_integers, KM_SLEEP);
usr/src/uts/common/fs/zfs/spa.c
4790
VERIFY(nvlist_alloc(&features, NV_UNIQUE_NAME, KM_SLEEP) == 0);
usr/src/uts/common/fs/zfs/spa.c
5007
(ndevs + oldndevs), KM_SLEEP);
usr/src/uts/common/fs/zfs/spa.c
5010
KM_SLEEP) == 0);
usr/src/uts/common/fs/zfs/spa.c
5013
KM_SLEEP) == 0);
usr/src/uts/common/fs/zfs/spa.c
5028
KM_SLEEP) == 0);
usr/src/uts/common/fs/zfs/spa.c
5178
KM_SLEEP);
usr/src/uts/common/fs/zfs/spa.c
5230
KM_SLEEP) == 0);
usr/src/uts/common/fs/zfs/spa.c
5245
NV_UNIQUE_NAME, KM_SLEEP) == 0);
usr/src/uts/common/fs/zfs/spa.c
5412
VERIFY(nvlist_alloc(&nvroot, NV_UNIQUE_NAME, KM_SLEEP) == 0);
usr/src/uts/common/fs/zfs/spa.c
5768
NV_UNIQUE_NAME, KM_SLEEP) == 0);
usr/src/uts/common/fs/zfs/spa.c
5783
NV_UNIQUE_NAME, KM_SLEEP) == 0);
usr/src/uts/common/fs/zfs/spa.c
5888
char *tmpname = kmem_alloc(MAXPATHLEN, KM_SLEEP);
usr/src/uts/common/fs/zfs/spa.c
5897
char *dsname = kmem_alloc(MAXPATHLEN, KM_SLEEP);
usr/src/uts/common/fs/zfs/spa.c
6350
KM_SLEEP);
usr/src/uts/common/fs/zfs/spa.c
7011
vml = kmem_zalloc(children * sizeof (vdev_t *), KM_SLEEP);
usr/src/uts/common/fs/zfs/spa.c
7012
glist = kmem_zalloc(children * sizeof (uint64_t), KM_SLEEP);
usr/src/uts/common/fs/zfs/spa.c
7102
VERIFY(nvlist_alloc(&nvl, NV_UNIQUE_NAME, KM_SLEEP) == 0);
usr/src/uts/common/fs/zfs/spa.c
7185
NV_UNIQUE_NAME, KM_SLEEP) == 0);
usr/src/uts/common/fs/zfs/spa.c
739
KM_SLEEP);
usr/src/uts/common/fs/zfs/spa.c
7559
physpath = kmem_zalloc(MAXPATHLEN, KM_SLEEP);
usr/src/uts/common/fs/zfs/spa.c
7866
packed = kmem_alloc(bufsize, KM_SLEEP);
usr/src/uts/common/fs/zfs/spa.c
7869
KM_SLEEP) == 0);
usr/src/uts/common/fs/zfs/spa.c
7907
VERIFY(nvlist_alloc(&nvroot, NV_UNIQUE_NAME, KM_SLEEP) == 0);
usr/src/uts/common/fs/zfs/spa.c
7911
list = kmem_alloc(sav->sav_count * sizeof (void *), KM_SLEEP);
usr/src/uts/common/fs/zfs/spa.c
966
tqs->stqs_taskq = kmem_alloc(count * sizeof (taskq_t *), KM_SLEEP);
usr/src/uts/common/fs/zfs/spa_config.c
104
buf = kmem_alloc(fsize, KM_SLEEP);
usr/src/uts/common/fs/zfs/spa_config.c
115
if (nvlist_unpack(buf, fsize, &nvlist, KM_SLEEP) != 0)
usr/src/uts/common/fs/zfs/spa_config.c
167
temp = kmem_zalloc(MAXPATHLEN, KM_SLEEP);
usr/src/uts/common/fs/zfs/spa_config.c
484
ddh = kmem_zalloc(sizeof (ddt_histogram_t), KM_SLEEP);
usr/src/uts/common/fs/zfs/spa_config.c
491
ddo = kmem_zalloc(sizeof (ddt_object_t), KM_SLEEP);
usr/src/uts/common/fs/zfs/spa_config.c
498
dds = kmem_zalloc(sizeof (ddt_stat_t), KM_SLEEP);
usr/src/uts/common/fs/zfs/spa_config.c
89
pathname = kmem_alloc(MAXPATHLEN, KM_SLEEP);
usr/src/uts/common/fs/zfs/spa_errlog.c
124
new = kmem_zalloc(sizeof (spa_error_entry_t), KM_SLEEP);
usr/src/uts/common/fs/zfs/spa_history.c
537
msg = kmem_alloc(vsnprintf(NULL, 0, fmt, adx) + 1, KM_SLEEP);
usr/src/uts/common/fs/zfs/spa_log_spacemap.c
571
e = kmem_zalloc(sizeof (log_summary_entry_t), KM_SLEEP);
usr/src/uts/common/fs/zfs/spa_log_spacemap.c
918
spa_log_sm_t *sls = kmem_zalloc(sizeof (*sls), KM_SLEEP);
usr/src/uts/common/fs/zfs/spa_misc.c
1494
new = kmem_alloc(len + 1, KM_SLEEP);
usr/src/uts/common/fs/zfs/spa_misc.c
2168
sip = kmem_alloc(sizeof (spa_import_progress_t), KM_SLEEP);
usr/src/uts/common/fs/zfs/spa_misc.c
637
spa = kmem_zalloc(sizeof (spa_t), KM_SLEEP);
usr/src/uts/common/fs/zfs/spa_misc.c
705
sizeof (kmutex_t), KM_SLEEP);
usr/src/uts/common/fs/zfs/spa_misc.c
707
sizeof (avl_tree_t), KM_SLEEP);
usr/src/uts/common/fs/zfs/spa_misc.c
726
dp = kmem_zalloc(sizeof (spa_config_dirent_t), KM_SLEEP);
usr/src/uts/common/fs/zfs/spa_misc.c
731
KM_SLEEP) == 0);
usr/src/uts/common/fs/zfs/spa_misc.c
747
KM_SLEEP) == 0);
usr/src/uts/common/fs/zfs/spa_misc.c
977
aux = kmem_zalloc(sizeof (spa_aux_t), KM_SLEEP);
usr/src/uts/common/fs/zfs/space_map.c
800
sm = kmem_zalloc(sizeof (space_map_t), KM_SLEEP);
usr/src/uts/common/fs/zfs/space_reftree.c
91
sr = kmem_alloc(sizeof (*sr), KM_SLEEP);
usr/src/uts/common/fs/zfs/sys/dbuf.h
428
char *__blkbuf = kmem_alloc(BP_SPRINTF_LEN, KM_SLEEP); \
usr/src/uts/common/fs/zfs/sys/dsl_dataset.h
474
char *__ds_name = kmem_alloc(ZFS_MAX_DATASET_NAME_LEN, KM_SLEEP); \
usr/src/uts/common/fs/zfs/sys/dsl_dir.h
198
char *__ds_name = kmem_alloc(ZFS_MAX_DATASET_NAME_LEN, KM_SLEEP); \
usr/src/uts/common/fs/zfs/sys/spa.h
1076
char *__blkbuf = kmem_alloc(BP_SPRINTF_LEN, KM_SLEEP); \
usr/src/uts/common/fs/zfs/txg.c
124
tx->tx_cpu = kmem_zalloc(max_ncpus * sizeof (tx_cpu_t), KM_SLEEP);
usr/src/uts/common/fs/zfs/txg.c
436
cb_list = kmem_alloc(sizeof (list_t), KM_SLEEP);
usr/src/uts/common/fs/zfs/unique.c
76
unique_t *un = kmem_alloc(sizeof (unique_t), KM_SLEEP);
usr/src/uts/common/fs/zfs/vdev.c
1232
mspp = kmem_zalloc(newc * sizeof (*mspp), KM_SLEEP);
usr/src/uts/common/fs/zfs/vdev.c
1435
vps = kmem_zalloc(sizeof (*vps), KM_SLEEP);
usr/src/uts/common/fs/zfs/vdev.c
3140
uint64_t *smobj_array = kmem_alloc(array_bytes, KM_SLEEP);
usr/src/uts/common/fs/zfs/vdev.c
373
newchild = kmem_zalloc(newsize, KM_SLEEP);
usr/src/uts/common/fs/zfs/vdev.c
465
newchild = kmem_alloc(newc * sizeof (vdev_t *), KM_SLEEP);
usr/src/uts/common/fs/zfs/vdev.c
488
vd = kmem_zalloc(sizeof (vdev_t), KM_SLEEP);
usr/src/uts/common/fs/zfs/vdev_cache.c
179
ve = kmem_zalloc(sizeof (vdev_cache_entry_t), KM_SLEEP);
usr/src/uts/common/fs/zfs/vdev_disk.c
1007
vb = kmem_alloc(sizeof (vdev_buf_t), KM_SLEEP);
usr/src/uts/common/fs/zfs/vdev_disk.c
101
dvd = vd->vdev_tsd = kmem_zalloc(sizeof (vdev_disk_t), KM_SLEEP);
usr/src/uts/common/fs/zfs/vdev_disk.c
1129
label = kmem_alloc(sizeof (vdev_label_t), KM_SLEEP);
usr/src/uts/common/fs/zfs/vdev_disk.c
1228
struct veb_ent *vebe = kmem_zalloc(sizeof (*vebe), KM_SLEEP);
usr/src/uts/common/fs/zfs/vdev_disk.c
1307
veb = kmem_zalloc(sizeof (*veb), KM_SLEEP);
usr/src/uts/common/fs/zfs/vdev_disk.c
239
char *buf = kmem_alloc(len, KM_SLEEP);
usr/src/uts/common/fs/zfs/vdev_disk.c
383
char *buf = kmem_alloc(len, KM_SLEEP);
usr/src/uts/common/fs/zfs/vdev_disk.c
633
physpath = kmem_alloc(MAXPATHLEN, KM_SLEEP);
usr/src/uts/common/fs/zfs/vdev_disk.c
655
lcb = kmem_zalloc(sizeof (vdev_disk_ldi_cb_t), KM_SLEEP);
usr/src/uts/common/fs/zfs/vdev_disk.c
666
lcb = kmem_zalloc(sizeof (vdev_disk_ldi_cb_t), KM_SLEEP);
usr/src/uts/common/fs/zfs/vdev_disk.c
802
bp = getrbuf(KM_SLEEP);
usr/src/uts/common/fs/zfs/vdev_disk.c
942
zio->io_vsd = dkc = kmem_alloc(sizeof (*dkc), KM_SLEEP);
usr/src/uts/common/fs/zfs/vdev_file.c
101
vf = vd->vdev_tsd = kmem_zalloc(sizeof (vdev_file_t), KM_SLEEP);
usr/src/uts/common/fs/zfs/vdev_file.c
262
vb = kmem_alloc(sizeof (vdev_buf_t), KM_SLEEP);
usr/src/uts/common/fs/zfs/vdev_indirect.c
1002
duplicate_mappings = kmem_alloc(copy_length, KM_SLEEP);
usr/src/uts/common/fs/zfs/vdev_indirect.c
1192
kmem_zalloc(offsetof(indirect_split_t, is_child[n]), KM_SLEEP);
usr/src/uts/common/fs/zfs/vdev_indirect.c
1281
indirect_vsd_t *iv = kmem_zalloc(sizeof (*iv), KM_SLEEP);
usr/src/uts/common/fs/zfs/vdev_indirect.c
364
spa_condensing_indirect_t *sci = kmem_zalloc(sizeof (*sci), KM_SLEEP);
usr/src/uts/common/fs/zfs/vdev_indirect.c
583
kmem_alloc(sizeof (*vime), KM_SLEEP);
usr/src/uts/common/fs/zfs/vdev_indirect.c
950
remap_segment_t *rs = kmem_alloc(sizeof (remap_segment_t), KM_SLEEP);
usr/src/uts/common/fs/zfs/vdev_indirect_births.c
109
vib->vib_entries = kmem_alloc(births_size, KM_SLEEP);
usr/src/uts/common/fs/zfs/vdev_indirect_births.c
149
new_entries = kmem_alloc(new_size, KM_SLEEP);
usr/src/uts/common/fs/zfs/vdev_indirect_births.c
99
vdev_indirect_births_t *vib = kmem_zalloc(sizeof (*vib), KM_SLEEP);
usr/src/uts/common/fs/zfs/vdev_indirect_mapping.c
340
vdev_indirect_mapping_t *vim = kmem_zalloc(sizeof (*vim), KM_SLEEP);
usr/src/uts/common/fs/zfs/vdev_indirect_mapping.c
356
vim->vim_entries = kmem_alloc(map_size, KM_SLEEP);
usr/src/uts/common/fs/zfs/vdev_indirect_mapping.c
477
vim->vim_entries = kmem_alloc(new_size, KM_SLEEP);
usr/src/uts/common/fs/zfs/vdev_indirect_mapping.c
574
uint32_t *counts = kmem_alloc(counts_size, KM_SLEEP);
usr/src/uts/common/fs/zfs/vdev_initialize.c
111
uint64_t *guid = kmem_zalloc(sizeof (uint64_t), KM_SLEEP);
usr/src/uts/common/fs/zfs/vdev_initialize.c
207
uint64_t *guid = kmem_zalloc(sizeof (uint64_t), KM_SLEEP);
usr/src/uts/common/fs/zfs/vdev_label.c
1059
VERIFY(nvlist_alloc(&label, NV_UNIQUE_NAME, KM_SLEEP) == 0);
usr/src/uts/common/fs/zfs/vdev_label.c
1072
VERIFY(nvlist_alloc(&label, NV_UNIQUE_NAME, KM_SLEEP) == 0);
usr/src/uts/common/fs/zfs/vdev_label.c
1099
error = nvlist_pack(label, &buf, &buflen, NV_ENCODE_XDR, KM_SLEEP);
usr/src/uts/common/fs/zfs/vdev_label.c
1349
KM_SLEEP);
usr/src/uts/common/fs/zfs/vdev_label.c
1693
if (nvlist_pack(label, &buf, &buflen, NV_ENCODE_XDR, KM_SLEEP) == 0) {
usr/src/uts/common/fs/zfs/vdev_label.c
1722
KM_SLEEP);
usr/src/uts/common/fs/zfs/vdev_label.c
227
vs = kmem_alloc(sizeof (*vs), KM_SLEEP);
usr/src/uts/common/fs/zfs/vdev_label.c
228
vsx = kmem_alloc(sizeof (*vsx), KM_SLEEP);
usr/src/uts/common/fs/zfs/vdev_label.c
636
KM_SLEEP);
usr/src/uts/common/fs/zfs/vdev_label.c
718
array = kmem_alloc(rvd->vdev_children * sizeof (uint64_t), KM_SLEEP);
usr/src/uts/common/fs/zfs/vdev_mirror.c
156
mm = kmem_zalloc(vdev_mirror_map_size(children), KM_SLEEP);
usr/src/uts/common/fs/zfs/vdev_raidz.c
1282
p = kmem_alloc(psize, KM_SLEEP);
usr/src/uts/common/fs/zfs/vdev_raidz.c
1418
p = kmem_alloc(psize, KM_SLEEP);
usr/src/uts/common/fs/zfs/vdev_raidz.c
1713
zio_t *zio = kmem_zalloc(sizeof (zio_t), KM_SLEEP);
usr/src/uts/common/fs/zfs/vdev_raidz.c
387
rm = kmem_alloc(offsetof(raidz_map_t, rm_col[scols]), KM_SLEEP);
usr/src/uts/common/fs/zfs/vdev_raidz_math.c
398
bench_zio = kmem_zalloc(sizeof (zio_t), KM_SLEEP);
usr/src/uts/common/fs/zfs/vdev_removal.c
1001
vdev_copy_segment_arg_t *vcsa = kmem_zalloc(sizeof (*vcsa), KM_SLEEP);
usr/src/uts/common/fs/zfs/vdev_removal.c
168
newdev = kmem_alloc((count - 1) * sizeof (void *), KM_SLEEP);
usr/src/uts/common/fs/zfs/vdev_removal.c
173
VERIFY(nvlist_dup(dev[i], &newdev[j++], KM_SLEEP) == 0);
usr/src/uts/common/fs/zfs/vdev_removal.c
189
spa_vdev_removal_t *svr = kmem_zalloc(sizeof (*svr), KM_SLEEP);
usr/src/uts/common/fs/zfs/vdev_removal.c
994
entry = kmem_zalloc(sizeof (vdev_indirect_mapping_entry_t), KM_SLEEP);
usr/src/uts/common/fs/zfs/vdev_trim.c
1226
children, KM_SLEEP);
usr/src/uts/common/fs/zfs/vdev_trim.c
1230
children, KM_SLEEP);
usr/src/uts/common/fs/zfs/vdev_trim.c
282
uint64_t *guid = kmem_zalloc(sizeof (uint64_t), KM_SLEEP);
usr/src/uts/common/fs/zfs/vdev_trim.c
487
uint64_t *guid = kmem_zalloc(sizeof (uint64_t), KM_SLEEP);
usr/src/uts/common/fs/zfs/zap.c
1008
zap_attribute_t *za = kmem_alloc(sizeof (*za), KM_SLEEP);
usr/src/uts/common/fs/zfs/zap.c
1028
zap_attribute_t *za = kmem_alloc(sizeof (*za), KM_SLEEP);
usr/src/uts/common/fs/zfs/zap.c
1053
zap_attribute_t *za = kmem_alloc(sizeof (*za), KM_SLEEP);
usr/src/uts/common/fs/zfs/zap.c
1078
zap_attribute_t *za = kmem_alloc(sizeof (*za), KM_SLEEP);
usr/src/uts/common/fs/zfs/zap.c
143
zap_leaf_t *l = kmem_zalloc(sizeof (zap_leaf_t), KM_SLEEP);
usr/src/uts/common/fs/zfs/zap.c
428
zap_leaf_t *l = kmem_zalloc(sizeof (zap_leaf_t), KM_SLEEP);
usr/src/uts/common/fs/zfs/zap.c
477
zap_leaf_t *l = kmem_zalloc(sizeof (zap_leaf_t), KM_SLEEP);
usr/src/uts/common/fs/zfs/zap_leaf.c
344
kmem_alloc(array_numints * sizeof (*thiskey), KM_SLEEP);
usr/src/uts/common/fs/zfs/zap_leaf.c
357
char *thisname = kmem_alloc(array_numints, KM_SLEEP);
usr/src/uts/common/fs/zfs/zap_micro.c
178
zap_name_t *zn = kmem_alloc(sizeof (zap_name_t), KM_SLEEP);
usr/src/uts/common/fs/zfs/zap_micro.c
237
zap_name_t *zn = kmem_alloc(sizeof (zap_name_t), KM_SLEEP);
usr/src/uts/common/fs/zfs/zap_micro.c
297
mzap_ent_t *mze = kmem_alloc(sizeof (mzap_ent_t), KM_SLEEP);
usr/src/uts/common/fs/zfs/zap_micro.c
386
zap_t *zap = kmem_zalloc(sizeof (zap_t), KM_SLEEP);
usr/src/uts/common/fs/zfs/zcp.c
170
zcp_cleanup_handler_t *zch = kmem_alloc(sizeof (*zch), KM_SLEEP);
usr/src/uts/common/fs/zfs/zcp.c
234
VERIFY0(nvlist_alloc(&nvl, 0, KM_SLEEP));
usr/src/uts/common/fs/zfs/zcp.c
721
int flags = (allocargs->aa_must_succeed) ? KM_SLEEP : KM_NOSLEEP_LAZY;
usr/src/uts/common/fs/zfs/zcp_get.c
164
buf = kmem_alloc(ZAP_MAXVALUELEN, KM_SLEEP);
usr/src/uts/common/fs/zfs/zcp_get.c
228
char *strval = kmem_alloc(ZAP_MAXVALUELEN, KM_SLEEP);
usr/src/uts/common/fs/zfs/zcp_get.c
432
char *strval = kmem_alloc(ZAP_MAXVALUELEN, KM_SLEEP);
usr/src/uts/common/fs/zfs/zcp_get.c
590
domain_val = kmem_alloc(domain_len + 1, KM_SLEEP);
usr/src/uts/common/fs/zfs/zcp_get.c
636
zfsvfs = kmem_zalloc(sizeof (zfsvfs_t), KM_SLEEP);
usr/src/uts/common/fs/zfs/zfs_acl.c
1898
vsecp->vsa_aclentp = kmem_alloc(aclsz, KM_SLEEP);
usr/src/uts/common/fs/zfs/zfs_acl.c
465
aclp = kmem_zalloc(sizeof (zfs_acl_t), KM_SLEEP);
usr/src/uts/common/fs/zfs/zfs_acl.c
481
aclnode = kmem_zalloc(sizeof (zfs_acl_node_t), KM_SLEEP);
usr/src/uts/common/fs/zfs/zfs_acl.c
483
aclnode->z_acldata = kmem_alloc(bytes, KM_SLEEP);
usr/src/uts/common/fs/zfs/zfs_acl.c
835
KM_SLEEP);
usr/src/uts/common/fs/zfs/zfs_ctldir.c
578
sep->se_name = kmem_alloc(strlen(nm) + 1, KM_SLEEP);
usr/src/uts/common/fs/zfs/zfs_ctldir.c
879
sep = kmem_alloc(sizeof (zfs_snapentry_t), KM_SLEEP);
usr/src/uts/common/fs/zfs/zfs_ctldir.c
880
sep->se_name = kmem_alloc(strlen(nm) + 1, KM_SLEEP);
usr/src/uts/common/fs/zfs/zfs_ctldir.c
889
mountpoint = kmem_alloc(mountpoint_len, KM_SLEEP);
usr/src/uts/common/fs/zfs/zfs_debug.c
80
zdm = kmem_alloc(sizeof (zfs_dbgmsg_t) + size, KM_SLEEP);
usr/src/uts/common/fs/zfs/zfs_dir.c
263
dl = kmem_alloc(sizeof (zfs_dirlock_t), KM_SLEEP);
usr/src/uts/common/fs/zfs/zfs_dir.c
295
name = kmem_alloc(dl->dl_namesize, KM_SLEEP);
usr/src/uts/common/fs/zfs/zfs_fm.c
456
zfs_ecksum_info_t *eip = kmem_zalloc(sizeof (*eip), KM_SLEEP);
usr/src/uts/common/fs/zfs/zfs_fm.c
721
zio_cksum_report_t *report = kmem_zalloc(sizeof (*report), KM_SLEEP);
usr/src/uts/common/fs/zfs/zfs_fm.c
730
report->zcr_ckinfo = kmem_zalloc(sizeof (*info), KM_SLEEP);
usr/src/uts/common/fs/zfs/zfs_fuid.c
130
packed = kmem_alloc(fuid_size, KM_SLEEP);
usr/src/uts/common/fs/zfs/zfs_fuid.c
148
domnode = kmem_alloc(sizeof (fuid_domain_t), KM_SLEEP);
usr/src/uts/common/fs/zfs/zfs_fuid.c
252
VERIFY(nvlist_alloc(&nvp, NV_UNIQUE_NAME, KM_SLEEP) == 0);
usr/src/uts/common/fs/zfs/zfs_fuid.c
255
fuids = kmem_alloc(numnodes * sizeof (void *), KM_SLEEP);
usr/src/uts/common/fs/zfs/zfs_fuid.c
258
VERIFY(nvlist_alloc(&fuids[i], NV_UNIQUE_NAME, KM_SLEEP) == 0);
usr/src/uts/common/fs/zfs/zfs_fuid.c
271
packed = kmem_alloc(nvsize, KM_SLEEP);
usr/src/uts/common/fs/zfs/zfs_fuid.c
273
NV_ENCODE_XDR, KM_SLEEP) == 0);
usr/src/uts/common/fs/zfs/zfs_fuid.c
340
domnode = kmem_alloc(sizeof (fuid_domain_t), KM_SLEEP);
usr/src/uts/common/fs/zfs/zfs_fuid.c
453
fuid_domain = kmem_alloc(sizeof (zfs_fuid_domain_t), KM_SLEEP);
usr/src/uts/common/fs/zfs/zfs_fuid.c
467
fuid = kmem_alloc(sizeof (zfs_fuid_t), KM_SLEEP);
usr/src/uts/common/fs/zfs/zfs_fuid.c
655
fuidp = kmem_zalloc(sizeof (zfs_fuid_info_t), KM_SLEEP);
usr/src/uts/common/fs/zfs/zfs_ioctl.c
1410
packed = kmem_alloc(size, KM_SLEEP);
usr/src/uts/common/fs/zfs/zfs_ioctl.c
1603
error = nvlist_dup(nvl, &rootprops, KM_SLEEP);
usr/src/uts/common/fs/zfs/zfs_ioctl.c
1623
VERIFY(nvlist_alloc(&zplprops, NV_UNIQUE_NAME, KM_SLEEP) == 0);
usr/src/uts/common/fs/zfs/zfs_ioctl.c
1879
hist_buf = kmem_alloc(size, KM_SLEEP);
usr/src/uts/common/fs/zfs/zfs_ioctl.c
2304
VERIFY(nvlist_alloc(&nv, NV_UNIQUE_NAME, KM_SLEEP) == 0);
usr/src/uts/common/fs/zfs/zfs_ioctl.c
2592
zc = kmem_zalloc(sizeof (zfs_cmd_t), KM_SLEEP);
usr/src/uts/common/fs/zfs/zfs_ioctl.c
2810
VERIFY(nvlist_alloc(newprops, NV_UNIQUE_NAME, KM_SLEEP) == 0);
usr/src/uts/common/fs/zfs/zfs_ioctl.c
2930
VERIFY(nvlist_alloc(&dummy, NV_UNIQUE_NAME, KM_SLEEP) == 0);
usr/src/uts/common/fs/zfs/zfs_ioctl.c
3369
NV_UNIQUE_NAME, KM_SLEEP) == 0);
usr/src/uts/common/fs/zfs/zfs_ioctl.c
375
buf = kmem_alloc(HIS_MAX_RECORD_LEN, KM_SLEEP);
usr/src/uts/common/fs/zfs/zfs_ioctl.c
4574
VERIFY(nvlist_alloc(&errors, NV_UNIQUE_NAME, KM_SLEEP) == 0);
usr/src/uts/common/fs/zfs/zfs_ioctl.c
4576
zc = kmem_alloc(sizeof (zfs_cmd_t), KM_SLEEP);
usr/src/uts/common/fs/zfs/zfs_ioctl.c
4702
VERIFY(nvlist_alloc(&delayprops, NV_UNIQUE_NAME, KM_SLEEP) == 0);
usr/src/uts/common/fs/zfs/zfs_ioctl.c
5569
void *buf = kmem_alloc(bufsize, KM_SLEEP);
usr/src/uts/common/fs/zfs/zfs_ioctl.c
7219
zc = kmem_zalloc(sizeof (zfs_cmd_t), KM_SLEEP);
usr/src/uts/common/fs/zfs/zfs_ioctl.c
7283
saved_poolname = kmem_alloc(len, KM_SLEEP);
usr/src/uts/common/fs/zfs/zfs_onexit.c
163
ap = kmem_alloc(sizeof (zfs_onexit_action_node_t), KM_SLEEP);
usr/src/uts/common/fs/zfs/zfs_onexit.c
81
zo = *zop = kmem_zalloc(sizeof (zfs_onexit_t), KM_SLEEP);
usr/src/uts/common/fs/zfs/zfs_replay.c
215
kmem_zalloc(domcnt * sizeof (char **), KM_SLEEP);
usr/src/uts/common/fs/zfs/zfs_replay.c
239
kmem_zalloc(domcnt * sizeof (char **), KM_SLEEP);
usr/src/uts/common/fs/zfs/zfs_replay.c
244
zfuid = kmem_alloc(sizeof (zfs_fuid_t), KM_SLEEP);
usr/src/uts/common/fs/zfs/zfs_rlock.c
226
proxy = kmem_alloc(sizeof (locked_range_t), KM_SLEEP);
usr/src/uts/common/fs/zfs/zfs_rlock.c
253
locked_range_t *rear = kmem_alloc(sizeof (locked_range_t), KM_SLEEP);
usr/src/uts/common/fs/zfs/zfs_rlock.c
276
locked_range_t *lr = kmem_alloc(sizeof (locked_range_t), KM_SLEEP);
usr/src/uts/common/fs/zfs/zfs_rlock.c
456
locked_range_t *new = kmem_alloc(sizeof (locked_range_t), KM_SLEEP);
usr/src/uts/common/fs/zfs/zfs_vfsops.c
1204
zfsvfs = kmem_zalloc(sizeof (zfsvfs_t), KM_SLEEP);
usr/src/uts/common/fs/zfs/zfs_vnops.c
1256
zgd = (zgd_t *)kmem_zalloc(sizeof (zgd_t), KM_SLEEP);
usr/src/uts/common/fs/zfs/zfs_vnops.c
2477
outbuf = kmem_alloc(bufsize, KM_SLEEP);
usr/src/uts/common/fs/zfs/zfs_vnops.c
3853
zl = kmem_alloc(sizeof (*zl), KM_SLEEP);
usr/src/uts/common/fs/zfs/zfs_znode.c
1920
rootzp = kmem_cache_alloc(znode_cache, KM_SLEEP);
usr/src/uts/common/fs/zfs/zfs_znode.c
1932
zfsvfs = kmem_zalloc(sizeof (zfsvfs_t), KM_SLEEP);
usr/src/uts/common/fs/zfs/zfs_znode.c
521
sharezp = kmem_cache_alloc(znode_cache, KM_SLEEP);
usr/src/uts/common/fs/zfs/zfs_znode.c
670
zp = kmem_cache_alloc(znode_cache, KM_SLEEP);
usr/src/uts/common/fs/zfs/zfs_znode.c
963
sa_attrs = kmem_alloc(sizeof (sa_bulk_attr_t) * ZPL_END, KM_SLEEP);
usr/src/uts/common/fs/zfs/zil.c
1014
zv = kmem_alloc(sizeof (*zv), KM_SLEEP);
usr/src/uts/common/fs/zfs/zil.c
1664
itx = kmem_alloc(offsetof(itx_t, itx_lr) + lrsize, KM_SLEEP);
usr/src/uts/common/fs/zfs/zil.c
167
zn = kmem_alloc(sizeof (zil_bp_node_t), KM_SLEEP);
usr/src/uts/common/fs/zfs/zil.c
1828
itxs = itxg->itxg_itxs = kmem_zalloc(sizeof (itxs_t), KM_SLEEP);
usr/src/uts/common/fs/zfs/zil.c
1847
ian = kmem_alloc(sizeof (itx_async_node_t), KM_SLEEP);
usr/src/uts/common/fs/zfs/zil.c
2581
zil_commit_waiter_t *zcw = kmem_cache_alloc(zil_zcw_cache, KM_SLEEP);
usr/src/uts/common/fs/zfs/zil.c
2971
zilog = kmem_zalloc(sizeof (zilog_t), KM_SLEEP);
usr/src/uts/common/fs/zfs/zil.c
3405
zr.zr_lr = kmem_alloc(2 * SPA_MAXBLOCKSIZE, KM_SLEEP);
usr/src/uts/common/fs/zfs/zil.c
519
lwb = kmem_cache_alloc(zil_lwb_cache, KM_SLEEP);
usr/src/uts/common/fs/zfs/zio.c
2241
gn = kmem_zalloc(sizeof (*gn), KM_SLEEP);
usr/src/uts/common/fs/zfs/zio.c
297
zio_transform_t *zt = kmem_alloc(sizeof (zio_transform_t), KM_SLEEP);
usr/src/uts/common/fs/zfs/zio.c
538
zio_link_t *zl = kmem_cache_alloc(zio_link_cache, KM_SLEEP);
usr/src/uts/common/fs/zfs/zio.c
711
zio = kmem_cache_alloc(zio_cache, KM_SLEEP);
usr/src/uts/common/fs/zfs/zio_compress.c
162
zio_decompress_failed_buf = kmem_alloc(s_len, KM_SLEEP);
usr/src/uts/common/fs/zfs/zio_crypt.c
1436
src_iovecs = kmem_alloc(nr_src * sizeof (iovec_t), KM_SLEEP);
usr/src/uts/common/fs/zfs/zio_crypt.c
1444
dst_iovecs = kmem_alloc(nr_dst * sizeof (iovec_t), KM_SLEEP);
usr/src/uts/common/fs/zfs/zio_crypt.c
1630
src_iovecs = kmem_alloc(nr_src * sizeof (iovec_t), KM_SLEEP);
usr/src/uts/common/fs/zfs/zio_crypt.c
1638
dst_iovecs = kmem_alloc(nr_dst * sizeof (iovec_t), KM_SLEEP);
usr/src/uts/common/fs/zfs/zio_crypt.c
1771
KM_SLEEP);
usr/src/uts/common/fs/zfs/zio_crypt.c
1778
KM_SLEEP);
usr/src/uts/common/fs/zfs/zio_crypt.c
1952
failed_decrypt_buf = kmem_alloc(datalen, KM_SLEEP);
usr/src/uts/common/fs/zfs/zio_crypt.c
279
&key->zk_current_tmpl, KM_SLEEP);
usr/src/uts/common/fs/zfs/zio_crypt.c
285
&key->zk_hmac_tmpl, KM_SLEEP);
usr/src/uts/common/fs/zfs/zio_crypt.c
333
&key->zk_current_tmpl, KM_SLEEP);
usr/src/uts/common/fs/zfs/zio_crypt.c
644
&key->zk_current_tmpl, KM_SLEEP);
usr/src/uts/common/fs/zfs/zio_crypt.c
650
&key->zk_hmac_tmpl, KM_SLEEP);
usr/src/uts/common/fs/zfs/zio_inject.c
769
handler = kmem_alloc(sizeof (inject_handler_t), KM_SLEEP);
usr/src/uts/common/fs/zfs/zio_inject.c
777
handler->zi_record.zi_nlanes, KM_SLEEP);
usr/src/uts/common/fs/zfs/zthr.c
259
zthr_t *t = kmem_zalloc(sizeof (*t), KM_SLEEP);
usr/src/uts/common/fs/zfs/zvol.c
1000
zgd = kmem_zalloc(sizeof (zgd_t), KM_SLEEP);
usr/src/uts/common/fs/zfs/zvol.c
1773
error = dfl_copyin((void *)arg, &dfl, flag, KM_SLEEP);
usr/src/uts/common/fs/zfs/zvol.c
2040
VERIFY(nvlist_alloc(&nv, NV_UNIQUE_NAME, KM_SLEEP) == 0);
usr/src/uts/common/fs/zfs/zvol.c
2158
VERIFY(nvlist_alloc(&nv, NV_UNIQUE_NAME, KM_SLEEP) == 0);
usr/src/uts/common/fs/zfs/zvol.c
296
ze = kmem_zalloc(sizeof (zvol_extent_t), KM_SLEEP);
usr/src/uts/common/fs/zfs/zvol.c
550
zv = zs->zss_data = kmem_zalloc(sizeof (zvol_state_t), KM_SLEEP);
usr/src/uts/common/fs/zfs/zvol.c
765
namebuf = kmem_zalloc(strlen(name) + 2, KM_SLEEP);
usr/src/uts/common/fs/zfs/zvol.c
816
char *physpath = kmem_zalloc(MAXPATHLEN, KM_SLEEP);
usr/src/uts/common/fs/zut/zut.c
112
zr = kmem_zalloc(sizeof (zut_readdir_t), KM_SLEEP);
usr/src/uts/common/fs/zut/zut.c
117
kbuf = kmem_zalloc(zr->zr_buflen, KM_SLEEP);
usr/src/uts/common/fs/zut/zut.c
292
zl = kmem_zalloc(sizeof (zut_lookup_t), KM_SLEEP);
usr/src/uts/common/gssapi/gssd_clnt_stubs.c
2774
mech = kmem_zalloc(sizeof (struct gss_config), KM_SLEEP);
usr/src/uts/common/gssapi/gssd_handle.c
134
netaddrp->buf = kmem_alloc(netaddrp->len, KM_SLEEP);
usr/src/uts/common/gssapi/gssd_handle.c
155
tmpaddr.buf = kmem_zalloc(netaddrp->maxlen, KM_SLEEP);
usr/src/uts/common/gssapi/gssd_handle.c
63
gssg = kmem_zalloc(sizeof (*gssg), KM_SLEEP);
usr/src/uts/common/gssapi/include/mechglueP.h
687
#define MALLOC(n) kmem_alloc((n), KM_SLEEP)
usr/src/uts/common/gssapi/include/mechglueP.h
732
KM_SLEEP)
usr/src/uts/common/gssapi/include/mechglueP.h
735
#define KGSS_ALLOC() kmem_zalloc(sizeof (struct kgss_ctx), KM_SLEEP)
usr/src/uts/common/gssapi/mechs/krb5/crypto/encrypt.c
61
KM_SLEEP);
usr/src/uts/common/gssapi/mechs/krb5/include/krb5.h
96
#define MALLOC(n) kmem_zalloc((n), KM_SLEEP)
usr/src/uts/common/gssapi/mechs/krb5/include/krb5.h
99
#define CALLOC(n, s) kmem_zalloc((n)*(s), KM_SLEEP)
usr/src/uts/common/idmap/idmap_cache.c
123
char *ret = kmem_alloc(len, KM_SLEEP);
usr/src/uts/common/idmap/idmap_cache.c
589
new = kmem_alloc(sizeof (sid2pid_t), KM_SLEEP);
usr/src/uts/common/idmap/idmap_cache.c
631
new = kmem_alloc(sizeof (pid2sid_t), KM_SLEEP);
usr/src/uts/common/idmap/idmap_cache.c
682
new = kmem_alloc(sizeof (sid2pid_t), KM_SLEEP);
usr/src/uts/common/idmap/idmap_cache.c
724
new = kmem_alloc(sizeof (pid2sid_t), KM_SLEEP);
usr/src/uts/common/idmap/idmap_cache.c
784
new = kmem_alloc(sizeof (sid2pid_t), KM_SLEEP);
usr/src/uts/common/idmap/idmap_cache.c
837
new = kmem_alloc(sizeof (pid2sid_t), KM_SLEEP);
usr/src/uts/common/idmap/idmap_cache.c
868
new = kmem_alloc(sizeof (pid2sid_t), KM_SLEEP);
usr/src/uts/common/idmap/idmap_cache.c
941
sizeof (struct sid_prefix_store), KM_SLEEP);
usr/src/uts/common/idmap/idmap_cache.c
998
new = kmem_alloc(sizeof (sid_prefix_node_t), KM_SLEEP);
usr/src/uts/common/idmap/idmap_kapi.c
1423
inbuf_ptr = kmem_alloc(inbuf_size, KM_SLEEP);
usr/src/uts/common/idmap/idmap_kapi.c
1424
outbuf_ptr = kmem_alloc(outbuf_size, KM_SLEEP);
usr/src/uts/common/idmap/idmap_kapi.c
321
zs = kmem_zalloc(sizeof (idmap_zone_specific_t), KM_SLEEP);
usr/src/uts/common/idmap/idmap_kapi.c
838
handle = kmem_zalloc(sizeof (idmap_get_handle_t), KM_SLEEP);
usr/src/uts/common/idmap/idmap_kapi.c
841
INIT_MAPPING_SIZE, KM_SLEEP);
usr/src/uts/common/idmap/idmap_kapi.c
844
INIT_MAPPING_SIZE, KM_SLEEP);
usr/src/uts/common/idmap/idmap_kapi.c
862
new_size, KM_SLEEP);
usr/src/uts/common/idmap/idmap_kapi.c
867
new_size, KM_SLEEP);
usr/src/uts/common/inet/dlpistub/dlpistub.c
154
dsp = kmem_zalloc(sizeof (dlpistub_t), KM_SLEEP);
usr/src/uts/common/inet/ilb/ilb.c
1116
arg = kmem_alloc(sizeof (ilb_rule_tq_t), KM_SLEEP);
usr/src/uts/common/inet/ilb/ilb.c
2055
ilbs = kmem_alloc(sizeof (ilb_stack_t), KM_SLEEP);
usr/src/uts/common/inet/ilb/ilb.c
2062
ilbs->ilbs_kstat = kmem_alloc(sizeof (ilb_g_kstat_t), KM_SLEEP);
usr/src/uts/common/inet/ilb/ilb.c
296
ilbs->ilbs_rule_hash_size, KM_SLEEP);
usr/src/uts/common/inet/ilb/ilb.c
846
arg = kmem_alloc(sizeof (ilb_rule_tq_t), KM_SLEEP);
usr/src/uts/common/inet/ilb/ilb_conn.c
1383
ilbs->ilbs_sticky_hash_size, KM_SLEEP);
usr/src/uts/common/inet/ilb/ilb_conn.c
1404
ilb_sticky_timer_size, KM_SLEEP);
usr/src/uts/common/inet/ilb/ilb_conn.c
321
ilbs->ilbs_conn_hash_size, KM_SLEEP);
usr/src/uts/common/inet/ilb/ilb_conn.c
323
ilbs->ilbs_conn_hash_size, KM_SLEEP);
usr/src/uts/common/inet/ilb/ilb_conn.c
346
ilb_conn_timer_size, KM_SLEEP);
usr/src/uts/common/inet/ilb/ilb_nat.c
139
ilbs->ilbs_nat_src_hash_size, KM_SLEEP);
usr/src/uts/common/inet/ip/icmp.c
1617
connp = rawip_do_open(family, credp, &error, KM_SLEEP);
usr/src/uts/common/inet/ip/icmp.c
1704
ASSERT(flags == KM_SLEEP || flags == KM_NOSLEEP);
usr/src/uts/common/inet/ip/icmp.c
5017
is = (icmp_stack_t *)kmem_zalloc(sizeof (*is), KM_SLEEP);
usr/src/uts/common/inet/ip/icmp.c
5021
is->is_propinfo_tbl = (mod_prop_info_t *)kmem_alloc(arrsz, KM_SLEEP);
usr/src/uts/common/inet/ip/icmp.c
5526
optvalp_buf = kmem_alloc(max_optbuf_len, KM_SLEEP);
usr/src/uts/common/inet/ip/ip.c
13207
kmem_zalloc(TX_FANOUT_SIZE * sizeof (idl_tx_list_t), KM_SLEEP);
usr/src/uts/common/inet/ip/ip.c
13212
sizeof (idl_t), KM_SLEEP);
usr/src/uts/common/inet/ip/ip.c
4583
INET_MIN_DEV + 2, MAXMIN32, KM_SLEEP)) == NULL) {
usr/src/uts/common/inet/ip/ip.c
4588
MAXMIN32 + 1, MAXMIN64, KM_SLEEP)) == NULL) {
usr/src/uts/common/inet/ip/ip.c
4594
INET_MIN_DEV + 2, MAXMIN, KM_SLEEP)) == NULL) {
usr/src/uts/common/inet/ip/ip.c
4651
ipst = (ip_stack_t *)kmem_zalloc(sizeof (*ipst), KM_SLEEP);
usr/src/uts/common/inet/ip/ip.c
4655
KM_SLEEP);
usr/src/uts/common/inet/ip/ip.c
4657
KM_SLEEP);
usr/src/uts/common/inet/ip/ip.c
4658
ipst->ips_ndp4 = kmem_zalloc(sizeof (ndp_g_t), KM_SLEEP);
usr/src/uts/common/inet/ip/ip.c
4659
ipst->ips_ndp6 = kmem_zalloc(sizeof (ndp_g_t), KM_SLEEP);
usr/src/uts/common/inet/ip/ip.c
4690
ipst->ips_propinfo_tbl = (mod_prop_info_t *)kmem_alloc(arrsz, KM_SLEEP);
usr/src/uts/common/inet/ip/ip.c
6055
connp = ipcl_conn_create(IPCL_IPCCONN, KM_SLEEP, ipst->ips_netstack);
usr/src/uts/common/inet/ip/ip_arp.c
1232
ai = kmem_zalloc(sizeof (*ai), KM_SLEEP);
usr/src/uts/common/inet/ip/ip_attr.c
829
return (conn_get_ixa_impl(connp, replace, KM_SLEEP));
usr/src/uts/common/inet/ip/ip_dce.c
311
ipst->ips_dce_default = kmem_cache_alloc(dce_cache, KM_SLEEP);
usr/src/uts/common/inet/ip/ip_dce.c
323
sizeof (dcb_t), KM_SLEEP);
usr/src/uts/common/inet/ip/ip_dce.c
325
sizeof (dcb_t), KM_SLEEP);
usr/src/uts/common/inet/ip/ip_helper_stream.c
114
ip_minfop = kmem_alloc(sizeof (ip_helper_minfo_t), KM_SLEEP);
usr/src/uts/common/inet/ip/ip_helper_stream.c
194
helper = kmem_alloc(sizeof (ip_helper_stream_info_t), KM_SLEEP);
usr/src/uts/common/inet/ip/ip_if.c
17885
ill->ill_allowed_ips_cnt * sizeof (in6_addr_t), KM_SLEEP);
usr/src/uts/common/inet/ip/ip_if.c
18124
lifcp->lifc_buf = kmem_zalloc(*bufsizep, KM_SLEEP);
usr/src/uts/common/inet/ip/ip_ire.c
2315
ire = kmem_cache_alloc(ire_cache, KM_SLEEP);
usr/src/uts/common/inet/ip/ip_ire.c
2322
ire = kmem_cache_alloc(ire_cache, KM_SLEEP);
usr/src/uts/common/inet/ip/ip_ire.c
2329
ire = kmem_cache_alloc(ire_cache, KM_SLEEP);
usr/src/uts/common/inet/ip/ip_ire.c
2336
ire = kmem_cache_alloc(ire_cache, KM_SLEEP);
usr/src/uts/common/inet/ip/ip_mroute.c
587
KM_SLEEP);
usr/src/uts/common/inet/ip/ip_mroute.c
588
ipst->ips_mrtstat = kmem_zalloc(sizeof (struct mrtstat), KM_SLEEP);
usr/src/uts/common/inet/ip/ip_mroute.c
595
KM_SLEEP);
usr/src/uts/common/inet/ip/ip_mroute.c
600
ipst->ips_tbfs = kmem_zalloc(sizeof (struct tbf) * MAXVIFS, KM_SLEEP);
usr/src/uts/common/inet/ip/ip_squeue.c
182
sqs = kmem_zalloc(sizeof (squeue_set_t), KM_SLEEP);
usr/src/uts/common/inet/ip/ip_squeue.c
317
kmem_zalloc(sizeof (squeue_set_t *) * (NCPU+1), KM_SLEEP);
usr/src/uts/common/inet/ip/ipclassifier.c
423
ipst->ips_ipcl_conn_fanout_size * sizeof (connf_t), KM_SLEEP);
usr/src/uts/common/inet/ip/ipclassifier.c
431
ipst->ips_ipcl_bind_fanout_size * sizeof (connf_t), KM_SLEEP);
usr/src/uts/common/inet/ip/ipclassifier.c
439
sizeof (connf_t), KM_SLEEP);
usr/src/uts/common/inet/ip/ipclassifier.c
446
sizeof (connf_t), KM_SLEEP);
usr/src/uts/common/inet/ip/ipclassifier.c
452
ipst->ips_rts_clients = kmem_zalloc(sizeof (connf_t), KM_SLEEP);
usr/src/uts/common/inet/ip/ipclassifier.c
457
ipst->ips_ipcl_udp_fanout_size * sizeof (connf_t), KM_SLEEP);
usr/src/uts/common/inet/ip/ipclassifier.c
464
ipst->ips_ipcl_iptun_fanout_size * sizeof (connf_t), KM_SLEEP);
usr/src/uts/common/inet/ip/ipclassifier.c
471
ipst->ips_ipcl_raw_fanout_size * sizeof (connf_t), KM_SLEEP);
usr/src/uts/common/inet/ip/ipclassifier.c
478
sizeof (connf_t) * CONN_G_HASH_SIZE, KM_SLEEP);
usr/src/uts/common/inet/ip/ipdrop.c
226
ipd->ipd_name = kmem_alloc(strlen(name) + 1, KM_SLEEP);
usr/src/uts/common/inet/ip/ipmp.c
103
mod_hash_bystr, NULL, mod_hash_strkey_cmp, KM_SLEEP);
usr/src/uts/common/inet/ip/ipsecah.c
398
ahstack = (ipsecah_stack_t *)kmem_zalloc(sizeof (*ahstack), KM_SLEEP);
usr/src/uts/common/inet/ip/ipsecah.c
401
ahp = (ipsecahparam_t *)kmem_alloc(sizeof (lcl_param_arr), KM_SLEEP);
usr/src/uts/common/inet/ip/ipsecesp.c
448
KM_SLEEP);
usr/src/uts/common/inet/ip/ipsecesp.c
451
espp = (ipsecespparam_t *)kmem_alloc(sizeof (lcl_param_arr), KM_SLEEP);
usr/src/uts/common/inet/ip/keysock.c
422
keystack = (keysock_stack_t *)kmem_zalloc(sizeof (*keystack), KM_SLEEP);
usr/src/uts/common/inet/ip/keysock.c
427
ksp = (keysockparam_t *)kmem_alloc(sizeof (lcl_param_arr), KM_SLEEP);
usr/src/uts/common/inet/ip/rts.c
1258
rtss = (rts_stack_t *)kmem_zalloc(sizeof (*rtss), KM_SLEEP);
usr/src/uts/common/inet/ip/rts.c
1261
pa = (rtsparam_t *)kmem_alloc(sizeof (lcl_param_arr), KM_SLEEP);
usr/src/uts/common/inet/ip/rts.c
1374
optvalp_buf = kmem_alloc(max_optbuf_len, KM_SLEEP);
usr/src/uts/common/inet/ip/rts.c
333
connp = ipcl_conn_create(IPCL_RTSCONN, KM_SLEEP, ns);
usr/src/uts/common/inet/ip/sadb.c
503
(void) sadb_init_trial(sp, size, KM_SLEEP);
usr/src/uts/common/inet/ip/spd.c
4762
&mech_infos, &nmech_infos, KM_SLEEP);
usr/src/uts/common/inet/ip/spd.c
5057
mechs = crypto_get_mech_list(&mech_count, KM_SLEEP);
usr/src/uts/common/inet/ip/spd.c
594
ipss = (ipsec_stack_t *)kmem_zalloc(sizeof (*ipss), KM_SLEEP);
usr/src/uts/common/inet/ip/spd.c
6024
KM_SLEEP, B_FALSE, ns) != 0) {
usr/src/uts/common/inet/ip/spd.c
623
(void) ipsec_alloc_tables(KM_SLEEP, ns);
usr/src/uts/common/inet/ip/spdsock.c
2576
alg = kmem_zalloc(sizeof (*alg), KM_SLEEP);
usr/src/uts/common/inet/ip/spdsock.c
2603
alg = kmem_zalloc(sizeof (*alg), KM_SLEEP);
usr/src/uts/common/inet/ip/spdsock.c
2642
KM_SLEEP);
usr/src/uts/common/inet/ip/spdsock.c
2678
KM_SLEEP);
usr/src/uts/common/inet/ip/spdsock.c
2705
KM_SLEEP);
usr/src/uts/common/inet/ip/spdsock.c
320
spds = (spd_stack_t *)kmem_zalloc(sizeof (*spds), KM_SLEEP);
usr/src/uts/common/inet/ip/spdsock.c
325
ssp = (spdsockparam_t *)kmem_alloc(sizeof (lcl_param_arr), KM_SLEEP);
usr/src/uts/common/inet/ip/spdsock.c
3676
mechs = crypto_get_mech_list(&mech_count, KM_SLEEP);
usr/src/uts/common/inet/ip/tnet.c
182
gcdb_hash_by_secattr, NULL, gcdb_hash_cmp, KM_SLEEP);
usr/src/uts/common/inet/ip/tnet.c
186
gcgrp_hash_by_addr, NULL, gcgrp_hash_cmp, KM_SLEEP);
usr/src/uts/common/inet/ip/tnet.c
190
gcgrp_hash_by_addr, NULL, gcgrp_hash_cmp, KM_SLEEP);
usr/src/uts/common/inet/ipd/ipd.c
847
configs = kmem_alloc(sizeof (ipd_ioc_info_t) * azones, KM_SLEEP);
usr/src/uts/common/inet/ipd/ipd.c
900
ins = kmem_zalloc(sizeof (ipd_netstack_t), KM_SLEEP);
usr/src/uts/common/inet/ipf/netinet/ip_compat.h
299
# define SLEEPING_KMALLOCS(a,b,c) (a) = (b)kmem_alloc((c), KM_SLEEP)
usr/src/uts/common/inet/ipf/solaris.c
429
ifs = (ipf_stack_t *)kmem_alloc(sizeof (*ifs), KM_SLEEP);
usr/src/uts/common/inet/ipnet/ipnet.c
1704
ips = kmem_zalloc(sizeof (*ips), KM_SLEEP);
usr/src/uts/common/inet/ipnet/ipnet.c
1853
cbnode = kmem_zalloc(sizeof (ipnetif_cbdata_t), KM_SLEEP);
usr/src/uts/common/inet/ipnet/ipnet.c
2202
ipnet = kmem_zalloc(sizeof (*ipnet), KM_SLEEP);
usr/src/uts/common/inet/iptun/iptun_dev.c
74
iptuns = kmem_zalloc(sizeof (*iptuns), KM_SLEEP);
usr/src/uts/common/inet/mi.c
115
ptr = kmem_alloc(size, KM_SLEEP);
usr/src/uts/common/inet/mi.c
834
INET_MIN_DEV, MAXMIN, KM_SLEEP);
usr/src/uts/common/inet/sctp/sctp.c
1328
int sleep = flags & SCTP_CAN_BLOCK ? KM_SLEEP : KM_NOSLEEP;
usr/src/uts/common/inet/sctp/sctp.c
1532
sctps = kmem_zalloc(sizeof (*sctps), KM_SLEEP);
usr/src/uts/common/inet/sctp/sctp.c
1547
KM_SLEEP);
usr/src/uts/common/inet/sctp/sctp.c
1571
KM_SLEEP);
usr/src/uts/common/inet/sctp/sctp.c
1574
KM_SLEEP);
usr/src/uts/common/inet/sctp/sctp.c
1696
KM_SLEEP);
usr/src/uts/common/inet/sctp/sctp.c
814
if (sleep == KM_SLEEP) {
usr/src/uts/common/inet/sctp/sctp_addr.c
1790
*addrlist = kmem_zalloc(*size, KM_SLEEP);
usr/src/uts/common/inet/sctp/sctp_addr.c
1820
*addrlist = kmem_zalloc(*size, KM_SLEEP);
usr/src/uts/common/inet/sctp/sctp_addr.c
1860
*addrlist = kmem_zalloc(*size, KM_SLEEP);
usr/src/uts/common/inet/sctp/sctp_addr.c
2050
SCTP_ILL_HASH, KM_SLEEP);
usr/src/uts/common/inet/sctp/sctp_addr.c
2052
SCTP_IPIF_HASH, KM_SLEEP);
usr/src/uts/common/inet/sctp/sctp_addr.c
409
err = sctp_ipif_hash_insert(sctp, ipif, KM_SLEEP,
usr/src/uts/common/inet/sctp/sctp_addr.c
434
err = sctp_get_all_ipifs(sctp, KM_SLEEP);
usr/src/uts/common/inet/sctp/sctp_asconf.c
1454
ainfo = kmem_zalloc(sizeof (*ainfo), KM_SLEEP);
usr/src/uts/common/inet/sctp/sctp_asconf.c
1460
KM_SLEEP);
usr/src/uts/common/inet/sctp/sctp_asconf.c
1582
ainfo = kmem_alloc(sizeof (*ainfo), KM_SLEEP);
usr/src/uts/common/inet/sctp/sctp_asconf.c
1585
KM_SLEEP);
usr/src/uts/common/inet/sctp/sctp_bind.c
184
slc = kmem_alloc(sizeof (sctp_listen_cnt_t), KM_SLEEP);
usr/src/uts/common/inet/sctp/sctp_bind.c
417
llist = kmem_alloc(lsize, KM_SLEEP);
usr/src/uts/common/inet/sctp/sctp_bind.c
501
ulist = kmem_alloc(usize, KM_SLEEP);
usr/src/uts/common/inet/sctp/sctp_conn.c
360
int sleep = sctp->sctp_cansleep ? KM_SLEEP : KM_NOSLEEP;
usr/src/uts/common/inet/sctp/sctp_conn.c
569
if ((err = sctp_build_hdrs(sctp, KM_SLEEP)) != 0) {
usr/src/uts/common/inet/sctp/sctp_conn.c
631
slist = kmem_alloc(ssize, KM_SLEEP);
usr/src/uts/common/inet/sctp/sctp_conn.c
632
flist = kmem_alloc(fsize, KM_SLEEP);
usr/src/uts/common/inet/sctp/sctp_hash.c
189
slist = kmem_alloc(ssize, cansleep ? KM_SLEEP : KM_NOSLEEP);
usr/src/uts/common/inet/sctp/sctp_hash.c
190
flist = kmem_alloc(fsize, cansleep ? KM_SLEEP : KM_NOSLEEP);
usr/src/uts/common/inet/sctp/sctp_hash.c
715
slist = kmem_alloc(ssize, KM_SLEEP);
usr/src/uts/common/inet/sctp/sctp_hash.c
781
slist = kmem_alloc(ssize, KM_SLEEP);
usr/src/uts/common/inet/sctp/sctp_hash.c
86
sizeof (sctp_tf_t), KM_SLEEP);
usr/src/uts/common/inet/sctp/sctp_hash.c
92
sizeof (sctp_tf_t), KM_SLEEP);
usr/src/uts/common/inet/sctp/sctp_hash.c
98
sizeof (sctp_tf_t), KM_SLEEP);
usr/src/uts/common/inet/sctp/sctp_misc.c
273
KM_SLEEP);
usr/src/uts/common/inet/sctp/sctp_timer.c
164
if (sleep == KM_SLEEP) {
usr/src/uts/common/inet/sockmods/sockmod_pfp.c
1367
fcode = kmem_alloc(size, KM_SLEEP);
usr/src/uts/common/inet/sockmods/sockmod_pfp.c
319
kmflags = (sflags & SOCKET_NOSLEEP) ? KM_NOSLEEP : KM_SLEEP;
usr/src/uts/common/inet/sockmods/sockmod_sctp.c
124
int kmflags = (sflags & SOCKET_NOSLEEP) ? KM_NOSLEEP : KM_SLEEP;
usr/src/uts/common/inet/sockmods/sockmod_sdp.c
78
int kmflags = (sflags & SOCKET_NOSLEEP) ? KM_NOSLEEP : KM_SLEEP;
usr/src/uts/common/inet/sockmods/socksctp.c
1268
optbuf = kmem_alloc(maxlen, KM_SLEEP);
usr/src/uts/common/inet/sockmods/socksctp.c
1586
buf = kmem_alloc(buflen, KM_SLEEP);
usr/src/uts/common/inet/sockmods/socksctp.c
1650
buf = kmem_alloc(optlen, KM_SLEEP);
usr/src/uts/common/inet/sockmods/socksctp.c
583
msg->msg_name = kmem_alloc(len, KM_SLEEP);
usr/src/uts/common/inet/sockmods/socksctpsubr.c
245
msg->msg_control = kmem_zalloc(optlen, KM_SLEEP);
usr/src/uts/common/inet/sockmods/socksctpsubr.c
400
(void) sosctp_aid_grow(ss, ss->ss_maxassoc, KM_SLEEP);
usr/src/uts/common/inet/sockmods/socksctpsubr.c
407
ssa = sosctp_assoc_create(ss, KM_SLEEP);
usr/src/uts/common/inet/sockmods/socksdp.c
759
optbuf = kmem_alloc(maxlen, KM_SLEEP);
usr/src/uts/common/inet/squeue.c
249
squeue_t *sqp = kmem_cache_alloc(squeue_cache, KM_SLEEP);
usr/src/uts/common/inet/tcp/tcp.c
3777
tcps = (tcp_stack_t *)kmem_zalloc(sizeof (*tcps), KM_SLEEP);
usr/src/uts/common/inet/tcp/tcp.c
3790
TCP_BIND_FANOUT_SIZE, KM_SLEEP);
usr/src/uts/common/inet/tcp/tcp.c
3792
TCP_ACCEPTOR_FANOUT_SIZE, KM_SLEEP);
usr/src/uts/common/inet/tcp/tcp.c
3809
KM_SLEEP);
usr/src/uts/common/inet/tcp/tcp.c
3865
KM_SLEEP);
usr/src/uts/common/inet/tcp/tcp.c
3868
KM_SLEEP);
usr/src/uts/common/inet/tcp/tcp.c
4076
sizeof (tcp_squeue_priv_t), KM_SLEEP);
usr/src/uts/common/inet/tcp/tcp.c
4499
KM_SLEEP);
usr/src/uts/common/inet/tcp/tcp_misc.c
664
KM_SLEEP);
usr/src/uts/common/inet/tcp/tcp_sig.c
136
tcpsig_db_t *db = kmem_alloc(sizeof (tcpsig_db_t), KM_SLEEP);
usr/src/uts/common/inet/tcp/tcp_socket.c
402
optvalp_buf = kmem_alloc(max_optbuf_len, KM_SLEEP);
usr/src/uts/common/inet/udp/udp.c
1509
connp = udp_do_open(credp, isv6, KM_SLEEP, &err);
usr/src/uts/common/inet/udp/udp.c
4521
us = (udp_stack_t *)kmem_zalloc(sizeof (*us), KM_SLEEP);
usr/src/uts/common/inet/udp/udp.c
4547
sizeof (udp_fanout_t), KM_SLEEP);
usr/src/uts/common/inet/udp/udp.c
4555
KM_SLEEP);
usr/src/uts/common/inet/udp/udp.c
4563
KM_SLEEP);
usr/src/uts/common/inet/udp/udp.c
4566
KM_SLEEP);
usr/src/uts/common/inet/udp/udp.c
4676
KM_SLEEP);
usr/src/uts/common/inet/udp/udp.c
4715
ASSERT(flags == KM_SLEEP || flags == KM_NOSLEEP);
usr/src/uts/common/inet/udp/udp.c
6456
optvalp_buf = kmem_alloc(max_optbuf_len, KM_SLEEP);
usr/src/uts/common/io/1394/adapters/hci1394_async.c
160
async = kmem_alloc(sizeof (hci1394_async_t), KM_SLEEP);
usr/src/uts/common/io/1394/adapters/hci1394_attach.c
618
KM_SLEEP);
usr/src/uts/common/io/1394/adapters/hci1394_buf.c
97
buf = kmem_alloc(sizeof (hci1394_buf_t), KM_SLEEP);
usr/src/uts/common/io/1394/adapters/hci1394_csr.c
111
csr = kmem_alloc(sizeof (hci1394_csr_t), KM_SLEEP);
usr/src/uts/common/io/1394/adapters/hci1394_isoch.c
73
isochp = kmem_alloc(sizeof (hci1394_isoch_t), KM_SLEEP);
usr/src/uts/common/io/1394/adapters/hci1394_ohci.c
92
ohci = kmem_alloc(sizeof (hci1394_ohci_t), KM_SLEEP);
usr/src/uts/common/io/1394/adapters/hci1394_q.c
107
q = kmem_alloc(sizeof (hci1394_q_t), KM_SLEEP);
usr/src/uts/common/io/1394/adapters/hci1394_tlabel.c
59
tstruct = kmem_alloc(sizeof (hci1394_tlabel_t), KM_SLEEP);
usr/src/uts/common/io/1394/adapters/hci1394_tlist.c
80
list = kmem_alloc(sizeof (hci1394_tlist_t), KM_SLEEP);
usr/src/uts/common/io/1394/adapters/hci1394_vendor.c
296
KM_SLEEP);
usr/src/uts/common/io/1394/adapters/hci1394_vendor.c
92
vendor = kmem_alloc(sizeof (hci1394_vendor_t), KM_SLEEP);
usr/src/uts/common/io/1394/h1394.c
137
hal = kmem_zalloc(sizeof (s1394_hal_t), KM_SLEEP);
usr/src/uts/common/io/1394/h1394.c
228
hal->selfid_buf0 = kmem_zalloc(S1394_SELFID_BUF_SIZE, KM_SLEEP);
usr/src/uts/common/io/1394/h1394.c
229
hal->selfid_buf1 = kmem_zalloc(S1394_SELFID_BUF_SIZE, KM_SLEEP);
usr/src/uts/common/io/1394/s1394.c
103
s1394_statep = kmem_zalloc(sizeof (s1394_state_t), KM_SLEEP);
usr/src/uts/common/io/1394/s1394_addr.c
631
KM_SLEEP);
usr/src/uts/common/io/1394/s1394_asynch.c
71
alloc_sleep = (flags & T1394_ALLOC_CMD_NOSLEEP) ? KM_NOSLEEP : KM_SLEEP;
usr/src/uts/common/io/1394/s1394_asynch.c
73
if ((alloc_sleep == KM_SLEEP) &&
usr/src/uts/common/io/1394/s1394_asynch.c
75
ASSERT(alloc_sleep != KM_SLEEP); /* fail */
usr/src/uts/common/io/1394/s1394_csr.c
1250
KM_SLEEP);
usr/src/uts/common/io/1394/s1394_csr.c
1254
IEEE1394_CONFIG_ROM_SZ, KM_SLEEP);
usr/src/uts/common/io/1394/s1394_csr.c
1337
text_leaf = (uint32_t *)kmem_zalloc(S1394_ROOT_TEXT_LEAF_SZ, KM_SLEEP);
usr/src/uts/common/io/1394/s1394_csr.c
1372
KM_SLEEP);
usr/src/uts/common/io/1394/s1394_csr.c
1403
unit_dir = (uint32_t *)kmem_zalloc(S1394_UNIT_DIR_SZ, KM_SLEEP);
usr/src/uts/common/io/1394/s1394_csr.c
1507
sizeof (s1394_config_rom_t), KM_SLEEP);
usr/src/uts/common/io/1394/s1394_csr.c
1514
sizeof (s1394_config_rom_t), KM_SLEEP);
usr/src/uts/common/io/1394/s1394_csr.c
1640
sizeof (s1394_config_rom_t), KM_SLEEP);
usr/src/uts/common/io/1394/s1394_csr.c
1802
sizeof (s1394_config_rom_t), KM_SLEEP);
usr/src/uts/common/io/1394/s1394_csr.c
385
KM_SLEEP);
usr/src/uts/common/io/1394/s1394_dev_disc.c
467
cfgrom = (uint32_t *)kmem_zalloc(IEEE1394_CONFIG_ROM_SZ, KM_SLEEP);
usr/src/uts/common/io/1394/s1394_misc.c
587
KM_SLEEP);
usr/src/uts/common/io/1394/t1394.c
100
target = kmem_zalloc(sizeof (s1394_target_t), KM_SLEEP);
usr/src/uts/common/io/1394/t1394.c
1413
cec_new = kmem_zalloc(sizeof (s1394_isoch_cec_t), KM_SLEEP);
usr/src/uts/common/io/1394/t1394.c
1638
cec_new = kmem_zalloc(sizeof (s1394_isoch_cec_t), KM_SLEEP);
usr/src/uts/common/io/1394/t1394.c
1788
member_new = kmem_zalloc(sizeof (s1394_isoch_cec_member_t), KM_SLEEP);
usr/src/uts/common/io/1394/targets/av1394/av1394_cfgrom.c
443
new_tl = kmem_zalloc(new_size, KM_SLEEP);
usr/src/uts/common/io/1394/targets/av1394/av1394_cmp.c
437
pcr = kmem_zalloc(sizeof (av1394_pcr_t), KM_SLEEP);
usr/src/uts/common/io/1394/targets/av1394/av1394_isoch_chan.c
107
icp = kmem_zalloc(sizeof (av1394_ic_t), KM_SLEEP);
usr/src/uts/common/io/1394/targets/av1394/av1394_isoch_chan.c
413
pool->ip_seg = kmem_zalloc(pool->ip_alloc_size, KM_SLEEP);
usr/src/uts/common/io/1394/targets/av1394/av1394_isoch_recv.c
314
sizeof (av1394_ir_ixl_data_t), KM_SLEEP);
usr/src/uts/common/io/1394/targets/av1394/av1394_isoch_recv.c
367
sizeof (ixl1394_xfer_buf_t), KM_SLEEP);
usr/src/uts/common/io/1394/targets/av1394/av1394_isoch_xmit.c
391
sizeof (av1394_it_frame_info_t), KM_SLEEP);
usr/src/uts/common/io/1394/targets/av1394/av1394_isoch_xmit.c
524
bp = kmem_zalloc(sizeof (av1394_it_ixl_buf_t), KM_SLEEP);
usr/src/uts/common/io/1394/targets/av1394/av1394_isoch_xmit.c
600
ep = kmem_zalloc(sizeof (av1394_it_ixl_empty_cip_t), KM_SLEEP);
usr/src/uts/common/io/1394/targets/dcam1394/dcam.c
911
kmem_alloc(sizeof (dcam1394_param_list_t), KM_SLEEP);
usr/src/uts/common/io/1394/targets/dcam1394/dcam.c
933
KM_SLEEP);
usr/src/uts/common/io/1394/targets/dcam1394/dcam_frame.c
224
sizeof (ixl1394_label_t), KM_SLEEP);
usr/src/uts/common/io/1394/targets/dcam1394/dcam_frame.c
234
sizeof (ixl1394_set_syncwait_t), KM_SLEEP);
usr/src/uts/common/io/1394/targets/dcam1394/dcam_frame.c
272
KM_SLEEP);
usr/src/uts/common/io/1394/targets/dcam1394/dcam_frame.c
299
KM_SLEEP);
usr/src/uts/common/io/1394/targets/dcam1394/dcam_frame.c
330
sizeof (ixl1394_callback_t), KM_SLEEP);
usr/src/uts/common/io/1394/targets/dcam1394/dcam_frame.c
345
new_ixl_jmpp = kmem_zalloc(sizeof (ixl1394_jump_t), KM_SLEEP);
usr/src/uts/common/io/1394/targets/dcam1394/dcam_ring_buff.c
69
ring_buff_p = (ring_buff_t *)kmem_alloc(num_bytes, KM_SLEEP);
usr/src/uts/common/io/1394/targets/dcam1394/dcam_ring_buff.c
84
(buff_info_t *)kmem_alloc(num_bytes, KM_SLEEP);
usr/src/uts/common/io/1394/targets/scsa1394/hba.c
1285
int kf = (callback == SLEEP_FUNC) ? KM_SLEEP : KM_NOSLEEP;
usr/src/uts/common/io/1394/targets/scsa1394/hba.c
1518
int kf = (callback == SLEEP_FUNC) ? KM_SLEEP : KM_NOSLEEP;
usr/src/uts/common/io/1394/targets/scsa1394/hba.c
2579
KM_SLEEP);
usr/src/uts/common/io/1394/targets/scsa1394/sbp2_bus.c
324
sbb = kmem_zalloc(sizeof (scsa1394_bus_buf_t), KM_SLEEP);
usr/src/uts/common/io/1394/targets/scsa1394/sbp2_bus.c
407
sbb = kmem_zalloc(sizeof (scsa1394_bus_buf_t), KM_SLEEP);
usr/src/uts/common/io/1394/targets/scsa1394/sbp2_driver.c
100
KM_SLEEP);
usr/src/uts/common/io/aac/aac.c
1612
softs->htable = kmem_alloc(softs->intr_size, KM_SLEEP);
usr/src/uts/common/io/aac/aac.c
2979
sizeof (struct aac_nondasd), KM_SLEEP);
usr/src/uts/common/io/aac/aac.c
4061
sense_data = kmem_zalloc(sdata_size, KM_SLEEP);
usr/src/uts/common/io/aac/aac.c
5142
int kf = (cb == SLEEP_FUNC) ? KM_SLEEP : KM_NOSLEEP;
usr/src/uts/common/io/aac/aac.c
6202
softs->total_slots, KM_SLEEP);
usr/src/uts/common/io/afe/afe.c
1560
txb = kmem_zalloc(sizeof (*txb), KM_SLEEP);
usr/src/uts/common/io/afe/afe.c
1604
rxb = kmem_zalloc(sizeof (*rxb), KM_SLEEP);
usr/src/uts/common/io/afe/afe.c
1693
KM_SLEEP);
usr/src/uts/common/io/afe/afe.c
1757
KM_SLEEP);
usr/src/uts/common/io/afe/afe.c
403
afep = kmem_zalloc(sizeof (afe_t), KM_SLEEP);
usr/src/uts/common/io/aggr/aggr_ctl.c
109
ports = kmem_alloc(ports_size, KM_SLEEP);
usr/src/uts/common/io/aggr/aggr_ctl.c
228
ports = kmem_alloc(ports_size, KM_SLEEP);
usr/src/uts/common/io/aggr/aggr_grp.c
1474
grp = kmem_cache_alloc(aggr_grp_cache, KM_SLEEP);
usr/src/uts/common/io/aggr/aggr_grp.c
1494
MAX_RINGS_PER_GROUP), KM_SLEEP);
usr/src/uts/common/io/aggr/aggr_grp.c
2709
addr = kmem_alloc(sizeof (aggr_unicst_addr_t), KM_SLEEP);
usr/src/uts/common/io/aggr/aggr_grp.c
2831
avp = kmem_zalloc(sizeof (aggr_vlan_t), KM_SLEEP);
usr/src/uts/common/io/aggr/aggr_grp.c
3291
mtu = kmem_alloc(sizeof (uint32_t) * grp->lg_nports, KM_SLEEP);
usr/src/uts/common/io/aggr/aggr_grp.c
3397
rval = kmem_alloc(rmaxcnt * sz_range32, KM_SLEEP);
usr/src/uts/common/io/aggr/aggr_grp.c
3400
ta = kmem_alloc(2 * rmaxcnt * sizeof (rboundary_t), KM_SLEEP);
usr/src/uts/common/io/aggr/aggr_grp.c
3471
KM_SLEEP);
usr/src/uts/common/io/aggr/aggr_grp.c
3477
vals[i] = kmem_alloc(size, KM_SLEEP);
usr/src/uts/common/io/aggr/aggr_grp.c
3492
vals[i] = kmem_alloc(size, KM_SLEEP);
usr/src/uts/common/io/aggr/aggr_grp.c
988
port->lp_tx_ring_alloc), KM_SLEEP);
usr/src/uts/common/io/aggr/aggr_grp.c
990
port->lp_tx_ring_alloc), KM_SLEEP);
usr/src/uts/common/io/aggr/aggr_port.c
215
port = kmem_cache_alloc(aggr_port_cache, KM_SLEEP);
usr/src/uts/common/io/aggr/aggr_port.c
638
addr = kmem_alloc(sizeof (aggr_unicst_addr_t), KM_SLEEP);
usr/src/uts/common/io/aggr/aggr_send.c
258
KM_SLEEP);
usr/src/uts/common/io/arn/arn_hw.c
498
kmem_zalloc(sizeof (struct ath_hal_5416), KM_SLEEP);
usr/src/uts/common/io/arn/arn_main.c
1659
an = kmem_zalloc(sizeof (struct ath_node), KM_SLEEP);
usr/src/uts/common/io/arn/arn_main.c
461
bf = (struct ath_buf *)kmem_zalloc(sc->sc_vbuflen, KM_SLEEP);
usr/src/uts/common/io/arn/arn_phy.c
344
ahp->ah_iniBank0.ia_rows), KM_SLEEP);
usr/src/uts/common/io/arn/arn_phy.c
347
ahp->ah_iniBank1.ia_rows), KM_SLEEP);
usr/src/uts/common/io/arn/arn_phy.c
350
ahp->ah_iniBank2.ia_rows), KM_SLEEP);
usr/src/uts/common/io/arn/arn_phy.c
353
ahp->ah_iniBank3.ia_rows), KM_SLEEP);
usr/src/uts/common/io/arn/arn_phy.c
356
ahp->ah_iniBank6.ia_rows), KM_SLEEP);
usr/src/uts/common/io/arn/arn_phy.c
359
ahp->ah_iniBank6TPC.ia_rows), KM_SLEEP);
usr/src/uts/common/io/arn/arn_phy.c
362
ahp->ah_iniBank7.ia_rows), KM_SLEEP);
usr/src/uts/common/io/arn/arn_phy.c
380
ahp->ah_iniAddac.ia_columns), KM_SLEEP);
usr/src/uts/common/io/arn/arn_phy.c
390
ahp->ah_iniBank6.ia_rows), KM_SLEEP);
usr/src/uts/common/io/asy.c
1103
asy->asy_inth = kmem_zalloc(asy->asy_inth_sz, KM_SLEEP);
usr/src/uts/common/io/asy.c
2241
asy->asy_priv = kmem_zalloc(sizeof (struct asyncline), KM_SLEEP);
usr/src/uts/common/io/atge/atge_l1.c
132
l1 = kmem_zalloc(sizeof (atge_l1_data_t), KM_SLEEP);
usr/src/uts/common/io/atge/atge_l1.c
140
atgep->atge_tx_ring = kmem_alloc(sizeof (atge_ring_t), KM_SLEEP);
usr/src/uts/common/io/atge/atge_l1.c
168
l1->atge_rx_ring = kmem_alloc(sizeof (atge_ring_t), KM_SLEEP);
usr/src/uts/common/io/atge/atge_l1.c
234
atgep->atge_hw_stats = kmem_zalloc(sizeof (atge_l1_smb_t), KM_SLEEP);
usr/src/uts/common/io/atge/atge_l1c.c
160
l1c = kmem_zalloc(sizeof (atge_l1c_data_t), KM_SLEEP);
usr/src/uts/common/io/atge/atge_l1c.c
168
atgep->atge_tx_ring = kmem_alloc(sizeof (atge_ring_t), KM_SLEEP);
usr/src/uts/common/io/atge/atge_l1c.c
196
l1c->atge_rx_ring = kmem_alloc(sizeof (atge_ring_t), KM_SLEEP);
usr/src/uts/common/io/atge/atge_l1c.c
262
atgep->atge_hw_stats = kmem_zalloc(sizeof (atge_l1c_smb_t), KM_SLEEP);
usr/src/uts/common/io/atge/atge_l1e.c
143
l1e = kmem_zalloc(sizeof (atge_l1e_data_t), KM_SLEEP);
usr/src/uts/common/io/atge/atge_l1e.c
151
atgep->atge_tx_ring = kmem_alloc(sizeof (atge_ring_t), KM_SLEEP);
usr/src/uts/common/io/atge/atge_l1e.c
188
kmem_zalloc(L1E_RX_PAGES * sizeof (atge_dma_t *), KM_SLEEP);
usr/src/uts/common/io/atge/atge_l1e.c
235
atgep->atge_hw_stats = kmem_zalloc(sizeof (atge_l1e_smb_t), KM_SLEEP);
usr/src/uts/common/io/atge/atge_main.c
1078
atgep = kmem_zalloc(sizeof (atge_t), KM_SLEEP);
usr/src/uts/common/io/atge/atge_main.c
1436
tbl = kmem_zalloc(rcnt * sizeof (atge_dma_t *), KM_SLEEP);
usr/src/uts/common/io/atge/atge_main.c
1477
dma = kmem_zalloc(sizeof (atge_dma_t), KM_SLEEP);
usr/src/uts/common/io/atge/atge_main.c
1534
dma = kmem_zalloc(sizeof (atge_dma_t), KM_SLEEP);
usr/src/uts/common/io/atge/atge_main.c
634
atgep->atge_intr_handle = kmem_zalloc(atgep->atge_intr_size, KM_SLEEP);
usr/src/uts/common/io/ath/ath_aux.c
307
kmem_zalloc(IEEE80211_CHAN_MAX * sizeof (HAL_CHANNEL), KM_SLEEP);
usr/src/uts/common/io/ath/ath_main.c
1211
an = kmem_zalloc(sizeof (struct ath_node), KM_SLEEP);
usr/src/uts/common/io/ath/ath_main.c
483
bf = (struct ath_buf *)kmem_zalloc(asc->asc_vbuflen, KM_SLEEP);
usr/src/uts/common/io/ath/ath_osdep.c
103
p = kmem_zalloc(size, KM_SLEEP);
usr/src/uts/common/io/audio/ac97/ac97.c
1332
ctrl = kmem_zalloc(sizeof (ac97_ctrl_t), KM_SLEEP);
usr/src/uts/common/io/audio/ac97/ac97.c
1596
ac = kmem_zalloc(sizeof (ac97_t), KM_SLEEP);
usr/src/uts/common/io/audio/drv/audio1575/audio1575.c
686
statep = kmem_zalloc(sizeof (*statep), KM_SLEEP);
usr/src/uts/common/io/audio/drv/audio1575/audio1575.c
841
port = kmem_zalloc(sizeof (*port), KM_SLEEP);
usr/src/uts/common/io/audio/drv/audio810/audio810.c
1054
port = kmem_zalloc(sizeof (*port), KM_SLEEP);
usr/src/uts/common/io/audio/drv/audio810/audio810.c
703
statep = kmem_zalloc(sizeof (*statep), KM_SLEEP);
usr/src/uts/common/io/audio/drv/audiocmi/audiocmi.c
900
dev = kmem_zalloc(sizeof (*dev), KM_SLEEP);
usr/src/uts/common/io/audio/drv/audiocmihd/audiocmihd.c
1540
devc = kmem_zalloc(sizeof (*devc), KM_SLEEP);
usr/src/uts/common/io/audio/drv/audiocmihd/audiocmihd.c
770
portc = kmem_zalloc(sizeof (*portc), KM_SLEEP);
usr/src/uts/common/io/audio/drv/audioemu10k/audioemu10k.c
1946
devc = kmem_zalloc(sizeof (*devc), KM_SLEEP);
usr/src/uts/common/io/audio/drv/audioemu10k/audioemu10k.c
874
portc = kmem_zalloc(sizeof (*portc), KM_SLEEP);
usr/src/uts/common/io/audio/drv/audioens/audioens.c
1000
dev = kmem_zalloc(sizeof (*dev), KM_SLEEP);
usr/src/uts/common/io/audio/drv/audiohd/audiohd.c
2689
pin = (audiohd_pin_t *)kmem_zalloc(sizeof (audiohd_pin_t), KM_SLEEP);
usr/src/uts/common/io/audio/drv/audiohd/audiohd.c
2778
kmem_zalloc(sizeof (audiohd_widget_t), KM_SLEEP);
usr/src/uts/common/io/audio/drv/audiohd/audiohd.c
2948
sizeof (hda_codec_t), KM_SLEEP);
usr/src/uts/common/io/audio/drv/audiohd/audiohd.c
324
statep = kmem_zalloc(sizeof (*statep), KM_SLEEP);
usr/src/uts/common/io/audio/drv/audiohd/audiohd.c
3269
KM_SLEEP);
usr/src/uts/common/io/audio/drv/audiohd/audiohd.c
3754
KM_SLEEP);
usr/src/uts/common/io/audio/drv/audiohd/audiohd.c
4578
KM_SLEEP);
usr/src/uts/common/io/audio/drv/audiohd/audiohd.c
4605
KM_SLEEP);
usr/src/uts/common/io/audio/drv/audiohd/audiohd.c
4893
path = kmem_zalloc(sizeof (audiohd_path_t), KM_SLEEP);
usr/src/uts/common/io/audio/drv/audiohd/audiohd.c
5001
port = kmem_zalloc(sizeof (*port), KM_SLEEP);
usr/src/uts/common/io/audio/drv/audioixp/audioixp.c
1256
statep = kmem_zalloc(sizeof (*statep), KM_SLEEP);
usr/src/uts/common/io/audio/drv/audioixp/audioixp.c
696
port = kmem_zalloc(sizeof (*port), KM_SLEEP);
usr/src/uts/common/io/audio/drv/audiols/audiols.c
1108
dev = kmem_zalloc(sizeof (*dev), KM_SLEEP);
usr/src/uts/common/io/audio/drv/audiols/audiols.c
497
port = kmem_zalloc(sizeof (*port), KM_SLEEP);
usr/src/uts/common/io/audio/drv/audiop16x/audiop16x.c
382
port = kmem_zalloc(sizeof (*port), KM_SLEEP);
usr/src/uts/common/io/audio/drv/audiop16x/audiop16x.c
548
dev = kmem_zalloc(sizeof (*dev), KM_SLEEP);
usr/src/uts/common/io/audio/drv/audiopci/audiopci.c
1183
dev = kmem_zalloc(sizeof (*dev), KM_SLEEP);
usr/src/uts/common/io/audio/drv/audiosolo/audiosolo.c
1371
dev = kmem_zalloc(sizeof (*dev), KM_SLEEP);
usr/src/uts/common/io/audio/drv/audiots/audiots.c
929
port = kmem_zalloc(sizeof (*port), KM_SLEEP);
usr/src/uts/common/io/audio/drv/audiovia823x/audiovia823x.c
375
portc = kmem_zalloc(sizeof (*portc), KM_SLEEP);
usr/src/uts/common/io/audio/drv/audiovia823x/audiovia823x.c
549
devc = kmem_zalloc(sizeof (*devc), KM_SLEEP);
usr/src/uts/common/io/audio/impl/audio_ctrl.c
119
ctrl = kmem_zalloc(sizeof (*ctrl), KM_SLEEP);
usr/src/uts/common/io/audio/impl/audio_ddi.c
506
helper = kmem_zalloc(sizeof (*helper), KM_SLEEP);
usr/src/uts/common/io/audio/impl/audio_engine.c
162
buf = kmem_alloc(nfr * e->e_framesz, KM_SLEEP);
usr/src/uts/common/io/audio/impl/audio_oss.c
2368
odev = kmem_zalloc(sizeof (*odev), KM_SLEEP);
usr/src/uts/common/io/audio/impl/audio_oss.c
412
odev->d_ctrls = kmem_zalloc(sizeof (audio_ctrl_t *) * nctrl, KM_SLEEP);
usr/src/uts/common/io/audio/impl/audio_oss.c
413
odev->d_exts = kmem_zalloc(sizeof (oss_mixext) * nctrl, KM_SLEEP);
usr/src/uts/common/io/audio/impl/audio_sun.c
1042
dev = kmem_zalloc(sizeof (*dev), KM_SLEEP);
usr/src/uts/common/io/avintr.c
167
mem = kmem_zalloc(sizeof (struct autovec), KM_SLEEP);
usr/src/uts/common/io/avintr.c
333
kmem_zalloc(sizeof (av_softinfo_t), KM_SLEEP);
usr/src/uts/common/io/avintr.c
354
mem = kmem_zalloc(sizeof (struct autovec), KM_SLEEP);
usr/src/uts/common/io/axf/axf_usbgem.c
1288
ugcp = kmem_zalloc(sizeof (*ugcp), KM_SLEEP);
usr/src/uts/common/io/axf/axf_usbgem.c
1363
lp = kmem_zalloc(sizeof (struct axf_dev), KM_SLEEP);
usr/src/uts/common/io/beep.c
107
KM_SLEEP);
usr/src/uts/common/io/bfe/bfe.c
2686
r->r_buf_dma = kmem_zalloc(size_krnl, KM_SLEEP);
usr/src/uts/common/io/bfe/bfe.c
2862
bfe = kmem_zalloc(sizeof (bfe_t), KM_SLEEP);
usr/src/uts/common/io/bge/bge_main2.c
2252
srbdp = kmem_zalloc(nslots*sizeof (*srbdp), KM_SLEEP);
usr/src/uts/common/io/bge/bge_main2.c
2405
ssbdp = kmem_zalloc(nslots*sizeof (*ssbdp), KM_SLEEP);
usr/src/uts/common/io/bge/bge_main2.c
2406
txbuf = kmem_zalloc(BGE_SEND_BUF_MAX*sizeof (*txbuf), KM_SLEEP);
usr/src/uts/common/io/bge/bge_main2.c
2408
kmem_zalloc(BGE_SEND_BUF_MAX*sizeof (bge_queue_item_t), KM_SLEEP);
usr/src/uts/common/io/bge/bge_main2.c
2409
srp->pktp = kmem_zalloc(BGE_SEND_BUF_MAX*sizeof (send_pkt_t), KM_SLEEP);
usr/src/uts/common/io/bge/bge_main2.c
3653
bgep = kmem_zalloc(sizeof (*bgep), KM_SLEEP);
usr/src/uts/common/io/bge/bge_main2.c
3654
bgep->pstats = kmem_zalloc(sizeof (bge_statistics_reg_t), KM_SLEEP);
usr/src/uts/common/io/bge/bge_main2.c
4381
bgep->htable = kmem_alloc(intr_size, KM_SLEEP);
usr/src/uts/common/io/bl.c
154
buf = kmem_zalloc(blr.bl_fmrisz, KM_SLEEP);
usr/src/uts/common/io/bl.c
160
err = nvlist_unpack(buf, blr.bl_fmrisz, &fmri, KM_SLEEP);
usr/src/uts/common/io/blkdev/blkdev.c
1007
if (kmflag == KM_SLEEP) {
usr/src/uts/common/io/blkdev/blkdev.c
1681
rv = dfl_copyin(ptr, &dfl, flag, KM_SLEEP);
usr/src/uts/common/io/blkdev/blkdev.c
1752
kmflag = tg_cookie ? KM_NOSLEEP : KM_SLEEP;
usr/src/uts/common/io/blkdev/blkdev.c
1965
if (nvlist_alloc(&attr, NV_UNIQUE_NAME_TYPE, KM_SLEEP) != 0) {
usr/src/uts/common/io/blkdev/blkdev.c
1972
path = kmem_zalloc(MAXPATHLEN, KM_SLEEP);
usr/src/uts/common/io/blkdev/blkdev.c
2148
if ((bp = getrbuf(KM_SLEEP)) == NULL) {
usr/src/uts/common/io/blkdev/blkdev.c
2154
xi = bd_xfer_alloc(bd, bp, bd->d_ops.o_sync_cache, KM_SLEEP);
usr/src/uts/common/io/blkdev/blkdev.c
2164
dc = kmem_alloc(sizeof (*dc), KM_SLEEP);
usr/src/uts/common/io/blkdev/blkdev.c
2198
bp = getrbuf(KM_SLEEP);
usr/src/uts/common/io/blkdev/blkdev.c
2257
bd, KM_SLEEP));
usr/src/uts/common/io/blkdev/blkdev.c
2444
devnm = kmem_alloc(MAXNAMELEN + 1, KM_SLEEP);
usr/src/uts/common/io/blkdev/blkdev.c
438
data_string = kmem_zalloc(ilen + 1, KM_SLEEP);
usr/src/uts/common/io/blkdev/blkdev.c
491
KM_SLEEP);
usr/src/uts/common/io/blkdev/blkdev.c
567
tmp = kmem_alloc(km_len + 1, KM_SLEEP);
usr/src/uts/common/io/blkdev/blkdev.c
747
bd->d_kiop = kmem_zalloc(sizeof (kstat_io_t), KM_SLEEP);
usr/src/uts/common/io/blkdev/blkdev.c
813
KM_SLEEP);
usr/src/uts/common/io/blkdev/blkdev.c
963
if (kmflag == KM_PUSHPAGE || kmflag == KM_SLEEP) {
usr/src/uts/common/io/bnx/bnxint.c
356
KM_SLEEP)) == NULL) {
usr/src/uts/common/io/bnxe/bnxe_intr.c
832
KM_SLEEP)) == NULL)
usr/src/uts/common/io/bnxe/bnxe_main.c
797
if ((pUM = kmem_zalloc(sizeof(um_device_t), KM_SLEEP)) == NULL)
usr/src/uts/common/io/bofi.c
1025
namep = kmem_zalloc(errdef.namesize+1, KM_SLEEP);
usr/src/uts/common/io/bofi.c
1118
namep = kmem_zalloc(errctl.namesize+1, KM_SLEEP);
usr/src/uts/common/io/bofi.c
1136
namep = kmem_zalloc(errctl.namesize+1, KM_SLEEP);
usr/src/uts/common/io/bofi.c
1154
namep = kmem_zalloc(errctl.namesize+1, KM_SLEEP);
usr/src/uts/common/io/bofi.c
1172
namep = kmem_zalloc(errctl.namesize+1, KM_SLEEP);
usr/src/uts/common/io/bofi.c
1191
namep = kmem_zalloc(errctl.namesize+1, KM_SLEEP);
usr/src/uts/common/io/bofi.c
1209
namep = kmem_zalloc(errctl.namesize+1, KM_SLEEP);
usr/src/uts/common/io/bofi.c
1496
namep = kmem_zalloc(get_handles.namesize+1, KM_SLEEP);
usr/src/uts/common/io/bofi.c
1499
bufptr = buffer = kmem_zalloc(req_count, KM_SLEEP);
usr/src/uts/common/io/bofi.c
1604
namep = kmem_zalloc(hdl_info.namesize + 1, KM_SLEEP);
usr/src/uts/common/io/bofi.c
1611
KM_SLEEP);
usr/src/uts/common/io/bofi.c
1745
ep = kmem_zalloc(sizeof (struct bofi_errent), KM_SLEEP);
usr/src/uts/common/io/bofi.c
1759
ep->errdef.log.logsize, KM_SLEEP);
usr/src/uts/common/io/bofi.c
3127
hp = kmem_zalloc(sizeof (struct bofi_shadow), KM_SLEEP);
usr/src/uts/common/io/bofi.c
3365
((waitfp == DDI_DMA_SLEEP) ? KM_SLEEP : KM_NOSLEEP));
usr/src/uts/common/io/bofi.c
3571
(dmareqp->dmar_fp == DDI_DMA_SLEEP) ? KM_SLEEP : KM_NOSLEEP,
usr/src/uts/common/io/bofi.c
3953
dummyhp = kmem_zalloc(sizeof (*dummyhp), KM_SLEEP);
usr/src/uts/common/io/bofi.c
3979
sizeof (struct bofi_shadow *), KM_SLEEP);
usr/src/uts/common/io/bofi.c
3984
hp = kmem_zalloc(sizeof (*hp), KM_SLEEP);
usr/src/uts/common/io/bofi.c
4005
KM_SLEEP, &hp->umem_cookie);
usr/src/uts/common/io/bofi.c
4598
hp = kmem_zalloc(sizeof (struct bofi_shadow), KM_SLEEP);
usr/src/uts/common/io/bpf/bpf.c
1282
fcode = kmem_alloc(size, KM_SLEEP);
usr/src/uts/common/io/bpf/bpf.c
488
d = (struct bpf_d *)kmem_zalloc(sizeof (*d), KM_SLEEP);
usr/src/uts/common/io/bpf/bpf_mod.c
286
bp = kmem_alloc(sizeof (*bp), KM_SLEEP);
usr/src/uts/common/io/bridge.c
592
bnew = kmem_zalloc(sizeof (*bnew), KM_SLEEP);
usr/src/uts/common/io/bridge.c
707
bip = kmem_zalloc(sizeof (*bip), KM_SLEEP);
usr/src/uts/common/io/bridge.c
832
bsp = kmem_zalloc(sizeof (*bsp), KM_SLEEP);
usr/src/uts/common/io/bufmod.c
214
sbp = kmem_alloc(sizeof (struct sb), KM_SLEEP);
usr/src/uts/common/io/busra.c
1359
newregs = kmem_alloc(rlen + sizeof (pci_regspec_t), KM_SLEEP);
usr/src/uts/common/io/busra.c
1521
newregs = kmem_alloc(rlen + sizeof (pci_regspec_t), KM_SLEEP);
usr/src/uts/common/io/busra.c
1668
newregs = kmem_alloc(sizeof (pci_regspec_t), KM_SLEEP);
usr/src/uts/common/io/busra.c
220
kmem_zalloc(sizeof (*typemapp), KM_SLEEP);
usr/src/uts/common/io/busra.c
222
KM_SLEEP);
usr/src/uts/common/io/busra.c
231
kmem_zalloc(sizeof (*dipmap), KM_SLEEP);
usr/src/uts/common/io/busra.c
427
kmem_zalloc(sizeof (*newmap), KM_SLEEP);
usr/src/uts/common/io/busra.c
437
kmem_zalloc(sizeof (*newmap), KM_SLEEP);
usr/src/uts/common/io/busra.c
505
kmem_zalloc(sizeof (*newmap), KM_SLEEP);
usr/src/uts/common/io/cardbus/cardbus.c
1269
KM_SLEEP);
usr/src/uts/common/io/cardbus/cardbus.c
1274
+ sizeof (struct intrspec), KM_SLEEP);
usr/src/uts/common/io/cardbus/cardbus.c
1533
propp = (ddi_prop_t *)kmem_zalloc(sizeof (ddi_prop_t), KM_SLEEP);
usr/src/uts/common/io/cardbus/cardbus.c
1534
propp->prop_name = (char *)kmem_alloc(pnlen, KM_SLEEP);
usr/src/uts/common/io/cardbus/cardbus.c
1547
char *nstr = kmem_zalloc(len + 1, KM_SLEEP);
usr/src/uts/common/io/cardbus/cardbus.c
1610
cdsp = kmem_zalloc(sizeof (*cdsp), KM_SLEEP);
usr/src/uts/common/io/cardbus/cardbus.c
1652
KM_SLEEP);
usr/src/uts/common/io/cardbus/cardbus.c
1670
KM_SLEEP);
usr/src/uts/common/io/cardbus/cardbus.c
1722
KM_SLEEP);
usr/src/uts/common/io/cardbus/cardbus.c
1734
KM_SLEEP);
usr/src/uts/common/io/cardbus/cardbus.c
1747
tl + 1, KM_SLEEP);
usr/src/uts/common/io/cardbus/cardbus.c
1787
strlen(token) + 1, KM_SLEEP);
usr/src/uts/common/io/cardbus/cardbus.c
825
KM_SLEEP);
usr/src/uts/common/io/cardbus/cardbus.c
854
sizeof (cardbus_range_t) * range_entries, KM_SLEEP);
usr/src/uts/common/io/cardbus/cardbus_cfg.c
3296
newreg = kmem_zalloc(alen+sizeof (*newone), KM_SLEEP);
usr/src/uts/common/io/cardbus/cardbus_cfg.c
3375
newreg = kmem_zalloc(alen + sizeof (pci_regspec_t), KM_SLEEP);
usr/src/uts/common/io/cardbus/cardbus_cfg.c
3454
newreg = kmem_zalloc(rlen+sizeof (cardbus_range_t), KM_SLEEP);
usr/src/uts/common/io/cardbus/cardbus_cfg.c
3520
newreg = kmem_zalloc(rlen+sizeof (pci_regspec_t), KM_SLEEP);
usr/src/uts/common/io/cardbus/cardbus_cfg.c
3912
compat[n] = kmem_alloc(strlen(buffer) + 1, KM_SLEEP);
usr/src/uts/common/io/cardbus/cardbus_cfg.c
3920
compat[n] = kmem_alloc(strlen(buffer) + 1, KM_SLEEP);
usr/src/uts/common/io/cardbus/cardbus_cfg.c
3929
compat[n] = kmem_alloc(strlen(buffer) + 1, KM_SLEEP);
usr/src/uts/common/io/cardbus/cardbus_cfg.c
3942
compat[n] = kmem_alloc(strlen(buffer) + 1, KM_SLEEP);
usr/src/uts/common/io/cardbus/cardbus_cfg.c
540
new = (cardbus_phdl_t *)kmem_zalloc(sizeof (cardbus_phdl_t), KM_SLEEP);
usr/src/uts/common/io/cardbus/cardbus_hp.c
123
cbp->nexus_path = kmem_alloc(strlen(tbuf) + 1, KM_SLEEP);
usr/src/uts/common/io/cardbus/cardbus_hp.c
128
slot_ops = hpc_alloc_slot_ops(KM_SLEEP);
usr/src/uts/common/io/cardbus/cardbus_hp.c
534
+ 1, KM_SLEEP);
usr/src/uts/common/io/cardbus/cardbus_hp.c
609
occupant->id[occupant->i] = kmem_alloc(strlen(pn) + 1, KM_SLEEP);
usr/src/uts/common/io/chxge/ch.c
1042
dhe = (free_dh_t *)kmem_zalloc(sizeof (*dhe), KM_SLEEP);
usr/src/uts/common/io/chxge/ch.c
1233
dhe = (free_dh_t *)kmem_zalloc(sizeof (*dhe), KM_SLEEP);
usr/src/uts/common/io/chxge/ch.c
1805
chp->ch_name = (char *)kmem_alloc(sizeof ("chxge00"), KM_SLEEP);
usr/src/uts/common/io/chxge/ch.c
401
chp = (ch_t *)kmem_zalloc(sizeof (ch_t), KM_SLEEP);
usr/src/uts/common/io/chxge/glue.c
132
return (kmem_zalloc(len, KM_SLEEP));
usr/src/uts/common/io/chxge/pe.c
1241
rbp = (ch_esb_t *)kmem_zalloc(sizeof (ch_esb_t), KM_SLEEP);
usr/src/uts/common/io/chxge/pe.c
1278
rbp = (ch_esb_t *)kmem_zalloc(sizeof (ch_esb_t), KM_SLEEP);
usr/src/uts/common/io/chxge/pe.c
393
KM_SLEEP);
usr/src/uts/common/io/cmlb.c
2110
devnm = kmem_alloc(MAXNAMELEN + 1, KM_SLEEP);
usr/src/uts/common/io/cmlb.c
2422
bufp = kmem_zalloc(blocksize, KM_SLEEP);
usr/src/uts/common/io/cmlb.c
2827
buf = kmem_zalloc(EFI_MIN_ARRAY_SIZE, KM_SLEEP);
usr/src/uts/common/io/cmlb.c
3656
tmp_geom = kmem_zalloc(sizeof (struct dk_geom), KM_SLEEP);
usr/src/uts/common/io/cmlb.c
3720
kmem_zalloc(sizeof (struct dk_geom), KM_SLEEP);
usr/src/uts/common/io/cmlb.c
4176
buffer = kmem_alloc(user_efi.dki_length, KM_SLEEP);
usr/src/uts/common/io/cmlb.c
4270
buffer = kmem_alloc(cl->cl_sys_blocksize, KM_SLEEP);
usr/src/uts/common/io/cmlb.c
4701
gpt = kmem_alloc(cl->cl_sys_blocksize, KM_SLEEP);
usr/src/uts/common/io/cmlb.c
4864
dkl = kmem_zalloc(cl->cl_sys_blocksize, KM_SLEEP);
usr/src/uts/common/io/cmlb.c
4912
dkl = kmem_zalloc(cl->cl_sys_blocksize, KM_SLEEP);
usr/src/uts/common/io/cmlb.c
5008
buffer = kmem_alloc(user_efi.dki_length, KM_SLEEP);
usr/src/uts/common/io/cmlb.c
5095
mboot = kmem_zalloc(buffer_size, KM_SLEEP);
usr/src/uts/common/io/cmlb.c
5149
mboot = kmem_zalloc(cl->cl_sys_blocksize, KM_SLEEP);
usr/src/uts/common/io/cmlb.c
539
cl = kmem_zalloc(sizeof (struct cmlb_lun), KM_SLEEP);
usr/src/uts/common/io/cmlb.c
5763
KM_SLEEP : KM_NOSLEEP)) == NULL)
usr/src/uts/common/io/comstar/lu/stmf_sbd/ats_copy_mgr.c
157
(ats_state_t *)kmem_zalloc(sizeof (ats_state_t), KM_SLEEP);
usr/src/uts/common/io/comstar/lu/stmf_sbd/ats_copy_mgr.c
239
buf = kmem_alloc(len, KM_SLEEP);
usr/src/uts/common/io/comstar/lu/stmf_sbd/ats_copy_mgr.c
559
scmd = (sbd_cmd_t *)kmem_alloc(sizeof (sbd_cmd_t), KM_SLEEP);
usr/src/uts/common/io/comstar/lu/stmf_sbd/ats_copy_mgr.c
570
scmd->trans_data = kmem_alloc((size_t)len, KM_SLEEP);
usr/src/uts/common/io/comstar/lu/stmf_sbd/sbd.c
1030
sms.sms_size, KM_SLEEP);
usr/src/uts/common/io/comstar/lu/stmf_sbd/sbd.c
1218
cb = kmem_zalloc(s, KM_SLEEP);
usr/src/uts/common/io/comstar/lu/stmf_sbd/sbd.c
1282
unused_sms = kmem_zalloc(sms_before_unused.sms_size, KM_SLEEP);
usr/src/uts/common/io/comstar/lu/stmf_sbd/sbd.c
1351
sli = (sbd_lu_info_1_1_t *)kmem_zalloc(sizeof (*sli) + s, KM_SLEEP);
usr/src/uts/common/io/comstar/lu/stmf_sbd/sbd.c
1794
namebuf = kmem_zalloc(sz, KM_SLEEP);
usr/src/uts/common/io/comstar/lu/stmf_sbd/sbd.c
2110
KM_SLEEP);
usr/src/uts/common/io/comstar/lu/stmf_sbd/sbd.c
2454
sli_buf_copy = kmem_alloc(sli_buf_sz + 1, KM_SLEEP);
usr/src/uts/common/io/comstar/lu/stmf_sbd/sbd.c
2480
sl->sl_serial_no = kmem_zalloc(sli->sli_serial_size, KM_SLEEP);
usr/src/uts/common/io/comstar/lu/stmf_sbd/sbd.c
2490
sl->sl_data_fname_alloc_size, KM_SLEEP);
usr/src/uts/common/io/comstar/lu/stmf_sbd/sbd.c
2508
sl->sl_alias = kmem_alloc(sl->sl_alias_alloc_size, KM_SLEEP);
usr/src/uts/common/io/comstar/lu/stmf_sbd/sbd.c
2516
KM_SLEEP);
usr/src/uts/common/io/comstar/lu/stmf_sbd/sbd.c
2728
ilu = (sbd_import_lu_t *)kmem_zalloc(ilu_sz, KM_SLEEP);
usr/src/uts/common/io/comstar/lu/stmf_sbd/sbd.c
2795
sl->sl_alias = kmem_alloc(alias_sz, KM_SLEEP);
usr/src/uts/common/io/comstar/lu/stmf_sbd/sbd.c
2821
sl->sl_mgmt_url = kmem_alloc(url_sz, KM_SLEEP);
usr/src/uts/common/io/comstar/lu/stmf_sbd/sbd.c
2940
sbd_mgmt_url = kmem_alloc(url_sz, KM_SLEEP);
usr/src/uts/common/io/comstar/lu/stmf_sbd/sbd.c
3436
p = (char *)kmem_alloc(strlen(src) + 1, KM_SLEEP);
usr/src/uts/common/io/comstar/lu/stmf_sbd/sbd.c
3453
if ((sl->sl_zfs_meta = kmem_zalloc(ZAP_MAXVALUELEN / 2, KM_SLEEP))
usr/src/uts/common/io/comstar/lu/stmf_sbd/sbd.c
3575
ptr = ah_meta = kmem_zalloc(ZAP_MAXVALUELEN, KM_SLEEP);
usr/src/uts/common/io/comstar/lu/stmf_sbd/sbd.c
3687
zc = kmem_zalloc(sizeof (zfs_cmd_t), KM_SLEEP);
usr/src/uts/common/io/comstar/lu/stmf_sbd/sbd.c
3691
KM_SLEEP);
usr/src/uts/common/io/comstar/lu/stmf_sbd/sbd.c
3717
KM_SLEEP);
usr/src/uts/common/io/comstar/lu/stmf_sbd/sbd.c
3747
(void) nvlist_alloc(&nv, NV_UNIQUE_NAME, KM_SLEEP);
usr/src/uts/common/io/comstar/lu/stmf_sbd/sbd.c
3749
if ((rc = nvlist_pack(nv, &packed, &len, NV_ENCODE_NATIVE, KM_SLEEP))) {
usr/src/uts/common/io/comstar/lu/stmf_sbd/sbd.c
3753
zc = kmem_zalloc(sizeof (zfs_cmd_t), KM_SLEEP);
usr/src/uts/common/io/comstar/lu/stmf_sbd/sbd.c
544
ilu = (sbd_import_lu_t *)kmem_zalloc(ilu_sz, KM_SLEEP);
usr/src/uts/common/io/comstar/lu/stmf_sbd/sbd.c
557
ilu = (sbd_import_lu_t *)kmem_zalloc(ilu_sz, KM_SLEEP);
usr/src/uts/common/io/comstar/lu/stmf_sbd/sbd.c
704
io_buf = (uint8_t *)kmem_zalloc(io_size, KM_SLEEP);
usr/src/uts/common/io/comstar/lu/stmf_sbd/sbd.c
778
io_buf = (uint8_t *)kmem_zalloc(io_size, KM_SLEEP);
usr/src/uts/common/io/comstar/lu/stmf_sbd/sbd.c
958
sm = kmem_zalloc(sizeof (*sm), KM_SLEEP);
usr/src/uts/common/io/comstar/lu/stmf_sbd/sbd.c
996
KM_SLEEP);
usr/src/uts/common/io/comstar/lu/stmf_sbd/sbd_pgr.c
1106
buf = kmem_zalloc(buf_size, KM_SLEEP);
usr/src/uts/common/io/comstar/lu/stmf_sbd/sbd_pgr.c
1131
buf = kmem_zalloc(buf_size, KM_SLEEP); /* fixed size cdb, 24 bytes */
usr/src/uts/common/io/comstar/lu/stmf_sbd/sbd_pgr.c
1220
buf = kmem_zalloc(buf_size, KM_SLEEP);
usr/src/uts/common/io/comstar/lu/stmf_sbd/sbd_pgr.c
1361
sizeof (stmf_remote_port_t) * max_tpdnum, KM_SLEEP);
usr/src/uts/common/io/comstar/lu/stmf_sbd/sbd_pgr.c
1557
kmem_zalloc(lpt_len, KM_SLEEP);
usr/src/uts/common/io/comstar/lu/stmf_sbd/sbd_pgr.c
1867
kmem_zalloc(lpt_len, KM_SLEEP);
usr/src/uts/common/io/comstar/lu/stmf_sbd/sbd_pgr.c
1933
char *str = (char *)kmem_zalloc(33, KM_SLEEP);
usr/src/uts/common/io/comstar/lu/stmf_sbd/sbd_pgr.c
289
spi = (sbd_pgr_info_t *)kmem_zalloc(sz, KM_SLEEP);
usr/src/uts/common/io/comstar/lu/stmf_sbd/sbd_pgr.c
473
spi = (sbd_pgr_info_t *)kmem_zalloc(totalsz, KM_SLEEP);
usr/src/uts/common/io/comstar/lu/stmf_sbd/sbd_pgr.c
547
key = (sbd_pgr_key_t *)kmem_zalloc(sizeof (sbd_pgr_key_t), KM_SLEEP);
usr/src/uts/common/io/comstar/lu/stmf_sbd/sbd_pgr.c
552
lpt_len, KM_SLEEP);
usr/src/uts/common/io/comstar/lu/stmf_sbd/sbd_pgr.c
560
rpt_len, KM_SLEEP);
usr/src/uts/common/io/comstar/lu/stmf_sbd/sbd_scsi.c
1010
KM_SLEEP);
usr/src/uts/common/io/comstar/lu/stmf_sbd/sbd_scsi.c
1072
scmd = (sbd_cmd_t *)kmem_alloc(sizeof (sbd_cmd_t), KM_SLEEP);
usr/src/uts/common/io/comstar/lu/stmf_sbd/sbd_scsi.c
1649
KM_SLEEP);
usr/src/uts/common/io/comstar/lu/stmf_sbd/sbd_scsi.c
1681
scmd = (sbd_cmd_t *)kmem_alloc(sizeof (sbd_cmd_t), KM_SLEEP);
usr/src/uts/common/io/comstar/lu/stmf_sbd/sbd_scsi.c
1761
kmem_alloc(sizeof (sbd_cmd_t), KM_SLEEP);
usr/src/uts/common/io/comstar/lu/stmf_sbd/sbd_scsi.c
1805
KM_SLEEP);
usr/src/uts/common/io/comstar/lu/stmf_sbd/sbd_scsi.c
2267
p = buf = kmem_zalloc(260, KM_SLEEP);
usr/src/uts/common/io/comstar/lu/stmf_sbd/sbd_scsi.c
2657
dkioc_free_list_t *dfl = kmem_zalloc(DFL_SZ(1), KM_SLEEP);
usr/src/uts/common/io/comstar/lu/stmf_sbd/sbd_scsi.c
2717
scmd = (sbd_cmd_t *)kmem_alloc(sizeof (sbd_cmd_t), KM_SLEEP);
usr/src/uts/common/io/comstar/lu/stmf_sbd/sbd_scsi.c
2726
scmd->trans_data = kmem_alloc((size_t)len, KM_SLEEP);
usr/src/uts/common/io/comstar/lu/stmf_sbd/sbd_scsi.c
2807
dfl = kmem_zalloc(DFL_SZ(num_desc), KM_SLEEP);
usr/src/uts/common/io/comstar/lu/stmf_sbd/sbd_scsi.c
2897
p = (uint8_t *)kmem_zalloc(bsize, KM_SLEEP);
usr/src/uts/common/io/comstar/lu/stmf_sbd/sbd_scsi.c
3006
p = (uint8_t *)kmem_zalloc(bsize, KM_SLEEP);
usr/src/uts/common/io/comstar/lu/stmf_sbd/sbd_scsi.c
3636
p = kmem_zalloc(512, KM_SLEEP);
usr/src/uts/common/io/comstar/lu/stmf_sbd/sbd_scsi.c
788
iov = kmem_alloc(iovcnt * sizeof (*iov), KM_SLEEP);
usr/src/uts/common/io/comstar/lu/stmf_sbd/sbd_zvol.c
279
abp = kmem_alloc(sizeof (arc_buf_t *) * numbufs, KM_SLEEP);
usr/src/uts/common/io/comstar/port/fcoet/fcoet_eth.c
434
KM_SLEEP);
usr/src/uts/common/io/comstar/port/fcoet/fcoet_fc.c
436
kmem_zalloc(els->els_resp_size, KM_SLEEP);
usr/src/uts/common/io/comstar/port/fct/discovery.c
1222
els->els_resp_payload = (uint8_t *)kmem_zalloc(8, KM_SLEEP);
usr/src/uts/common/io/comstar/port/fct/discovery.c
1452
els->els_resp_size, KM_SLEEP);
usr/src/uts/common/io/comstar/port/fct/discovery.c
1680
els->els_resp_payload = (uint8_t *)kmem_zalloc(20, KM_SLEEP);
usr/src/uts/common/io/comstar/port/fct/discovery.c
1925
els->els_resp_payload = (uint8_t *)kmem_zalloc(28, KM_SLEEP);
usr/src/uts/common/io/comstar/port/fct/discovery.c
1980
rscn_req_payload = kmem_alloc(rscn_req_size, KM_SLEEP);
usr/src/uts/common/io/comstar/port/fct/discovery.c
2434
sn = kmem_zalloc(snlen + 1, KM_SLEEP);
usr/src/uts/common/io/comstar/port/fct/discovery.c
2662
query_irp->irp_spn = kmem_zalloc(spnlen + 1, KM_SLEEP);
usr/src/uts/common/io/comstar/port/fct/fct.c
1010
kmem_flag = KM_SLEEP;
usr/src/uts/common/io/comstar/port/fct/fct.c
1175
(char *)kmem_zalloc(l+1, KM_SLEEP);
usr/src/uts/common/io/comstar/port/fct/fct.c
1196
port->port_max_logins * sizeof (fct_i_remote_port_t *), KM_SLEEP);
usr/src/uts/common/io/comstar/port/fct/fct.c
1198
sizeof (fct_i_remote_port_t *), KM_SLEEP);
usr/src/uts/common/io/comstar/port/fct/fct.c
1210
port->port_max_xchges * sizeof (fct_cmd_slot_t), KM_SLEEP);
usr/src/uts/common/io/comstar/port/fct/fct.c
1586
sizeof (fct_i_remote_port_t *), KM_SLEEP);
usr/src/uts/common/io/comstar/port/fct/fct.c
2364
kmem_zalloc(els->els_req_size, KM_SLEEP);
usr/src/uts/common/io/comstar/port/fct/fct.c
2366
kmem_zalloc(els->els_resp_size, KM_SLEEP);
usr/src/uts/common/io/comstar/port/fct/fct.c
2377
els->els_resp_size, KM_SLEEP);
usr/src/uts/common/io/comstar/port/fct/fct.c
2380
els->els_req_size, KM_SLEEP);
usr/src/uts/common/io/comstar/port/fct/fct.c
2389
els->els_resp_size, KM_SLEEP);
usr/src/uts/common/io/comstar/port/fct/fct.c
2392
els->els_req_size, KM_SLEEP);
usr/src/uts/common/io/comstar/port/fct/fct.c
2403
kmem_zalloc(els->els_resp_size, KM_SLEEP);
usr/src/uts/common/io/comstar/port/fct/fct.c
2406
kmem_zalloc(els->els_req_size, KM_SLEEP);
usr/src/uts/common/io/comstar/port/fct/fct.c
2484
kmem_zalloc(els->els_resp_size, KM_SLEEP);
usr/src/uts/common/io/comstar/port/fct/fct.c
2487
kmem_zalloc(els->els_req_size, KM_SLEEP);
usr/src/uts/common/io/comstar/port/fct/fct.c
2493
kmem_zalloc(els->els_resp_size, KM_SLEEP);
usr/src/uts/common/io/comstar/port/fct/fct.c
2496
kmem_zalloc(els->els_req_size, KM_SLEEP);
usr/src/uts/common/io/comstar/port/fct/fct.c
2565
KM_SLEEP);
usr/src/uts/common/io/comstar/port/fct/fct.c
2569
KM_SLEEP);
usr/src/uts/common/io/comstar/port/fct/fct.c
2577
KM_SLEEP);
usr/src/uts/common/io/comstar/port/fct/fct.c
258
*fctio = kmem_zalloc(sizeof (fctio_t), KM_SLEEP);
usr/src/uts/common/io/comstar/port/fct/fct.c
2580
KM_SLEEP);
usr/src/uts/common/io/comstar/port/fct/fct.c
2598
KM_SLEEP);
usr/src/uts/common/io/comstar/port/fct/fct.c
2601
KM_SLEEP);
usr/src/uts/common/io/comstar/port/fct/fct.c
2619
KM_SLEEP);
usr/src/uts/common/io/comstar/port/fct/fct.c
2622
KM_SLEEP);
usr/src/uts/common/io/comstar/port/fct/fct.c
2645
KM_SLEEP);
usr/src/uts/common/io/comstar/port/fct/fct.c
2649
KM_SLEEP);
usr/src/uts/common/io/comstar/port/fct/fct.c
265
*ibuf = kmem_zalloc((*fctio)->fctio_ilen, KM_SLEEP);
usr/src/uts/common/io/comstar/port/fct/fct.c
2678
KM_SLEEP);
usr/src/uts/common/io/comstar/port/fct/fct.c
2682
KM_SLEEP);
usr/src/uts/common/io/comstar/port/fct/fct.c
2703
KM_SLEEP);
usr/src/uts/common/io/comstar/port/fct/fct.c
2706
KM_SLEEP);
usr/src/uts/common/io/comstar/port/fct/fct.c
2718
KM_SLEEP);
usr/src/uts/common/io/comstar/port/fct/fct.c
2721
KM_SLEEP);
usr/src/uts/common/io/comstar/port/fct/fct.c
273
*abuf = kmem_zalloc((*fctio)->fctio_alen, KM_SLEEP);
usr/src/uts/common/io/comstar/port/fct/fct.c
2733
KM_SLEEP);
usr/src/uts/common/io/comstar/port/fct/fct.c
2736
KM_SLEEP);
usr/src/uts/common/io/comstar/port/fct/fct.c
2748
KM_SLEEP);
usr/src/uts/common/io/comstar/port/fct/fct.c
2752
KM_SLEEP);
usr/src/uts/common/io/comstar/port/fct/fct.c
281
*obuf = kmem_zalloc((*fctio)->fctio_olen, KM_SLEEP);
usr/src/uts/common/io/comstar/port/fct/fct.c
3457
KM_SLEEP) != DDI_SUCCESS) {
usr/src/uts/common/io/comstar/port/fct/fct.c
3504
KM_SLEEP) != DDI_SUCCESS) {
usr/src/uts/common/io/comstar/port/fct/fct.c
371
KM_SLEEP);
usr/src/uts/common/io/comstar/port/fct/fct.c
433
KM_SLEEP);
usr/src/uts/common/io/comstar/port/iscsit/iscsit.c
1218
ict = kmem_zalloc(sizeof (*ict), KM_SLEEP);
usr/src/uts/common/io/comstar/port/iscsit/iscsit.c
1706
pdu = kmem_cache_alloc(iscsit_status_pdu_cache, KM_SLEEP);
usr/src/uts/common/io/comstar/port/iscsit/iscsit.c
3052
&iscsit_global.global_props, KM_SLEEP);
usr/src/uts/common/io/comstar/port/iscsit/iscsit.c
535
KM_SLEEP);
usr/src/uts/common/io/comstar/port/iscsit/iscsit.c
545
&cfg_nvlist, KM_SLEEP);
usr/src/uts/common/io/comstar/port/iscsit/iscsit.c
716
NULL, NULL, NULL, NULL, KM_SLEEP);
usr/src/uts/common/io/comstar/port/iscsit/iscsit_isns.c
1389
itarget = kmem_zalloc(sizeof (isns_target_t), KM_SLEEP);
usr/src/uts/common/io/comstar/port/iscsit/iscsit_isns.c
2682
attr_tlv = (isns_tlv_t *)kmem_zalloc(attr_tlv_len, KM_SLEEP);
usr/src/uts/common/io/comstar/port/iscsit/iscsit_isns.c
2887
combined_pdu = kmem_alloc(combined_len, KM_SLEEP);
usr/src/uts/common/io/comstar/port/iscsit/iscsit_isns.c
3628
iportal = kmem_zalloc(sizeof (isns_portal_t), KM_SLEEP);
usr/src/uts/common/io/comstar/port/iscsit/iscsit_isns.c
509
isns_eid = kmem_alloc(hostinfo->length, KM_SLEEP);
usr/src/uts/common/io/comstar/port/iscsit/iscsit_isns.c
602
svr = kmem_zalloc(sizeof (iscsit_isns_svr_t), KM_SLEEP);
usr/src/uts/common/io/comstar/port/iscsit/iscsit_isns.c
675
ti = kmem_zalloc(sizeof (isns_target_info_t), KM_SLEEP);
usr/src/uts/common/io/comstar/port/iscsit/iscsit_isns.c
693
tig = kmem_zalloc(sizeof (isns_tpgt_t), KM_SLEEP);
usr/src/uts/common/io/comstar/port/iscsit/iscsit_isns.c
709
KM_SLEEP);
usr/src/uts/common/io/comstar/port/iscsit/iscsit_isns.c
765
itarget = kmem_zalloc(sizeof (isns_target_t), KM_SLEEP);
usr/src/uts/common/io/comstar/port/iscsit/iscsit_login.c
1808
ident_len, KM_SLEEP);
usr/src/uts/common/io/comstar/port/iscsit/iscsit_login.c
219
KM_SLEEP);
usr/src/uts/common/io/comstar/port/iscsit/iscsit_login.c
233
KM_SLEEP);
usr/src/uts/common/io/comstar/port/iscsit/iscsit_login.c
2625
kmem_alloc(strlen(string_val) + 1, KM_SLEEP);
usr/src/uts/common/io/comstar/port/iscsit/iscsit_login.c
2636
kmem_alloc(strlen(string_val) + 1, KM_SLEEP);
usr/src/uts/common/io/comstar/port/iscsit/iscsit_login.c
2782
ret = kmem_zalloc(*buflen, KM_SLEEP);
usr/src/uts/common/io/comstar/port/iscsit/iscsit_login.c
337
ctx = kmem_zalloc(sizeof (*ctx), KM_SLEEP);
usr/src/uts/common/io/comstar/port/iscsit/iscsit_radiuspacket.c
182
tmp_data = kmem_zalloc(MAX_RAD_PACKET_LEN, KM_SLEEP);
usr/src/uts/common/io/comstar/port/iscsit/iscsit_radiuspacket.c
70
data = kmem_zalloc(MAX_RAD_PACKET_LEN, KM_SLEEP);
usr/src/uts/common/io/comstar/port/iscsit/iscsit_sess.c
130
result = kmem_zalloc(sizeof (*result), KM_SLEEP);
usr/src/uts/common/io/comstar/port/iscsit/iscsit_sess.c
153
result->ist_rxpdu_queue = kmem_zalloc(sizeof (iscsit_cbuf_t), KM_SLEEP);
usr/src/uts/common/io/comstar/port/iscsit/iscsit_sess.c
167
kmem_alloc(strlen(initiator_name) + 1, KM_SLEEP);
usr/src/uts/common/io/comstar/port/iscsit/iscsit_sess.c
172
kmem_alloc(strlen(target_name) + 1, KM_SLEEP);
usr/src/uts/common/io/comstar/port/iscsit/iscsit_sess.c
486
ctx = kmem_zalloc(sizeof (*ctx), KM_SLEEP);
usr/src/uts/common/io/comstar/port/iscsit/iscsit_text.c
513
if (nvlist_alloc(&nv_resp, 0, KM_SLEEP) != 0) {
usr/src/uts/common/io/comstar/port/iscsit/iscsit_tgt.c
1361
result = kmem_zalloc(sizeof (*result), KM_SLEEP);
usr/src/uts/common/io/comstar/port/iscsit/iscsit_tgt.c
1374
result = kmem_zalloc(sizeof (*result), KM_SLEEP);
usr/src/uts/common/io/comstar/port/iscsit/iscsit_tgt.c
1610
tpg = kmem_zalloc(sizeof (*tpg), KM_SLEEP);
usr/src/uts/common/io/comstar/port/iscsit/iscsit_tgt.c
1705
tpg = kmem_zalloc(sizeof (*tpg), KM_SLEEP);
usr/src/uts/common/io/comstar/port/iscsit/iscsit_tgt.c
1844
portal = kmem_zalloc(sizeof (*portal), KM_SLEEP);
usr/src/uts/common/io/comstar/port/iscsit/iscsit_tgt.c
186
ctx = kmem_zalloc(sizeof (*ctx), KM_SLEEP);
usr/src/uts/common/io/comstar/port/iscsit/iscsit_tgt.c
2063
ini = kmem_zalloc(sizeof (iscsit_ini_t), KM_SLEEP);
usr/src/uts/common/io/comstar/port/iscsit/iscsit_tgt.c
2067
KM_SLEEP);
usr/src/uts/common/io/comstar/port/iscsit/iscsit_tgt.c
960
KM_SLEEP);
usr/src/uts/common/io/comstar/port/pppt/alua_ic_if.c
1106
rc = nvlist_alloc(&nvl, NV_UNIQUE_NAME, KM_SLEEP);
usr/src/uts/common/io/comstar/port/pppt/alua_ic_if.c
1404
rc = nvlist_alloc(&nvl, NV_UNIQUE_NAME, KM_SLEEP);
usr/src/uts/common/io/comstar/port/pppt/alua_ic_if.c
1439
rc = nvlist_alloc(&nvl, NV_UNIQUE_NAME, KM_SLEEP);
usr/src/uts/common/io/comstar/port/pppt/alua_ic_if.c
1464
stmf_ic_msg_t *m = kmem_zalloc(sizeof (*m), KM_SLEEP);
usr/src/uts/common/io/comstar/port/pppt/alua_ic_if.c
1560
stmf_ic_reg_port_msg_t *m = kmem_zalloc(sizeof (*m), KM_SLEEP);
usr/src/uts/common/io/comstar/port/pppt/alua_ic_if.c
1608
stmf_ic_dereg_port_msg_t *m = kmem_zalloc(sizeof (*m), KM_SLEEP);
usr/src/uts/common/io/comstar/port/pppt/alua_ic_if.c
1648
stmf_ic_reg_dereg_lun_msg_t *m = kmem_zalloc(sizeof (*m), KM_SLEEP);
usr/src/uts/common/io/comstar/port/pppt/alua_ic_if.c
1691
stmf_ic_scsi_cmd_msg_t *m = kmem_zalloc(sizeof (*m), KM_SLEEP);
usr/src/uts/common/io/comstar/port/pppt/alua_ic_if.c
1782
stmf_ic_scsi_data_msg_t *m = kmem_zalloc(sizeof (*m), KM_SLEEP);
usr/src/uts/common/io/comstar/port/pppt/alua_ic_if.c
1823
kmem_zalloc(sizeof (*m), KM_SLEEP);
usr/src/uts/common/io/comstar/port/pppt/alua_ic_if.c
1848
stmf_ic_scsi_status_msg_t *m = kmem_zalloc(sizeof (*m), KM_SLEEP);
usr/src/uts/common/io/comstar/port/pppt/alua_ic_if.c
1893
stmf_ic_r2t_msg_t *m = kmem_zalloc(sizeof (*m), KM_SLEEP);
usr/src/uts/common/io/comstar/port/pppt/alua_ic_if.c
1920
KM_SLEEP);
usr/src/uts/common/io/comstar/port/pppt/alua_ic_if.c
1968
KM_SLEEP);
usr/src/uts/common/io/comstar/port/pppt/alua_ic_if.c
2002
stmf_ic_status_msg_t *m = kmem_zalloc(sizeof (*m), KM_SLEEP);
usr/src/uts/common/io/comstar/port/pppt/alua_ic_if.c
2059
sdid = kmem_zalloc(sdid_size, KM_SLEEP);
usr/src/uts/common/io/comstar/port/pppt/alua_ic_if.c
2194
icm = (stmf_ic_msg_t *)kmem_zalloc(sizeof (*icm), KM_SLEEP);
usr/src/uts/common/io/comstar/port/pppt/alua_ic_if.c
2239
dup = (scsi_devid_desc_t *)kmem_zalloc(dup_size, KM_SLEEP);
usr/src/uts/common/io/comstar/port/pppt/alua_ic_if.c
2281
copy = kmem_zalloc(strlen(str) + 1, KM_SLEEP);
usr/src/uts/common/io/comstar/port/pppt/alua_ic_if.c
346
buf = kmem_alloc(size, KM_SLEEP);
usr/src/uts/common/io/comstar/port/pppt/alua_ic_if.c
525
icrp = (stmf_ic_reg_port_msg_t *)kmem_zalloc(sizeof (*icrp), KM_SLEEP);
usr/src/uts/common/io/comstar/port/pppt/alua_ic_if.c
551
KM_SLEEP);
usr/src/uts/common/io/comstar/port/pppt/alua_ic_if.c
618
kmem_zalloc(sizeof (*icrl), KM_SLEEP);
usr/src/uts/common/io/comstar/port/pppt/alua_ic_if.c
648
icsc = (stmf_ic_scsi_cmd_msg_t *)kmem_zalloc(sizeof (*icsc), KM_SLEEP);
usr/src/uts/common/io/comstar/port/pppt/alua_ic_if.c
670
(uint8_t *)kmem_zalloc(task->task_cdb_length, KM_SLEEP);
usr/src/uts/common/io/comstar/port/pppt/alua_ic_if.c
698
icsd = (stmf_ic_scsi_data_msg_t *)kmem_zalloc(sizeof (*icsd), KM_SLEEP);
usr/src/uts/common/io/comstar/port/pppt/alua_ic_if.c
722
sizeof (*icsx), KM_SLEEP);
usr/src/uts/common/io/comstar/port/pppt/alua_ic_if.c
750
KM_SLEEP);
usr/src/uts/common/io/comstar/port/pppt/alua_ic_if.c
778
icrt = (stmf_ic_r2t_msg_t *)kmem_zalloc(sizeof (*icrt), KM_SLEEP);
usr/src/uts/common/io/comstar/port/pppt/alua_ic_if.c
799
ics = (stmf_ic_status_msg_t *)kmem_zalloc(sizeof (*ics), KM_SLEEP);
usr/src/uts/common/io/comstar/port/pppt/alua_ic_if.c
843
kmem_zalloc(sizeof (*icscd), KM_SLEEP);
usr/src/uts/common/io/comstar/port/pppt/alua_ic_if.c
886
icerr = kmem_zalloc(sizeof (*icerr), KM_SLEEP);
usr/src/uts/common/io/comstar/port/pppt/pppt.c
1011
ps = kmem_zalloc(sizeof (*ps), KM_SLEEP);
usr/src/uts/common/io/comstar/port/pppt/pppt.c
1028
rport_devid->ident_length + 1, KM_SLEEP);
usr/src/uts/common/io/comstar/port/pppt/pppt.c
1194
&pppt_sess_destroy_task, ps, KM_SLEEP);
usr/src/uts/common/io/comstar/port/pppt/pppt.c
369
buf = kmem_alloc(buf_size, KM_SLEEP);
usr/src/uts/common/io/comstar/port/pppt/pppt.c
584
buf = kmem_alloc(size, KM_SLEEP);
usr/src/uts/common/io/comstar/port/pppt/pppt_tgt.c
308
ctx = kmem_zalloc(sizeof (*ctx), KM_SLEEP);
usr/src/uts/common/io/comstar/port/pppt/pppt_tgt.c
758
pppt_tgt_offline_task, tgt, KM_SLEEP);
usr/src/uts/common/io/comstar/port/qlt/qlt.c
1295
qlt->htable = kmem_zalloc((uint_t)qlt->intr_size, KM_SLEEP);
usr/src/uts/common/io/comstar/port/qlt/qlt.c
1393
qlt->htable = kmem_zalloc((uint_t)qlt->intr_size, KM_SLEEP);
usr/src/uts/common/io/comstar/port/qlt/qlt.c
1461
qlt->htable = kmem_zalloc((uint_t)qlt->intr_size, KM_SLEEP);
usr/src/uts/common/io/comstar/port/qlt/qlt.c
2840
KM_SLEEP);
usr/src/uts/common/io/comstar/port/qlt/qlt.c
3673
mcp = (mbox_cmd_t *)kmem_zalloc(sizeof (mbox_cmd_t), KM_SLEEP);
usr/src/uts/common/io/comstar/port/qlt/qlt.c
404
qlt->nvram = (qlt_nvram_t *)kmem_zalloc(sizeof (qlt_nvram_t), KM_SLEEP);
usr/src/uts/common/io/comstar/port/qlt/qlt.c
405
qlt->vpd = (uint32_t *)kmem_zalloc(QL_24XX_VPD_SIZE, KM_SLEEP);
usr/src/uts/common/io/comstar/port/qlt/qlt.c
670
KM_SLEEP);
usr/src/uts/common/io/comstar/port/qlt/qlt.c
673
KM_SLEEP);
usr/src/uts/common/io/comstar/port/qlt/qlt.c
676
(sizeof (qlt_mq_req_ptr_blk_t)), KM_SLEEP);
usr/src/uts/common/io/comstar/port/qlt/qlt.c
678
(sizeof (qlt_mq_rsp_ptr_blk_t)), KM_SLEEP);
usr/src/uts/common/io/comstar/port/qlt/qlt.c
9317
sizeof (qlt_trace_desc_t), KM_SLEEP);
usr/src/uts/common/io/comstar/port/qlt/qlt.c
9321
entry = kmem_zalloc(maxsize, KM_SLEEP);
usr/src/uts/common/io/comstar/port/qlt/qlt_dma.c
122
((ndx - 1) * (int)sizeof (qlt_dmem_bucket_t)), KM_SLEEP);
usr/src/uts/common/io/comstar/port/qlt/qlt_dma.c
229
pool = kmem_zalloc(sizeof (*pool), KM_SLEEP);
usr/src/uts/common/io/comstar/port/qlt/qlt_dma.c
490
qlt_handle = kmem_zalloc(sizeof (qlt_dma_handle_t), KM_SLEEP);
usr/src/uts/common/io/comstar/port/qlt/qlt_dma.c
736
qsgl = kmem_alloc(qsize, KM_SLEEP);
usr/src/uts/common/io/comstar/port/srpt/srpt_ch.c
170
KM_SLEEP);
usr/src/uts/common/io/comstar/port/srpt/srpt_ch.c
82
ch = kmem_zalloc(sizeof (*ch), KM_SLEEP);
usr/src/uts/common/io/comstar/port/srpt/srpt_ioc.c
1383
result = kmem_zalloc(sizeof (srpt_vmem_pool_t), KM_SLEEP);
usr/src/uts/common/io/comstar/port/srpt/srpt_ioc.c
451
ioc = kmem_zalloc(sizeof (srpt_ioc_t), KM_SLEEP);
usr/src/uts/common/io/comstar/port/srpt/srpt_ioc.c
513
ioc->ioc_num_iu_entries, KM_SLEEP);
usr/src/uts/common/io/comstar/port/srpt/srpt_ioc.c
516
ioc->ioc_num_iu_entries, KM_SLEEP);
usr/src/uts/common/io/comstar/port/srpt/srpt_mod.c
173
srpt_ctxt = kmem_zalloc(sizeof (srpt_ctxt_t), KM_SLEEP);
usr/src/uts/common/io/comstar/port/srpt/srpt_stp.c
1219
sdd = kmem_zalloc(sizeof (*sdd) + SRPT_EUI_ID_LEN + 1, KM_SLEEP);
usr/src/uts/common/io/comstar/port/srpt/srpt_stp.c
350
kmem_zalloc(sizeof (srpt_hw_port_t) * tgt->tp_nports, KM_SLEEP);
usr/src/uts/common/io/comstar/stmf/lun_map.c
1000
KM_SLEEP);
usr/src/uts/common/io/comstar/stmf/lun_map.c
1006
KM_SLEEP);
usr/src/uts/common/io/comstar/stmf/lun_map.c
1011
KM_SLEEP);
usr/src/uts/common/io/comstar/stmf/lun_map.c
1060
pplu = (void **)kmem_zalloc(m * sizeof (void *), KM_SLEEP);
usr/src/uts/common/io/comstar/stmf/lun_map.c
1102
pplu = (void **)kmem_zalloc(m * sizeof (void *), KM_SLEEP);
usr/src/uts/common/io/comstar/stmf/lun_map.c
380
kmem_zalloc(sizeof (stmf_lun_map_ent_t), KM_SLEEP);
usr/src/uts/common/io/comstar/stmf/lun_map.c
563
id = (stmf_id_data_t *)kmem_zalloc(total_size, KM_SLEEP);
usr/src/uts/common/io/comstar/stmf/lun_map.c
682
dst = (stmf_lun_map_t *)kmem_zalloc(sizeof (*dst), KM_SLEEP);
usr/src/uts/common/io/comstar/stmf/lun_map.c
689
sizeof (void *), KM_SLEEP);
usr/src/uts/common/io/comstar/stmf/lun_map.c
746
p = (void **)kmem_zalloc(nentries * sizeof (void *), KM_SLEEP);
usr/src/uts/common/io/comstar/stmf/lun_map.c
979
ve = (stmf_view_entry_t *)kmem_zalloc(sizeof (*ve), KM_SLEEP);
usr/src/uts/common/io/comstar/stmf/stmf.c
2200
kmem_flag = KM_SLEEP;
usr/src/uts/common/io/comstar/stmf/stmf.c
295
stmf_trace_buf = kmem_zalloc(stmf_trace_buf_size, KM_SLEEP);
usr/src/uts/common/io/comstar/stmf/stmf.c
3801
KM_SLEEP);
usr/src/uts/common/io/comstar/stmf/stmf.c
4175
nmaps * sizeof (stmf_itl_data_t *), KM_SLEEP);
usr/src/uts/common/io/comstar/stmf/stmf.c
477
*iocd = kmem_zalloc(sizeof (stmf_iocdata_t), KM_SLEEP);
usr/src/uts/common/io/comstar/stmf/stmf.c
487
*ibuf = kmem_zalloc((*iocd)->stmf_ibuf_size, KM_SLEEP);
usr/src/uts/common/io/comstar/stmf/stmf.c
492
*obuf = kmem_zalloc((*iocd)->stmf_obuf_size, KM_SLEEP);
usr/src/uts/common/io/comstar/stmf/stmf.c
6539
sizeof (stmf_worker_t) * stmf_nworkers, KM_SLEEP);
usr/src/uts/common/io/comstar/stmf/stmf.c
7869
req = kmem_zalloc(s, KM_SLEEP);
usr/src/uts/common/io/comstar/stmf/stmf.c
8289
sizeof (stmf_remote_port_t) + tptid_sz, KM_SLEEP);
usr/src/uts/common/io/cons.c
421
uiod.d_iov = kmem_alloc(iovlen, KM_SLEEP);
usr/src/uts/common/io/consconfig.c
120
return (i_ddi_strdup(usb_kb_path, KM_SLEEP));
usr/src/uts/common/io/consconfig.c
127
return (i_ddi_strdup(usb_ms_path, KM_SLEEP));
usr/src/uts/common/io/consconfig_dacf.c
1681
prop = kmem_zalloc(sizeof (cons_prop_t), KM_SLEEP);
usr/src/uts/common/io/consconfig_dacf.c
1687
prop->cp_pushmod = i_ddi_strdup((char *)pushmod, KM_SLEEP);
usr/src/uts/common/io/consconfig_dacf.c
2176
kc = defcons_kern_buf = kmem_zalloc(MMU_PAGESIZE, KM_SLEEP);
usr/src/uts/common/io/consconfig_dacf.c
369
fullpath = kmem_alloc(MAXPATHLEN, KM_SLEEP);
usr/src/uts/common/io/consconfig_dacf.c
373
buf = kmem_alloc(MAXPATHLEN, KM_SLEEP);
usr/src/uts/common/io/consconfig_dacf.c
653
sp = kmem_zalloc(sizeof (cons_state_t), KM_SLEEP);
usr/src/uts/common/io/conskbd.c
1287
kmem_zalloc(sizeof (conskbd_pending_msg_t), KM_SLEEP);
usr/src/uts/common/io/conskbd.c
1419
lqs = kmem_zalloc(sizeof (*lqs), KM_SLEEP);
usr/src/uts/common/io/consms.c
1145
rsp = (consms_response_t *)kmem_zalloc(sizeof (*rsp), KM_SLEEP);
usr/src/uts/common/io/consms.c
1350
msg = (consms_msg_t *)kmem_zalloc(sizeof (*msg), KM_SLEEP);
usr/src/uts/common/io/consms.c
669
lq = kmem_zalloc(sizeof (*lq), KM_SLEEP);
usr/src/uts/common/io/cpc.c
498
KM_SLEEP);
usr/src/uts/common/io/cpc.c
587
packbuf = kmem_alloc(len, KM_SLEEP);
usr/src/uts/common/io/cpc.c
594
if (nvlist_unpack(packbuf, len, &nvl, KM_SLEEP) != 0) {
usr/src/uts/common/io/cpc.c
650
set = kmem_zalloc(sizeof (kcpc_set_t), KM_SLEEP);
usr/src/uts/common/io/cpc.c
652
nreqs, KM_SLEEP);
usr/src/uts/common/io/cpc.c
725
sizeof (kcpc_attr_t), KM_SLEEP);
usr/src/uts/common/io/cpudrv.c
698
cur_spd = kmem_zalloc(sizeof (cpudrv_pm_spd_t), KM_SLEEP);
usr/src/uts/common/io/cpudrv.c
810
pmc = kmem_zalloc((cpupm->num_spd + 1) * sizeof (char *), KM_SLEEP);
usr/src/uts/common/io/cpudrv.c
823
pmc[i] = kmem_zalloc((size * sizeof (char)), KM_SLEEP);
usr/src/uts/common/io/cpudrv.c
841
pmc[0] = kmem_zalloc(sizeof (name), KM_SLEEP);
usr/src/uts/common/io/cryptmod.c
1848
CRYPT_ARCFOUR_KEYBYTES, KM_SLEEP);
usr/src/uts/common/io/cryptmod.c
1879
KM_SLEEP);
usr/src/uts/common/io/cryptmod.c
2124
CRYPT_ARCFOUR_KEYBYTES, KM_SLEEP);
usr/src/uts/common/io/cryptmod.c
2154
KM_SLEEP);
usr/src/uts/common/io/cryptmod.c
2681
cd->key = (char *)kmem_alloc((size_t)ci->keylen, KM_SLEEP);
usr/src/uts/common/io/cryptmod.c
2739
sizeof (crypto_key_t), KM_SLEEP);
usr/src/uts/common/io/cryptmod.c
2768
KM_SLEEP);
usr/src/uts/common/io/cryptmod.c
2773
KM_SLEEP);
usr/src/uts/common/io/cryptmod.c
2785
KM_SLEEP);
usr/src/uts/common/io/cryptmod.c
286
KM_SLEEP);
usr/src/uts/common/io/cryptmod.c
2868
&cd->enc_tmpl, KM_SLEEP);
usr/src/uts/common/io/cryptmod.c
2879
&cd->hmac_tmpl, KM_SLEEP);
usr/src/uts/common/io/cryptmod.c
820
inblock = kmem_zalloc(blocklen, KM_SLEEP);
usr/src/uts/common/io/cryptmod.c
821
rawkey = kmem_zalloc(keybytes, KM_SLEEP);
usr/src/uts/common/io/cryptmod.c
822
zeroblock = kmem_zalloc(blocklen, KM_SLEEP);
usr/src/uts/common/io/cryptmod.c
927
enckey->ck_data = kmem_zalloc(cdata->keylen, KM_SLEEP);
usr/src/uts/common/io/cryptmod.c
962
hmackey->ck_data = kmem_zalloc(cdata->keylen, KM_SLEEP);
usr/src/uts/common/io/cxgbe/common/t4_hw.c
83
return (kmem_alloc(size, KM_SLEEP));
usr/src/uts/common/io/cxgbe/t4nex/t4_ioctl.c
1732
buf = kmem_zalloc(buf_size, KM_SLEEP);
usr/src/uts/common/io/cxgbe/t4nex/t4_mac.c
159
const char **out = kmem_zalloc(sz, KM_SLEEP);
usr/src/uts/common/io/cxgbe/t4nex/t4_nexus.c
1011
fw_data = kmem_zalloc(fw_size, KM_SLEEP);
usr/src/uts/common/io/cxgbe/t4nex/t4_nexus.c
1037
card_fw = kmem_zalloc(sizeof (*card_fw), KM_SLEEP);
usr/src/uts/common/io/cxgbe/t4nex/t4_nexus.c
1249
cfbase = cfdata = kmem_zalloc(cflen, KM_SLEEP);
usr/src/uts/common/io/cxgbe/t4nex/t4_nexus.c
2399
rss = kmem_zalloc(pi->nrxq * sizeof (*rss), KM_SLEEP);
usr/src/uts/common/io/cxgbe/t4nex/t4_nexus.c
2739
(void) nvlist_alloc(&misc, NV_UNIQUE_NAME, KM_SLEEP);
usr/src/uts/common/io/cxgbe/t4nex/t4_nexus.c
382
pi = kmem_zalloc(sizeof (*pi), KM_SLEEP);
usr/src/uts/common/io/cxgbe/t4nex/t4_nexus.c
449
s->rxq = kmem_zalloc(s->nrxq * sizeof (struct sge_rxq), KM_SLEEP);
usr/src/uts/common/io/cxgbe/t4nex/t4_nexus.c
450
s->txq = kmem_zalloc(s->ntxq * sizeof (struct sge_txq), KM_SLEEP);
usr/src/uts/common/io/cxgbe/t4nex/t4_nexus.c
452
kmem_zalloc(s->iqmap_sz * sizeof (struct sge_iq *), KM_SLEEP);
usr/src/uts/common/io/cxgbe/t4nex/t4_nexus.c
454
kmem_zalloc(s->eqmap_sz * sizeof (struct sge_eq *), KM_SLEEP);
usr/src/uts/common/io/cxgbe/t4nex/t4_nexus.c
457
kmem_zalloc(sc->intr_count * sizeof (ddi_intr_handle_t), KM_SLEEP);
usr/src/uts/common/io/cxgbe/t4nex/t4_sge.c
1202
KM_SLEEP);
usr/src/uts/common/io/cxgbe/t4nex/t4_sge.c
1581
txq->sdesc = kmem_zalloc(sizeof (struct tx_sdesc) * eq->cap, KM_SLEEP);
usr/src/uts/common/io/cxgbe/t4nex/t4_sge.c
1599
txq->tx_dhdl_total, KM_SLEEP);
usr/src/uts/common/io/dcopy.c
216
dcopy_statep = kmem_zalloc(sizeof (*dcopy_statep), KM_SLEEP);
usr/src/uts/common/io/dcopy.c
609
device = kmem_zalloc(sizeof (*device), KM_SLEEP);
usr/src/uts/common/io/dcopy.c
631
channel = kmem_zalloc(sizeof (*channel), KM_SLEEP);
usr/src/uts/common/io/devfm.c
193
if ((err = nvlist_dup(fm_vers_nvl, &nvl, KM_SLEEP)) == 0)
usr/src/uts/common/io/devfm.c
296
buf = kmem_alloc(fid.fid_insz, KM_SLEEP);
usr/src/uts/common/io/devfm.c
301
err = nvlist_unpack(buf, fid.fid_insz, &invl, KM_SLEEP);
usr/src/uts/common/io/devfm.c
331
buf = kmem_alloc(sz, KM_SLEEP);
usr/src/uts/common/io/devfm.c
333
KM_SLEEP)) != 0) {
usr/src/uts/common/io/devfm.c
413
(void) nvlist_alloc(&fm_vers_nvl, NV_UNIQUE_NAME, KM_SLEEP);
usr/src/uts/common/io/devinfo.c
1042
cache->cache_data = kmem_alloc(map_size, KM_SLEEP);
usr/src/uts/common/io/devinfo.c
1099
priv = kmem_alloc(sizeof (struct di_priv_data), KM_SLEEP);
usr/src/uts/common/io/devinfo.c
1376
path = kmem_alloc(plen, KM_SLEEP);
usr/src/uts/common/io/devinfo.c
1403
NULL, di_key_cmp, KM_SLEEP);
usr/src/uts/common/io/devinfo.c
1411
NULL, di_key_cmp, KM_SLEEP);
usr/src/uts/common/io/devinfo.c
1737
struct di_stack *dsp = kmem_zalloc(sizeof (struct di_stack), KM_SLEEP);
usr/src/uts/common/io/devinfo.c
2086
i_lnode = kmem_zalloc(sizeof (i_lnode_t), KM_SLEEP);
usr/src/uts/common/io/devinfo.c
2118
i_link = kmem_zalloc(sizeof (i_link_t), KM_SLEEP);
usr/src/uts/common/io/devinfo.c
2460
i_lnode_hashfunc, NULL, i_lnode_cmp, KM_SLEEP);
usr/src/uts/common/io/devinfo.c
2585
struct di_key *key = kmem_zalloc(sizeof (*key), KM_SLEEP);
usr/src/uts/common/io/devinfo.c
2653
struct di_key *key = kmem_zalloc(sizeof (*key), KM_SLEEP);
usr/src/uts/common/io/devinfo.c
2666
pk->pk_path_addr = i_ddi_strdup(path_addr, KM_SLEEP);
usr/src/uts/common/io/devinfo.c
3202
pl = kmem_alloc(sizeof (*pl), KM_SLEEP);
usr/src/uts/common/io/devinfo.c
3206
pl->pl_name = i_ddi_strdup(prop->prop_name, KM_SLEEP);
usr/src/uts/common/io/devinfo.c
3213
pl->pl_val = kmem_alloc(pl->pl_len, KM_SLEEP);
usr/src/uts/common/io/devinfo.c
3491
path = kmem_alloc(MAXPATHLEN, KM_SLEEP);
usr/src/uts/common/io/devinfo.c
3582
hp = kmem_zalloc(sizeof (i_hp_t), KM_SLEEP);
usr/src/uts/common/io/devinfo.c
3937
all = kmem_zalloc(sizeof (*all) + 1, KM_SLEEP);
usr/src/uts/common/io/devinfo.c
3953
buf = di_cache.cache_data = kmem_alloc(map_size, KM_SLEEP);
usr/src/uts/common/io/devinfo.c
463
di_max_opens * sizeof (struct di_state *), KM_SLEEP);
usr/src/uts/common/io/devinfo.c
533
di_states[m] = kmem_zalloc(sizeof (struct di_state), KM_SLEEP);
usr/src/uts/common/io/devinfo.c
635
drv_name = kmem_alloc(MAXNAMELEN, KM_SLEEP);
usr/src/uts/common/io/devinfo.c
870
struct di_mem *mem = kmem_zalloc(sizeof (struct di_mem), KM_SLEEP);
usr/src/uts/common/io/devpoll.c
1356
ps->ps_dpbuf = kmem_zalloc(size, KM_SLEEP);
usr/src/uts/common/io/devpoll.c
163
devpolltbl = kmem_zalloc(sizeof (caddr_t) * dptblsize, KM_SLEEP);
usr/src/uts/common/io/devpoll.c
1737
pl = kmem_zalloc(sizeof (pcachelink_t), KM_SLEEP);
usr/src/uts/common/io/devpoll.c
670
newtbl = kmem_zalloc(sizeof (caddr_t) * dptblsize, KM_SLEEP);
usr/src/uts/common/io/devpoll.c
678
dpep = kmem_zalloc(sizeof (dp_entry_t), KM_SLEEP);
usr/src/uts/common/io/devpoll.c
785
pollfdp = kmem_alloc(uiosize, KM_SLEEP);
usr/src/uts/common/io/devpool.c
428
sizeof (id_t), KM_SLEEP);
usr/src/uts/common/io/devpool.c
499
KM_SLEEP);
usr/src/uts/common/io/devpool.c
573
listbuf = kmem_alloc(propput.pp_o_bufsize, KM_SLEEP);
usr/src/uts/common/io/devpool.c
580
&list, KM_SLEEP) != 0) {
usr/src/uts/common/io/devpool.c
629
KM_SLEEP);
usr/src/uts/common/io/dld/dld_drv.c
1202
mod_hash_bystr, NULL, mod_hash_strkey_cmp, KM_SLEEP);
usr/src/uts/common/io/dld/dld_drv.c
1245
objp = kmem_cache_alloc(drv_secobj_cachep, KM_SLEEP);
usr/src/uts/common/io/dld/dld_flow.c
111
finfo = kmem_zalloc(sizeof (*finfo), KM_SLEEP);
usr/src/uts/common/io/dld/dld_flow.c
77
fi = kmem_zalloc(sizeof (*fi), KM_SLEEP);
usr/src/uts/common/io/dld/dld_proto.c
905
addr = kmem_alloc(addr_length, KM_SLEEP);
usr/src/uts/common/io/dld/dld_str.c
502
modinfo = kmem_zalloc(sizeof (struct module_info), KM_SLEEP);
usr/src/uts/common/io/dld/dld_str.c
503
modinfo->mi_idname = kmem_zalloc(FMNAMESZ, KM_SLEEP);
usr/src/uts/common/io/dld/dld_str.c
510
rq = kmem_zalloc(sizeof (struct qinit), KM_SLEEP);
usr/src/uts/common/io/dld/dld_str.c
515
wq = kmem_zalloc(sizeof (struct qinit), KM_SLEEP);
usr/src/uts/common/io/dld/dld_str.c
520
stream = kmem_zalloc(sizeof (struct streamtab), KM_SLEEP);
usr/src/uts/common/io/dld/dld_str.c
625
dsp = kmem_cache_alloc(str_cachep, KM_SLEEP);
usr/src/uts/common/io/dld/dld_str.c
747
if ((dsp->ds_minor = mac_minor_hold(kmflags == KM_SLEEP)) == 0)
usr/src/uts/common/io/dls/dls.c
392
p = kmem_zalloc(sizeof (dls_multicst_addr_t), KM_SLEEP);
usr/src/uts/common/io/dls/dls_link.c
256
dhp = kmem_zalloc(sizeof (dls_head_t), KM_SLEEP);
usr/src/uts/common/io/dls/dls_link.c
642
VERIFY(nvlist_alloc(&nvp, NV_UNIQUE_NAME, KM_SLEEP) == 0);
usr/src/uts/common/io/dls/dls_link.c
701
dlp = kmem_cache_alloc(i_dls_link_cachep, KM_SLEEP);
usr/src/uts/common/io/dls/dls_link.c
760
mod_hash_bystr, NULL, mod_hash_strkey_cmp, KM_SLEEP);
usr/src/uts/common/io/dls/dls_mgmt.c
254
dlss = kmem_zalloc(sizeof (*dlss), KM_SLEEP);
usr/src/uts/common/io/dls/dls_mgmt.c
309
mod_hash_bystr, NULL, mod_hash_strkey_cmp, KM_SLEEP);
usr/src/uts/common/io/dls/dls_mgmt.c
977
ddp = kmem_cache_alloc(i_dls_devnet_cachep, KM_SLEEP);
usr/src/uts/common/io/dmfe/dmfe_main.c
2364
dmfep->tx_mcast = kmem_zalloc(dmfep->tx.n_desc / NBBY, KM_SLEEP);
usr/src/uts/common/io/dmfe/dmfe_main.c
2365
dmfep->tx_bcast = kmem_zalloc(dmfep->tx.n_desc / NBBY, KM_SLEEP);
usr/src/uts/common/io/dmfe/dmfe_main.c
2593
dmfep = kmem_zalloc(sizeof (*dmfep), KM_SLEEP);
usr/src/uts/common/io/drcompat.c
199
dsp = kmem_zalloc(sizeof (*dsp), KM_SLEEP);
usr/src/uts/common/io/dump.c
97
char *pathbuf = kmem_zalloc(MAXPATHLEN, KM_SLEEP);
usr/src/uts/common/io/e1000g/e1000g_main.c
432
(struct e1000g *)kmem_zalloc(sizeof (*Adapter), KM_SLEEP);
usr/src/uts/common/io/e1000g/e1000g_main.c
568
kmem_zalloc(sizeof (struct dev_info), KM_SLEEP);
usr/src/uts/common/io/e1000g/e1000g_main.c
573
kmem_zalloc(sizeof (private_devi_list_t), KM_SLEEP);
usr/src/uts/common/io/e1000g/e1000g_main.c
6199
Adapter->htable = kmem_alloc(Adapter->intr_size, KM_SLEEP);
usr/src/uts/common/io/eedev/eedev.c
531
e = kmem_zalloc(sizeof (eedev_dip_t), KM_SLEEP);
usr/src/uts/common/io/eedev/eedev.c
672
hdl = kmem_zalloc(sizeof (eedev_hdl_t), KM_SLEEP);
usr/src/uts/common/io/efe/efe.c
1155
rp = kmem_zalloc(sizeof (efe_ring_t), KM_SLEEP);
usr/src/uts/common/io/efe/efe.c
1178
rp->r_bufpp = kmem_zalloc(BUFPSZ(len), KM_SLEEP);
usr/src/uts/common/io/efe/efe.c
1232
bp = kmem_zalloc(sizeof (efe_buf_t), KM_SLEEP);
usr/src/uts/common/io/efe/efe.c
298
efep = kmem_zalloc(sizeof (efe_t), KM_SLEEP);
usr/src/uts/common/io/elxl/elxl.c
356
r->r_desc = kmem_zalloc(sizeof (ex_desc_t) * count, KM_SLEEP);
usr/src/uts/common/io/elxl/elxl.c
472
sc = kmem_zalloc(sizeof (*sc), KM_SLEEP);
usr/src/uts/common/io/emul64.c
1190
kmem_alloc(error_inj_req.eccd_sns_dlen, KM_SLEEP);
usr/src/uts/common/io/emul64.c
1548
nw = kmem_zalloc(sizeof (*nw), KM_SLEEP);
usr/src/uts/common/io/emul64.c
569
tgt = kmem_zalloc(sizeof (emul64_tgt_t), KM_SLEEP);
usr/src/uts/common/io/emul64.c
964
KM_SLEEP);
usr/src/uts/common/io/emul64_bsd.c
1273
blk = (blklist_t *)kmem_zalloc(sizeof (blklist_t), KM_SLEEP);
usr/src/uts/common/io/emul64_bsd.c
1274
blk->bl_data = (uchar_t *)kmem_zalloc(DEV_BSIZE, KM_SLEEP);
usr/src/uts/common/io/emul64_bsd.c
205
emul64_zeros = (unsigned char *) kmem_zalloc(DEV_BSIZE, KM_SLEEP);
usr/src/uts/common/io/ena/ena.c
1232
KM_SLEEP);
usr/src/uts/common/io/ena/ena.c
1818
ena->ena_intr_handles = kmem_zalloc(ena->ena_intr_handles_sz, KM_SLEEP);
usr/src/uts/common/io/ena/ena.c
1883
ena->ena_num_rxqs * sizeof (*ena->ena_rxqs), KM_SLEEP);
usr/src/uts/common/io/ena/ena.c
1960
ena->ena_num_txqs * sizeof (*ena->ena_txqs), KM_SLEEP);
usr/src/uts/common/io/ena/ena.c
2295
ena = kmem_zalloc(sizeof (ena_t), KM_SLEEP);
usr/src/uts/common/io/ena/ena_rx.c
118
rxq->er_sq_num_descs, KM_SLEEP);
usr/src/uts/common/io/ena/ena_tx.c
200
KM_SLEEP);
usr/src/uts/common/io/ena/ena_tx.c
77
txq->et_sq_num_descs, KM_SLEEP);
usr/src/uts/common/io/ena/ena_tx.c
79
txq->et_sq_num_descs, KM_SLEEP);
usr/src/uts/common/io/fcoe/fcoe.c
1006
mac = kmem_zalloc(sizeof (fcoe_mac_t), KM_SLEEP);
usr/src/uts/common/io/fcoe/fcoe.c
1096
fcoe_nworkers, KM_SLEEP);
usr/src/uts/common/io/fcoe/fcoe.c
259
KM_SLEEP);
usr/src/uts/common/io/fcoe/fcoe.c
570
*fcoeio = kmem_zalloc(sizeof (fcoeio_t), KM_SLEEP);
usr/src/uts/common/io/fcoe/fcoe.c
584
*ibuf = kmem_zalloc((*fcoeio)->fcoeio_ilen, KM_SLEEP);
usr/src/uts/common/io/fcoe/fcoe.c
593
*abuf = kmem_zalloc((*fcoeio)->fcoeio_alen, KM_SLEEP);
usr/src/uts/common/io/fcoe/fcoe.c
602
*obuf = kmem_zalloc((*fcoeio)->fcoeio_olen, KM_SLEEP);
usr/src/uts/common/io/fcoe/fcoe_fc.c
306
frm = (fcoe_frame_t *)kmem_alloc(alloc_size, KM_SLEEP);
usr/src/uts/common/io/fd.c
1546
label = kmem_zalloc(sizeof (struct dk_label), KM_SLEEP);
usr/src/uts/common/io/fd.c
2072
fdr.fdr_addr = kmem_zalloc(ucount, KM_SLEEP);
usr/src/uts/common/io/fd.c
2099
fdr.fdr_addr = kmem_alloc((size_t)ucount, KM_SLEEP);
usr/src/uts/common/io/fd.c
791
label = kmem_zalloc(sizeof (struct dk_label), KM_SLEEP);
usr/src/uts/common/io/fibre-channel/fca/emlxs/emlxs_dfc.c
10460
fcflist = (DFC_FCoEFCFList_t *)kmem_zalloc(size, KM_SLEEP);
usr/src/uts/common/io/fibre-channel/fca/emlxs/emlxs_dfc.c
10557
mbq = (MAILBOXQ *)kmem_zalloc(sizeof (MAILBOXQ), KM_SLEEP);
usr/src/uts/common/io/fibre-channel/fca/emlxs/emlxs_dfc.c
10909
(MAILBOXQ *)kmem_zalloc(sizeof (MAILBOXQ), KM_SLEEP);
usr/src/uts/common/io/fibre-channel/fca/emlxs/emlxs_dfc.c
10987
mbq = (MAILBOXQ *)kmem_zalloc(sizeof (MAILBOXQ), KM_SLEEP);
usr/src/uts/common/io/fibre-channel/fca/emlxs/emlxs_dfc.c
11042
mbq = (MAILBOXQ *)kmem_zalloc(sizeof (MAILBOXQ), KM_SLEEP);
usr/src/uts/common/io/fibre-channel/fca/emlxs/emlxs_dfc.c
3452
mbq = (MAILBOXQ *)kmem_zalloc(sizeof (MAILBOXQ), KM_SLEEP);
usr/src/uts/common/io/fibre-channel/fca/emlxs/emlxs_dfc.c
4134
(MAILBOXQ *)kmem_zalloc(sizeof (MAILBOXQ), KM_SLEEP);
usr/src/uts/common/io/fibre-channel/fca/emlxs/emlxs_dfc.c
4739
extbuf = (uint8_t *)kmem_zalloc(extsize, KM_SLEEP);
usr/src/uts/common/io/fibre-channel/fca/emlxs/emlxs_dfc.c
4748
mbq = (MAILBOXQ *)kmem_zalloc(sizeof (MAILBOXQ), KM_SLEEP);
usr/src/uts/common/io/fibre-channel/fca/emlxs/emlxs_dfc.c
485
dfc2->buf1 = kmem_zalloc(dfc1->buf1_size, KM_SLEEP);
usr/src/uts/common/io/fibre-channel/fca/emlxs/emlxs_dfc.c
501
dfc2->buf2 = kmem_zalloc(dfc1->buf2_size, KM_SLEEP);
usr/src/uts/common/io/fibre-channel/fca/emlxs/emlxs_dfc.c
517
dfc2->buf3 = kmem_zalloc(dfc1->buf3_size, KM_SLEEP);
usr/src/uts/common/io/fibre-channel/fca/emlxs/emlxs_dfc.c
533
dfc2->buf4 = kmem_zalloc(dfc1->buf4_size, KM_SLEEP);
usr/src/uts/common/io/fibre-channel/fca/emlxs/emlxs_dfc.c
6130
KM_SLEEP);
usr/src/uts/common/io/fibre-channel/fca/emlxs/emlxs_dfc.c
7736
event_buffer = (HBA_EVENTINFO *)kmem_zalloc(size, KM_SLEEP);
usr/src/uts/common/io/fibre-channel/fca/emlxs/emlxs_dfc.c
8241
KM_SLEEP);
usr/src/uts/common/io/fibre-channel/fca/emlxs/emlxs_dfc.c
8513
KM_SLEEP);
usr/src/uts/common/io/fibre-channel/fca/emlxs/emlxs_dfc.c
8662
KM_SLEEP);
usr/src/uts/common/io/fibre-channel/fca/emlxs/emlxs_dfc.c
8974
dfc->buf2_size + 16, 0, KM_SLEEP);
usr/src/uts/common/io/fibre-channel/fca/emlxs/emlxs_download.c
1654
KM_SLEEP)) == NULL) {
usr/src/uts/common/io/fibre-channel/fca/emlxs/emlxs_download.c
197
local_buffer = (caddr_t)kmem_zalloc(len, KM_SLEEP);
usr/src/uts/common/io/fibre-channel/fca/emlxs/emlxs_download.c
2051
KM_SLEEP)) == NULL) {
usr/src/uts/common/io/fibre-channel/fca/emlxs/emlxs_download.c
2155
local_buffer = (caddr_t)kmem_zalloc(len, KM_SLEEP);
usr/src/uts/common/io/fibre-channel/fca/emlxs/emlxs_download.c
685
KM_SLEEP)) == NULL) {
usr/src/uts/common/io/fibre-channel/fca/emlxs/emlxs_dump.c
120
cmd_buf = (menlo_cmd_t *)kmem_zalloc(cmd_size, KM_SLEEP);
usr/src/uts/common/io/fibre-channel/fca/emlxs/emlxs_dump.c
123
rsp_buf = (menlo_rsp_t *)kmem_zalloc(rsp_size, KM_SLEEP);
usr/src/uts/common/io/fibre-channel/fca/emlxs/emlxs_dump.c
1387
buf1 = (char *)kmem_zalloc(8192, KM_SLEEP);
usr/src/uts/common/io/fibre-channel/fca/emlxs/emlxs_dump.c
1388
buf2 = (char *)kmem_zalloc(8192, KM_SLEEP);
usr/src/uts/common/io/fibre-channel/fca/emlxs/emlxs_dump.c
1554
buf1 = (char *)kmem_zalloc(buf1_size, KM_SLEEP);
usr/src/uts/common/io/fibre-channel/fca/emlxs/emlxs_dump.c
1555
buf2 = (char *)kmem_zalloc(buf2_size, KM_SLEEP);
usr/src/uts/common/io/fibre-channel/fca/emlxs/emlxs_dump.c
1632
buf1 = (char *)kmem_zalloc(buf1_size, KM_SLEEP);
usr/src/uts/common/io/fibre-channel/fca/emlxs/emlxs_dump.c
1633
buf2 = (char *)kmem_zalloc(buf2_size, KM_SLEEP);
usr/src/uts/common/io/fibre-channel/fca/emlxs/emlxs_dump.c
1703
buf1 = (char *)kmem_zalloc(buf1_size, KM_SLEEP);
usr/src/uts/common/io/fibre-channel/fca/emlxs/emlxs_dump.c
1704
buf2 = (char *)kmem_zalloc(buf2_size, KM_SLEEP);
usr/src/uts/common/io/fibre-channel/fca/emlxs/emlxs_dump.c
1794
buf1 = (char *)kmem_zalloc(buf1_size, KM_SLEEP);
usr/src/uts/common/io/fibre-channel/fca/emlxs/emlxs_dump.c
1795
buf2 = (char *)kmem_zalloc(buf2_size, KM_SLEEP);
usr/src/uts/common/io/fibre-channel/fca/emlxs/emlxs_dump.c
182
cmd_buf = (menlo_cmd_t *)kmem_zalloc(cmd_size, KM_SLEEP);
usr/src/uts/common/io/fibre-channel/fca/emlxs/emlxs_dump.c
1921
buf1 = (char *)kmem_zalloc(buf1_size, KM_SLEEP);
usr/src/uts/common/io/fibre-channel/fca/emlxs/emlxs_dump.c
1922
buf2 = (char *)kmem_zalloc(buf2_size, KM_SLEEP);
usr/src/uts/common/io/fibre-channel/fca/emlxs/emlxs_dump.c
1925
(uint32_t *)kmem_zalloc(DUMP_MAX_CONFIG_REGION_LENGTH, KM_SLEEP);
usr/src/uts/common/io/fibre-channel/fca/emlxs/emlxs_dump.c
2139
buf1 = (char *)kmem_zalloc(buf1_size, KM_SLEEP);
usr/src/uts/common/io/fibre-channel/fca/emlxs/emlxs_dump.c
2140
buf2 = (char *)kmem_zalloc(buf2_size, KM_SLEEP);
usr/src/uts/common/io/fibre-channel/fca/emlxs/emlxs_dump.c
2181
buf1 = (char *)kmem_zalloc(buf1_size, KM_SLEEP);
usr/src/uts/common/io/fibre-channel/fca/emlxs/emlxs_dump.c
2182
buf2 = (char *)kmem_zalloc(buf2_size, KM_SLEEP);
usr/src/uts/common/io/fibre-channel/fca/emlxs/emlxs_dump.c
2397
(MAILBOXQ *)kmem_zalloc(sizeof (MAILBOXQ), KM_SLEEP);
usr/src/uts/common/io/fibre-channel/fca/emlxs/emlxs_dump.c
241
cmd_buf = (menlo_cmd_t *)kmem_zalloc(cmd_size, KM_SLEEP);
usr/src/uts/common/io/fibre-channel/fca/emlxs/emlxs_dump.c
2514
buf1 = (char *)kmem_zalloc(size, KM_SLEEP);
usr/src/uts/common/io/fibre-channel/fca/emlxs/emlxs_dump.c
2517
*ppDumpTable = (uint32_t *)kmem_zalloc(*pDumpTableSize, KM_SLEEP);
usr/src/uts/common/io/fibre-channel/fca/emlxs/emlxs_dump.c
2524
(MAILBOXQ *)kmem_zalloc(sizeof (MAILBOXQ), KM_SLEEP);
usr/src/uts/common/io/fibre-channel/fca/emlxs/emlxs_dump.c
2697
(MAILBOXQ *)kmem_zalloc(sizeof (MAILBOXQ), KM_SLEEP);
usr/src/uts/common/io/fibre-channel/fca/emlxs/emlxs_dump.c
2785
pBuf = (uint8_t *)kmem_zalloc(byteCount, KM_SLEEP);
usr/src/uts/common/io/fibre-channel/fca/emlxs/emlxs_dump.c
2913
*pBuf = (uint8_t *)kmem_zalloc(size, KM_SLEEP);
usr/src/uts/common/io/fibre-channel/fca/emlxs/emlxs_dump.c
298
cmd_buf = (menlo_cmd_t *)kmem_zalloc(cmd_size, KM_SLEEP);
usr/src/uts/common/io/fibre-channel/fca/emlxs/emlxs_dump.c
3291
pLcBuf = (menlo_rsp_t *)kmem_zalloc(LcBufSize, KM_SLEEP);
usr/src/uts/common/io/fibre-channel/fca/emlxs/emlxs_dump.c
3334
pLdBuf = (menlo_rsp_t *)kmem_zalloc(LdBufSize, KM_SLEEP);
usr/src/uts/common/io/fibre-channel/fca/emlxs/emlxs_dump.c
3413
pPlBuf = (menlo_rsp_t *)kmem_zalloc(PlBufSize, KM_SLEEP);
usr/src/uts/common/io/fibre-channel/fca/emlxs/emlxs_dump.c
354
cmd_buf = (menlo_cmd_t *)kmem_zalloc(cmd_size, KM_SLEEP);
usr/src/uts/common/io/fibre-channel/fca/emlxs/emlxs_dump.c
3562
(MAILBOXQ *)kmem_zalloc(sizeof (MAILBOXQ), KM_SLEEP);
usr/src/uts/common/io/fibre-channel/fca/emlxs/emlxs_dump.c
3725
KM_SLEEP);
usr/src/uts/common/io/fibre-channel/fca/emlxs/emlxs_dump.c
526
(uint8_t *)kmem_zalloc(fp->size, KM_SLEEP);
usr/src/uts/common/io/fibre-channel/fca/emlxs/emlxs_dump.c
56
cmd_buf = (menlo_cmd_t *)kmem_zalloc(cmd_size, KM_SLEEP);
usr/src/uts/common/io/fibre-channel/fca/emlxs/emlxs_dump.c
59
rsp_buf = (menlo_rsp_t *)kmem_zalloc(rsp_size, KM_SLEEP);
usr/src/uts/common/io/fibre-channel/fca/emlxs/emlxs_dump.c
740
(MAILBOXQ *)kmem_zalloc(sizeof (MAILBOXQ), KM_SLEEP);
usr/src/uts/common/io/fibre-channel/fca/emlxs/emlxs_fcf.c
12795
sizeof (emlxs_deferred_cmpl_t), KM_SLEEP);
usr/src/uts/common/io/fibre-channel/fca/emlxs/emlxs_fcf.c
14432
sizeof (emlxs_deferred_cmpl_t), KM_SLEEP);
usr/src/uts/common/io/fibre-channel/fca/emlxs/emlxs_fcf.c
14519
sizeof (emlxs_deferred_cmpl_t), KM_SLEEP);
usr/src/uts/common/io/fibre-channel/fca/emlxs/emlxs_fcf.c
14586
sizeof (emlxs_deferred_cmpl_t), KM_SLEEP);
usr/src/uts/common/io/fibre-channel/fca/emlxs/emlxs_fcf.c
2026
(sizeof (FCFIobj_t) * fcftab->table_count), KM_SLEEP);
usr/src/uts/common/io/fibre-channel/fca/emlxs/emlxs_fcf.c
2038
(sizeof (VFIobj_t) * hba->sli.sli4.VFICount), KM_SLEEP);
usr/src/uts/common/io/fibre-channel/fca/emlxs/emlxs_fcf.c
2073
(sizeof (RPIobj_t) * hba->sli.sli4.RPICount), KM_SLEEP);
usr/src/uts/common/io/fibre-channel/fca/emlxs/emlxs_fcf.c
6170
(sizeof (uintptr_t) * fcf_table_count), KM_SLEEP);
usr/src/uts/common/io/fibre-channel/fca/emlxs/emlxs_fct.c
5024
fct_memseg = kmem_zalloc(fct_memseg_size, KM_SLEEP);
usr/src/uts/common/io/fibre-channel/fca/emlxs/emlxs_fct.c
5086
fct_memseg = kmem_zalloc(fct_memseg_size, KM_SLEEP);
usr/src/uts/common/io/fibre-channel/fca/emlxs/emlxs_fct.c
5141
sizeof (emlxs_memseg_t)), KM_SLEEP);
usr/src/uts/common/io/fibre-channel/fca/emlxs/emlxs_hba.c
2824
KM_SLEEP)) == 0) {
usr/src/uts/common/io/fibre-channel/fca/emlxs/emlxs_hba.c
284
KM_SLEEP);
usr/src/uts/common/io/fibre-channel/fca/emlxs/emlxs_hba.c
326
KM_SLEEP);
usr/src/uts/common/io/fibre-channel/fca/emlxs/emlxs_hba.c
342
KM_SLEEP);
usr/src/uts/common/io/fibre-channel/fca/emlxs/emlxs_hba.c
345
intr_cap = kmem_alloc((size_t)(count * sizeof (uint32_t)), KM_SLEEP);
usr/src/uts/common/io/fibre-channel/fca/emlxs/emlxs_msg.c
59
log->entry = (emlxs_msg_entry_t *)kmem_zalloc(size, KM_SLEEP);
usr/src/uts/common/io/fibre-channel/fca/emlxs/emlxs_pkt.c
178
cb = (sleep == KM_SLEEP) ? DDI_DMA_SLEEP : DDI_DMA_DONTWAIT;
usr/src/uts/common/io/fibre-channel/fca/emlxs/emlxs_sli3.c
246
mbq = (MAILBOXQ *) kmem_zalloc((sizeof (MAILBOXQ)), KM_SLEEP);
usr/src/uts/common/io/fibre-channel/fca/emlxs/emlxs_sli4.c
400
mbq = (MAILBOXQ *) kmem_zalloc((sizeof (MAILBOXQ)), KM_SLEEP);
usr/src/uts/common/io/fibre-channel/fca/emlxs/emlxs_sli4.c
8004
(sizeof (XRIobj_t) * hba->sli.sli4.XRICount), KM_SLEEP);
usr/src/uts/common/io/fibre-channel/fca/emlxs/emlxs_solaris.c
2945
KM_SLEEP);
usr/src/uts/common/io/fibre-channel/fca/emlxs/emlxs_solaris.c
2955
kmem_zalloc((sizeof (fc_unsol_buf_t) * (*count)), KM_SLEEP);
usr/src/uts/common/io/fibre-channel/fca/emlxs/emlxs_solaris.c
2969
KM_SLEEP);
usr/src/uts/common/io/fibre-channel/fca/emlxs/emlxs_solaris.c
2986
ubp->ub_buffer = (caddr_t)kmem_zalloc(size, KM_SLEEP);
usr/src/uts/common/io/fibre-channel/fca/fcoei/fcoei_eth.c
1348
ae = (fcoei_event_t *)kmem_zalloc(sizeof (fcoei_event_t), KM_SLEEP);
usr/src/uts/common/io/fibre-channel/fca/fcoei/fcoei_eth.c
367
ub = (fc_unsol_buf_t *)kmem_zalloc(sizeof (fc_unsol_buf_t), KM_SLEEP);
usr/src/uts/common/io/fibre-channel/fca/fcoei/fcoei_eth.c
370
ub->ub_buffer = kmem_alloc(frm->frm_payload_size, KM_SLEEP);
usr/src/uts/common/io/fibre-channel/fca/fcoei/fcoei_lv.c
1826
xch = kmem_zalloc(sizeof (*xch), KM_SLEEP);
usr/src/uts/common/io/fibre-channel/fca/fcoei/fcoei_lv.c
1831
fpkt = kmem_zalloc(sizeof (fc_packet_t), KM_SLEEP);
usr/src/uts/common/io/fibre-channel/fca/fcoei/fcoei_lv.c
1833
fpkt->pkt_cmd = kmem_zalloc(fpkt->pkt_cmdlen, KM_SLEEP);
usr/src/uts/common/io/fibre-channel/fca/fcoei/fcoei_lv.c
1835
fpkt->pkt_resp = kmem_zalloc(fpkt->pkt_rsplen, KM_SLEEP);
usr/src/uts/common/io/fibre-channel/fca/fcoei/fcoei_lv.c
522
ae = kmem_zalloc(sizeof (*ae), KM_SLEEP);
usr/src/uts/common/io/fibre-channel/fca/oce/oce_main.c
208
dev = kmem_zalloc(sizeof (struct oce_dev), KM_SLEEP);
usr/src/uts/common/io/fibre-channel/fca/qlc/ql_api.c
11299
bfp = (uint8_t *)kmem_zalloc(ssize, KM_SLEEP);
usr/src/uts/common/io/fibre-channel/fca/qlc/ql_api.c
1394
KM_SLEEP);
usr/src/uts/common/io/fibre-channel/fca/qlc/ql_api.c
1438
kmem_zalloc(sizeof (ql_n_port_info_t), KM_SLEEP);
usr/src/uts/common/io/fibre-channel/fca/qlc/ql_api.c
1579
tran = kmem_zalloc(sizeof (fc_fca_tran_t), KM_SLEEP);
usr/src/uts/common/io/fibre-channel/fca/qlc/ql_api.c
16645
if ((rval = ql_alloc_phys(ha, mem, KM_SLEEP)) != QL_SUCCESS) {
usr/src/uts/common/io/fibre-channel/fca/qlc/ql_api.c
16723
if (ddi_dma_alloc_handle(ha->dip, &dma_attr, (sleep == KM_SLEEP) ?
usr/src/uts/common/io/fibre-channel/fca/qlc/ql_api.c
16745
mem->flags, (sleep == KM_SLEEP) ? DDI_DMA_SLEEP :
usr/src/uts/common/io/fibre-channel/fca/qlc/ql_api.c
16882
mem->bp, mem->size, mem->flags, (kmflags == KM_SLEEP) ?
usr/src/uts/common/io/fibre-channel/fca/qlc/ql_api.c
17485
ha->htable = kmem_zalloc(ha->hsize, KM_SLEEP);
usr/src/uts/common/io/fibre-channel/fca/qlc/ql_api.c
17618
ha->htable = kmem_zalloc(ha->hsize, KM_SLEEP);
usr/src/uts/common/io/fibre-channel/fca/qlc/ql_api.c
17742
ha->htable = kmem_zalloc(ha->hsize, KM_SLEEP);
usr/src/uts/common/io/fibre-channel/fca/qlc/ql_api.c
18256
sizeof (ql_trace_desc_t), KM_SLEEP);
usr/src/uts/common/io/fibre-channel/fca/qlc/ql_api.c
18260
entry = kmem_zalloc(maxsize, KM_SLEEP);
usr/src/uts/common/io/fibre-channel/fca/qlc/ql_api.c
18714
KM_SLEEP);
usr/src/uts/common/io/fibre-channel/fca/qlc/ql_api.c
18727
(void *)kmem_zalloc(ha->nvram_cache->size, KM_SLEEP);
usr/src/uts/common/io/fibre-channel/fca/qlc/ql_api.c
18792
KM_SLEEP);
usr/src/uts/common/io/fibre-channel/fca/qlc/ql_api.c
18898
ha->req_q[0] = kmem_zalloc(sizeof (ql_request_q_t), KM_SLEEP);
usr/src/uts/common/io/fibre-channel/fca/qlc/ql_api.c
18910
if ((rval = ql_alloc_phys(ha, &ha->req_q[0]->req_ring, KM_SLEEP)) !=
usr/src/uts/common/io/fibre-channel/fca/qlc/ql_api.c
18946
KM_SLEEP);
usr/src/uts/common/io/fibre-channel/fca/qlc/ql_api.c
18960
KM_SLEEP)) != QL_SUCCESS) {
usr/src/uts/common/io/fibre-channel/fca/qlc/ql_api.c
18992
ha->rsp_queues = kmem_zalloc(ha->rsp_queues_size, KM_SLEEP);
usr/src/uts/common/io/fibre-channel/fca/qlc/ql_api.c
19010
if ((rval = ql_alloc_phys(ha, &ha->rcv_ring, KM_SLEEP)) !=
usr/src/uts/common/io/fibre-channel/fca/qlc/ql_api.c
19045
kmem_zalloc(sizeof (ql_response_q_t), KM_SLEEP);
usr/src/uts/common/io/fibre-channel/fca/qlc/ql_api.c
19070
rval = ql_alloc_phys(ha, &rsp_q->rsp_ring, KM_SLEEP);
usr/src/uts/common/io/fibre-channel/fca/qlc/ql_api.c
19277
nreg = kmem_zalloc(nreg_size, KM_SLEEP);
usr/src/uts/common/io/fibre-channel/fca/qlc/ql_api.c
2020
buf = (char *)(kmem_zalloc(MAXPATHLEN, KM_SLEEP));
usr/src/uts/common/io/fibre-channel/fca/qlc/ql_api.c
21748
rval = ql_alloc_phys(ha, &ha->dmp_template, KM_SLEEP);
usr/src/uts/common/io/fibre-channel/fca/qlc/ql_api.c
21850
rval = ql_alloc_phys(ha, &ha->dmp_template, KM_SLEEP);
usr/src/uts/common/io/fibre-channel/fca/qlc/ql_api.c
22937
if ((rval = ql_alloc_phys(ha, &mem, KM_SLEEP)) != QL_SUCCESS) {
usr/src/uts/common/io/fibre-channel/fca/qlc/ql_api.c
2334
buf = (char *)(kmem_zalloc(MAXPATHLEN, KM_SLEEP));
usr/src/uts/common/io/fibre-channel/fca/qlc/ql_api.c
2335
path = (char *)(kmem_zalloc(MAXPATHLEN, KM_SLEEP));
usr/src/uts/common/io/fibre-channel/fca/qlc/ql_api.c
2757
KM_SLEEP);
usr/src/uts/common/io/fibre-channel/fca/qlc/ql_api.c
2896
if (ql_alloc_phys(ha, &sp->sg_dma, KM_SLEEP) != QL_SUCCESS) {
usr/src/uts/common/io/fibre-channel/fca/qlc/ql_api.c
3563
KM_SLEEP);
usr/src/uts/common/io/fibre-channel/fca/qlc/ql_api.c
3568
sp = kmem_zalloc(sizeof (ql_srb_t), KM_SLEEP);
usr/src/uts/common/io/fibre-channel/fca/qlc/ql_api.c
3604
bufp = kmem_zalloc(size, KM_SLEEP);
usr/src/uts/common/io/fibre-channel/fca/qlc/ql_api.c
4372
fcode_ver_buf = kmem_alloc(length, KM_SLEEP);
usr/src/uts/common/io/fibre-channel/fca/qlc/ql_api.c
5983
list = (ql_dev_id_list_t *)kmem_zalloc(list_size, KM_SLEEP);
usr/src/uts/common/io/fibre-channel/fca/qlc/ql_api.c
6542
rnid_acc = kmem_zalloc(req_len, KM_SLEEP);
usr/src/uts/common/io/fibre-channel/fca/qlc/ql_api.c
6603
rls_acc = kmem_zalloc(sizeof (*rls_acc), KM_SLEEP);
usr/src/uts/common/io/fibre-channel/fca/qlc/ql_api.c
7196
tq = (ql_tgt_t *)kmem_zalloc(sizeof (ql_tgt_t), KM_SLEEP);
usr/src/uts/common/io/fibre-channel/fca/qlc/ql_api.c
7346
lq = (ql_lun_t *)kmem_zalloc(sizeof (ql_lun_t), KM_SLEEP);
usr/src/uts/common/io/fibre-channel/fca/qlc/ql_api.c
889
buf = (char *)(kmem_zalloc(MAXPATHLEN, KM_SLEEP));
usr/src/uts/common/io/fibre-channel/fca/qlc/ql_api.c
951
DEVICE_HEAD_LIST_SIZE, KM_SLEEP);
usr/src/uts/common/io/fibre-channel/fca/qlc/ql_api.c
954
QL_UB_LIMIT, KM_SLEEP);
usr/src/uts/common/io/fibre-channel/fca/qlc/ql_api.c
957
KM_SLEEP);
usr/src/uts/common/io/fibre-channel/fca/qlc/ql_api.c
960
ha->devpath = kmem_zalloc(strlen(buf) + 1, KM_SLEEP);
usr/src/uts/common/io/fibre-channel/fca/qlc/ql_api.c
9707
list = kmem_zalloc(list_size, KM_SLEEP);
usr/src/uts/common/io/fibre-channel/fca/qlc/ql_init.c
2215
if ((bufp = kmem_alloc(fw_size, KM_SLEEP)) != NULL) {
usr/src/uts/common/io/fibre-channel/fca/qlc/ql_init.c
2841
pkt = kmem_zalloc(sizeof (ql_mbx_iocb_t), KM_SLEEP);
usr/src/uts/common/io/fibre-channel/fca/qlc/ql_init.c
3207
list = (ql_dev_id_list_t *)kmem_zalloc(list_size, KM_SLEEP);
usr/src/uts/common/io/fibre-channel/fca/qlc/ql_init.c
3468
list = kmem_zalloc(list_size, KM_SLEEP);
usr/src/uts/common/io/fibre-channel/fca/qlc/ql_init.c
4364
pkt = kmem_zalloc(pkt_size, KM_SLEEP);
usr/src/uts/common/io/fibre-channel/fca/qlc/ql_init.c
4425
pkt = kmem_zalloc(pkt_size, KM_SLEEP);
usr/src/uts/common/io/fibre-channel/fca/qlc/ql_init.c
4531
vha = kmem_alloc(sizeof (ql_adapter_state_t), KM_SLEEP);
usr/src/uts/common/io/fibre-channel/fca/qlc/ql_init.c
4550
KM_SLEEP);
usr/src/uts/common/io/fibre-channel/fca/qlc/ql_init.c
4552
KM_SLEEP);
usr/src/uts/common/io/fibre-channel/fca/qlc/ql_ioctl.c
1163
if ((vpd = kmem_zalloc(vpd_size, KM_SLEEP)) == NULL) {
usr/src/uts/common/io/fibre-channel/fca/qlc/ql_ioctl.c
1239
kmem_zalloc(vpd_size, KM_SLEEP)) == NULL)) {
usr/src/uts/common/io/fibre-channel/fca/qlc/ql_ioctl.c
1298
if ((vpd = kmem_zalloc(vpd_size, KM_SLEEP)) == NULL) {
usr/src/uts/common/io/fibre-channel/fca/qlc/ql_ioctl.c
1463
KM_SLEEP)) == NULL) {
usr/src/uts/common/io/fibre-channel/fca/qlc/ql_ioctl.c
1564
if ((bp = kmem_zalloc(bsize, KM_SLEEP)) == NULL) {
usr/src/uts/common/io/fibre-channel/fca/qlc/ql_ioctl.c
2038
prop_name = kmem_zalloc(dop->length, KM_SLEEP);
usr/src/uts/common/io/fibre-channel/fca/qlc/ql_ioctl.c
2095
dmp = kmem_zalloc(ha->risc_dump_size, KM_SLEEP);
usr/src/uts/common/io/fibre-channel/fca/qlc/ql_ioctl.c
2291
if ((dp = kmem_zalloc(dop->length, KM_SLEEP)) == NULL) {
usr/src/uts/common/io/fibre-channel/fca/qlc/ql_ioctl.c
2440
if ((lbuf = (uint8_t *)kmem_zalloc(dop->length, KM_SLEEP)) == NULL) {
usr/src/uts/common/io/fibre-channel/fca/qlc/ql_ioctl.c
511
nv = kmem_zalloc(sizeof (*nv), KM_SLEEP);
usr/src/uts/common/io/fibre-channel/fca/qlc/ql_ioctl.c
618
nv = kmem_zalloc(sizeof (*nv), KM_SLEEP);
usr/src/uts/common/io/fibre-channel/fca/qlc/ql_ioctl.c
696
nv = kmem_zalloc(sizeof (*nv), KM_SLEEP);
usr/src/uts/common/io/fibre-channel/fca/qlc/ql_ioctl.c
949
if ((nv = kmem_zalloc(ha->nvram_cache->size, KM_SLEEP)) == NULL) {
usr/src/uts/common/io/fibre-channel/fca/qlc/ql_mbx.c
1350
pkt = kmem_zalloc(pkt_size, KM_SLEEP);
usr/src/uts/common/io/fibre-channel/fca/qlc/ql_mbx.c
1747
pkt = kmem_zalloc(pkt_size, KM_SLEEP);
usr/src/uts/common/io/fibre-channel/fca/qlc/ql_mbx.c
1924
pd23 = (port_database_23_t *)kmem_zalloc(PORT_DATABASE_SIZE, KM_SLEEP);
usr/src/uts/common/io/fibre-channel/fca/qlc/ql_mbx.c
2812
if ((pkt = kmem_zalloc(pkt_size, KM_SLEEP)) == NULL) {
usr/src/uts/common/io/fibre-channel/fca/qlc/ql_nx.c
1399
buf = kmem_zalloc(n * sizeof (struct crb_addr_pair), KM_SLEEP);
usr/src/uts/common/io/fibre-channel/fca/qlc/ql_xioctl.c
10217
bp = kmem_zalloc(cmd->RequestLen, KM_SLEEP);
usr/src/uts/common/io/fibre-channel/fca/qlc/ql_xioctl.c
10283
dma_mem = (dma_mem_t *)kmem_zalloc(sizeof (dma_mem_t), KM_SLEEP);
usr/src/uts/common/io/fibre-channel/fca/qlc/ql_xioctl.c
10299
pkt = kmem_zalloc(pkt_size, KM_SLEEP);
usr/src/uts/common/io/fibre-channel/fca/qlc/ql_xioctl.c
10693
ls = kmem_zalloc(cmd->ResponseLen, KM_SLEEP);
usr/src/uts/common/io/fibre-channel/fca/qlc/ql_xioctl.c
1601
dma_mem = (dma_mem_t *)kmem_zalloc(sizeof (dma_mem_t), KM_SLEEP);
usr/src/uts/common/io/fibre-channel/fca/qlc/ql_xioctl.c
1617
pkt = kmem_zalloc(pkt_size, KM_SLEEP);
usr/src/uts/common/io/fibre-channel/fca/qlc/ql_xioctl.c
193
xp = kmem_zalloc(sizeof (ql_xioctl_t), KM_SLEEP);
usr/src/uts/common/io/fibre-channel/fca/qlc/ql_xioctl.c
202
sizeof (EXT_ASYNC_EVENT), KM_SLEEP);
usr/src/uts/common/io/fibre-channel/fca/qlc/ql_xioctl.c
2115
dma_mem = (dma_mem_t *)kmem_zalloc(sizeof (dma_mem_t), KM_SLEEP);
usr/src/uts/common/io/fibre-channel/fca/qlc/ql_xioctl.c
2227
pkt = kmem_zalloc(pkt_size, KM_SLEEP);
usr/src/uts/common/io/fibre-channel/fca/qlc/ql_xioctl.c
2285
pkt = kmem_zalloc(pkt_size, KM_SLEEP);
usr/src/uts/common/io/fibre-channel/fca/qlc/ql_xioctl.c
3456
bp = kmem_zalloc(bpsize, KM_SLEEP);
usr/src/uts/common/io/fibre-channel/fca/qlc/ql_xioctl.c
3783
tmp_buf = kmem_zalloc(SEND_RNID_RSP_SIZE, KM_SLEEP);
usr/src/uts/common/io/fibre-channel/fca/qlc/ql_xioctl.c
4150
pkt = kmem_zalloc(pkt_size, KM_SLEEP);
usr/src/uts/common/io/fibre-channel/fca/qlc/ql_xioctl.c
4394
pkt = kmem_zalloc(pkt_size, KM_SLEEP);
usr/src/uts/common/io/fibre-channel/fca/qlc/ql_xioctl.c
4836
if ((fdesc = kmem_zalloc(sizeof (flash_desc_t), KM_SLEEP)) == NULL) {
usr/src/uts/common/io/fibre-channel/fca/qlc/ql_xioctl.c
5227
if ((bfp = (uint8_t *)kmem_zalloc(bsize, KM_SLEEP)) == NULL) {
usr/src/uts/common/io/fibre-channel/fca/qlc/ql_xioctl.c
5356
if ((bfp = (uint8_t *)kmem_zalloc(bsize, KM_SLEEP)) == NULL) {
usr/src/uts/common/io/fibre-channel/fca/qlc/ql_xioctl.c
5611
tmp_buf = kmem_zalloc(sizeof (EXT_RNID_DATA), KM_SLEEP);
usr/src/uts/common/io/fibre-channel/fca/qlc/ql_xioctl.c
5674
tmp_buf = kmem_zalloc(sizeof (EXT_RNID_DATA), KM_SLEEP);
usr/src/uts/common/io/fibre-channel/fca/qlc/ql_xioctl.c
5811
ls = kmem_zalloc(sizeof (ql_link_stats_t), KM_SLEEP);
usr/src/uts/common/io/fibre-channel/fca/qlc/ql_xioctl.c
5933
ls = kmem_zalloc(sizeof (ql_link_stats_t), KM_SLEEP);
usr/src/uts/common/io/fibre-channel/fca/qlc/ql_xioctl.c
616
cmd = (EXT_IOCTL *)kmem_zalloc(sizeof (EXT_IOCTL), KM_SLEEP);
usr/src/uts/common/io/fibre-channel/fca/qlc/ql_xioctl.c
6977
KM_SLEEP))) == NULL) {
usr/src/uts/common/io/fibre-channel/fca/qlc/ql_xioctl.c
6981
KM_SLEEP))) == NULL) {
usr/src/uts/common/io/fibre-channel/fca/qlc/ql_xioctl.c
7180
if ((buf = (uint8_t *)(kmem_zalloc(FBUFSIZE, KM_SLEEP))) ==
usr/src/uts/common/io/fibre-channel/fca/qlc/ql_xioctl.c
7310
if ((bp = kmem_zalloc(len, KM_SLEEP)) == NULL) {
usr/src/uts/common/io/fibre-channel/fca/qlc/ql_xioctl.c
7371
if ((bp = kmem_zalloc(FLASH_LAYOUT_TABLE_SIZE, KM_SLEEP)) == NULL) {
usr/src/uts/common/io/fibre-channel/fca/qlc/ql_xioctl.c
8154
payload = kmem_zalloc(FWEXTSIZE, KM_SLEEP);
usr/src/uts/common/io/fibre-channel/fca/qlc/ql_xioctl.c
8247
fce_trace = kmem_zalloc(FWFCESIZE, KM_SLEEP);
usr/src/uts/common/io/fibre-channel/fca/qlc/ql_xioctl.c
8407
ptr32 = kmem_zalloc(pci_size, KM_SLEEP);
usr/src/uts/common/io/fibre-channel/fca/qlc/ql_xioctl.c
8558
pkt = kmem_zalloc(sizeof (ql_mbx_iocb_t), KM_SLEEP);
usr/src/uts/common/io/fibre-channel/fca/qlc/ql_xioctl.c
8666
dma_mem = (dma_mem_t *)kmem_zalloc(sizeof (dma_mem_t), KM_SLEEP);
usr/src/uts/common/io/fibre-channel/fca/qlc/ql_xioctl.c
8673
pkt = kmem_zalloc(sizeof (ql_mbx_iocb_t), KM_SLEEP);
usr/src/uts/common/io/fibre-channel/fca/qlc/ql_xioctl.c
8811
pkt = kmem_zalloc(sizeof (ql_mbx_iocb_t), KM_SLEEP);
usr/src/uts/common/io/fibre-channel/fca/qlc/ql_xioctl.c
8831
KM_SLEEP);
usr/src/uts/common/io/fibre-channel/fca/qlc/ql_xioctl.c
9027
kmem_zalloc(sizeof (EXT_VPORT_ID_CNT), KM_SLEEP);
usr/src/uts/common/io/fibre-channel/fca/qlc/ql_xioctl.c
9344
tmp_buf = kmem_zalloc(EXT_DEF_DCBX_PARAM_BUF_SIZE, KM_SLEEP);
usr/src/uts/common/io/fibre-channel/fca/qlc/ql_xioctl.c
9473
KM_SLEEP);
usr/src/uts/common/io/fibre-channel/fca/qlc/ql_xioctl.c
9592
tmp_buf = kmem_zalloc(size, KM_SLEEP);
usr/src/uts/common/io/fibre-channel/fca/qlc/ql_xioctl.c
9675
tmp_buf = kmem_zalloc(fcf_list.BufSize, KM_SLEEP);
usr/src/uts/common/io/fibre-channel/fca/qlc/ql_xioctl.c
9915
dump = kmem_zalloc(ha->risc_dump_size, KM_SLEEP);
usr/src/uts/common/io/fibre-channel/fca/qlge/qlge.c
4276
qlge->htable = kmem_alloc(qlge->intr_size, KM_SLEEP);
usr/src/uts/common/io/fibre-channel/fca/qlge/qlge.c
7408
qlge = (qlge_t *)kmem_zalloc(sizeof (*qlge), KM_SLEEP);
usr/src/uts/common/io/fibre-channel/fca/qlge/qlge_dbg.c
1202
KM_SLEEP);
usr/src/uts/common/io/fibre-channel/fca/qlge/qlge_dbg.c
1251
KM_SLEEP);
usr/src/uts/common/io/fibre-channel/fca/qlge/qlge_dbg.c
1277
KM_SLEEP);
usr/src/uts/common/io/fibre-channel/fca/qlge/qlge_dbg.c
1305
KM_SLEEP);
usr/src/uts/common/io/fibre-channel/fca/qlge/qlge_dbg.c
1342
KM_SLEEP);
usr/src/uts/common/io/fibre-channel/fca/qlge/qlge_dbg.c
1363
KM_SLEEP);
usr/src/uts/common/io/fibre-channel/fca/qlge/qlge_dbg.c
1678
kmem_zalloc(qlge->ioctl_buf_lenth, KM_SLEEP);
usr/src/uts/common/io/fibre-channel/fca/qlge/qlge_flash.c
243
temp = kmem_zalloc(sector_size, KM_SLEEP);
usr/src/uts/common/io/fibre-channel/fca/qlge/qlge_flash.c
558
(kmem_zalloc(qlge->flt.header.length, KM_SLEEP))) == NULL) {
usr/src/uts/common/io/fibre-channel/impl/fctl.c
1082
tmp_array = kmem_zalloc(sizeof (*tmp_array) * listlen, KM_SLEEP);
usr/src/uts/common/io/fibre-channel/impl/fctl.c
1107
job = fctl_alloc_job(JOB_PLOGI_GROUP, job_flags, NULL, NULL, KM_SLEEP);
usr/src/uts/common/io/fibre-channel/impl/fctl.c
1184
job = fctl_alloc_job(JOB_NS_CMD, 0, NULL, NULL, KM_SLEEP);
usr/src/uts/common/io/fibre-channel/impl/fctl.c
1193
0, KM_SLEEP);
usr/src/uts/common/io/fibre-channel/impl/fctl.c
1220
KM_SLEEP);
usr/src/uts/common/io/fibre-channel/impl/fctl.c
1330
job = fctl_alloc_job(JOB_NS_CMD, 0, NULL, NULL, KM_SLEEP);
usr/src/uts/common/io/fibre-channel/impl/fctl.c
1334
ns_req->ns_resp_len, ns_req->ns_resp_len, 0, KM_SLEEP);
usr/src/uts/common/io/fibre-channel/impl/fctl.c
1633
if (sleep == KM_SLEEP) {
usr/src/uts/common/io/fibre-channel/impl/fctl.c
2333
devname = kmem_zalloc(MAXNAMELEN, KM_SLEEP);
usr/src/uts/common/io/fibre-channel/impl/fctl.c
2336
devstr = i_ddi_strdup(devname, KM_SLEEP);
usr/src/uts/common/io/fibre-channel/impl/fctl.c
2420
new = kmem_zalloc(sizeof (*new), KM_SLEEP);
usr/src/uts/common/io/fibre-channel/impl/fctl.c
2548
ulp_port = fctl_add_ulp_port(mod, port, KM_SLEEP);
usr/src/uts/common/io/fibre-channel/impl/fctl.c
4174
sizeof (*listptr) * listlen, KM_SLEEP);
usr/src/uts/common/io/fibre-channel/impl/fctl.c
4178
sizeof (*listptr) * full_list, KM_SLEEP);
usr/src/uts/common/io/fibre-channel/impl/fctl.c
514
fctl_nwwn_table_size, KM_SLEEP);
usr/src/uts/common/io/fibre-channel/impl/fctl.c
5510
portList = kmem_zalloc(sizeof (fc_local_port_t *) * maxPorts, KM_SLEEP);
usr/src/uts/common/io/fibre-channel/impl/fctl.c
6100
logq = kmem_zalloc(sizeof (*logq), KM_SLEEP);
usr/src/uts/common/io/fibre-channel/impl/fctl.c
646
new = kmem_zalloc(sizeof (*new), KM_SLEEP);
usr/src/uts/common/io/fibre-channel/impl/fctl.c
6722
KM_SLEEP) != DDI_SUCCESS) {
usr/src/uts/common/io/fibre-channel/impl/fctl.c
702
mod = kmem_zalloc(sizeof (*mod), KM_SLEEP);
usr/src/uts/common/io/fibre-channel/impl/fctl.c
720
NULL, NULL, KM_SLEEP);
usr/src/uts/common/io/fibre-channel/impl/fctl.c
999
job = fctl_alloc_job(job_code, 0, NULL, NULL, KM_SLEEP);
usr/src/uts/common/io/fibre-channel/impl/fp.c
10033
listlen, listlen, KM_SLEEP);
usr/src/uts/common/io/fibre-channel/impl/fp.c
10061
devlist = kmem_zalloc(sizeof (fc_port_dev_t) * num_devices, KM_SLEEP);
usr/src/uts/common/io/fibre-channel/impl/fp.c
10145
0, KM_SLEEP);
usr/src/uts/common/io/fibre-channel/impl/fp.c
10174
rval = fp_ns_query(port, ns_cmd, job, 1, KM_SLEEP);
usr/src/uts/common/io/fibre-channel/impl/fp.c
10179
d_id, KM_SLEEP);
usr/src/uts/common/io/fibre-channel/impl/fp.c
1021
sizeof (struct d_id_hash), KM_SLEEP);
usr/src/uts/common/io/fibre-channel/impl/fp.c
1024
sizeof (struct pwwn_hash), KM_SLEEP);
usr/src/uts/common/io/fibre-channel/impl/fp.c
10300
rval = fp_ns_query(port, ns_cmd, job, 1, KM_SLEEP);
usr/src/uts/common/io/fibre-channel/impl/fp.c
10424
FP_CMD_PLOGI_RETAIN, KM_SLEEP, pd, NULL);
usr/src/uts/common/io/fibre-channel/impl/fp.c
10458
listlen, listlen, KM_SLEEP);
usr/src/uts/common/io/fibre-channel/impl/fp.c
10495
job = fctl_alloc_job(JOB_PORT_GETMAP, 0, NULL, NULL, KM_SLEEP);
usr/src/uts/common/io/fibre-channel/impl/fp.c
10507
devlist = kmem_zalloc(sizeof (*devlist) * num_devices, KM_SLEEP);
usr/src/uts/common/io/fibre-channel/impl/fp.c
1067
KM_SLEEP, NULL);
usr/src/uts/common/io/fibre-channel/impl/fp.c
11002
sizeof (la_els_rjt_t), 0, KM_SLEEP,
usr/src/uts/common/io/fibre-channel/impl/fp.c
11033
fp_handle_unsol_plogi(port, buf, job, KM_SLEEP);
usr/src/uts/common/io/fibre-channel/impl/fp.c
11037
fp_handle_unsol_flogi(port, buf, job, KM_SLEEP);
usr/src/uts/common/io/fibre-channel/impl/fp.c
11041
fp_handle_unsol_rscn(port, buf, job, KM_SLEEP);
usr/src/uts/common/io/fibre-channel/impl/fp.c
11045
ub_spec = kmem_zalloc(sizeof (*ub_spec), KM_SLEEP);
usr/src/uts/common/io/fibre-channel/impl/fp.c
11050
fp_ulp_unsol_cb, ub_spec, KM_SLEEP);
usr/src/uts/common/io/fibre-channel/impl/fp.c
11064
0, KM_SLEEP, NULL);
usr/src/uts/common/io/fibre-channel/impl/fp.c
11085
0, KM_SLEEP, NULL);
usr/src/uts/common/io/fibre-channel/impl/fp.c
1109
sizeof (*port->fp_ub_tokens), KM_SLEEP);
usr/src/uts/common/io/fibre-channel/impl/fp.c
11103
ub_spec = kmem_zalloc(sizeof (*ub_spec), KM_SLEEP);
usr/src/uts/common/io/fibre-channel/impl/fp.c
11108
fp_ulp_unsol_cb, ub_spec, KM_SLEEP);
usr/src/uts/common/io/fibre-channel/impl/fp.c
11133
0, KM_SLEEP, NULL);
usr/src/uts/common/io/fibre-channel/impl/fp.c
11434
cmd = fp_prlo_acc_init(port, pd, buf, job, KM_SLEEP);
usr/src/uts/common/io/fibre-channel/impl/fp.c
11445
listptr = kmem_zalloc(sizeof (fc_portmap_t), KM_SLEEP);
usr/src/uts/common/io/fibre-channel/impl/fp.c
11469
(void) fp_ulp_devc_cb(port, listptr, 1, 1, KM_SLEEP, 0);
usr/src/uts/common/io/fibre-channel/impl/fp.c
11475
cmd = fp_alloc_pkt(port, sizeof (la_els_rjt_t), 0, KM_SLEEP, pd);
usr/src/uts/common/io/fibre-channel/impl/fp.c
11524
0, KM_SLEEP, pd);
usr/src/uts/common/io/fibre-channel/impl/fp.c
11553
KM_SLEEP, pd);
usr/src/uts/common/io/fibre-channel/impl/fp.c
11566
listptr = kmem_zalloc(sizeof (fc_portmap_t), KM_SLEEP);
usr/src/uts/common/io/fibre-channel/impl/fp.c
11578
JOB_NS_CMD, 0, NULL, (opaque_t)port, KM_SLEEP);
usr/src/uts/common/io/fibre-channel/impl/fp.c
11585
0, KM_SLEEP);
usr/src/uts/common/io/fibre-channel/impl/fp.c
11594
port, ns_cmd, job, 1, KM_SLEEP);
usr/src/uts/common/io/fibre-channel/impl/fp.c
11630
(void) fp_ulp_devc_cb(port, listptr, 1, 1, KM_SLEEP, 0);
usr/src/uts/common/io/fibre-channel/impl/fp.c
1165
fp_startup_done, (opaque_t)port, KM_SLEEP);
usr/src/uts/common/io/fibre-channel/impl/fp.c
12046
fp_login_acc_init(port, cmd, buf, job, KM_SLEEP);
usr/src/uts/common/io/fibre-channel/impl/fp.c
12176
fp_login_acc_init(port, cmd, buf, job, KM_SLEEP);
usr/src/uts/common/io/fibre-channel/impl/fp.c
13395
0, KM_SLEEP, pd);
usr/src/uts/common/io/fibre-channel/impl/fp.c
13418
0, KM_SLEEP, pd);
usr/src/uts/common/io/fibre-channel/impl/fp.c
13499
ulp_name = kmem_zalloc(len, KM_SLEEP);
usr/src/uts/common/io/fibre-channel/impl/fp.c
13541
FP_PORT_IDENTIFIER_LEN, KM_SLEEP, pd);
usr/src/uts/common/io/fibre-channel/impl/fp.c
13577
att = kmem_zalloc(sizeof (*att), KM_SLEEP);
usr/src/uts/common/io/fibre-channel/impl/fp.c
13594
att, KM_SLEEP);
usr/src/uts/common/io/fibre-channel/impl/fp.c
13625
clist, KM_SLEEP);
usr/src/uts/common/io/fibre-channel/impl/fp.c
13647
FCTL_NS_BUF_IS_FC_PORTMAP), KM_SLEEP);
usr/src/uts/common/io/fibre-channel/impl/fp.c
13659
ret = fp_ns_query(port, ns_cmd, job, 1, KM_SLEEP);
usr/src/uts/common/io/fibre-channel/impl/fp.c
13714
rval = fp_ns_query(port, ns_cmd, job, 1, KM_SLEEP);
usr/src/uts/common/io/fibre-channel/impl/fp.c
13823
port_info = kmem_zalloc(sizeof (*port_info), KM_SLEEP);
usr/src/uts/common/io/fibre-channel/impl/fp.c
14321
rval = fp_ns_query(port, ns_cmd, job, 1, KM_SLEEP);
usr/src/uts/common/io/fibre-channel/impl/fp.c
14324
pd = fp_create_remote_port_by_ns(port, d_id, KM_SLEEP);
usr/src/uts/common/io/fibre-channel/impl/fp.c
1440
JOB_CANCEL_ULP_NOTIFICATION, NULL, NULL, KM_SLEEP);
usr/src/uts/common/io/fibre-channel/impl/fp.c
15062
FCTL_NS_BUF_IS_USERLAND, KM_SLEEP);
usr/src/uts/common/io/fibre-channel/impl/fp.c
15069
ret = fp_ns_query(port, ns_cmd, job, 1, KM_SLEEP);
usr/src/uts/common/io/fibre-channel/impl/fp.c
15119
pd = fp_create_remote_port_by_ns(port, d_id, KM_SLEEP);
usr/src/uts/common/io/fibre-channel/impl/fp.c
15136
KM_SLEEP, pd, NULL);
usr/src/uts/common/io/fibre-channel/impl/fp.c
15163
changelist = kmem_zalloc(sizeof (*changelist), KM_SLEEP);
usr/src/uts/common/io/fibre-channel/impl/fp.c
15168
(void) fp_ulp_devc_cb(port, changelist, 1, 1, KM_SLEEP, 1);
usr/src/uts/common/io/fibre-channel/impl/fp.c
15222
changelist = kmem_zalloc(sizeof (*changelist), KM_SLEEP);
usr/src/uts/common/io/fibre-channel/impl/fp.c
15229
(void) fp_ulp_devc_cb(port, changelist, 1, 1, KM_SLEEP, 1);
usr/src/uts/common/io/fibre-channel/impl/fp.c
15240
FP_PORT_IDENTIFIER_LEN, KM_SLEEP, pd);
usr/src/uts/common/io/fibre-channel/impl/fp.c
15292
changelist = kmem_zalloc(sizeof (*changelist), KM_SLEEP);
usr/src/uts/common/io/fibre-channel/impl/fp.c
15308
(void) fp_ulp_devc_cb(port, changelist, 1, 1, KM_SLEEP, 1);
usr/src/uts/common/io/fibre-channel/impl/fp.c
15326
KM_SLEEP) != DDI_SUCCESS) {
usr/src/uts/common/io/fibre-channel/impl/fp.c
15361
KM_SLEEP) != DDI_SUCCESS) {
usr/src/uts/common/io/fibre-channel/impl/fp.c
1567
(opaque_t)port, KM_SLEEP);
usr/src/uts/common/io/fibre-channel/impl/fp.c
1875
cb = (kmflags == KM_SLEEP) ? DDI_DMA_SLEEP : DDI_DMA_DONTWAIT;
usr/src/uts/common/io/fibre-channel/impl/fp.c
1980
cb = (kmflags == KM_SLEEP) ? DDI_DMA_SLEEP : DDI_DMA_DONTWAIT;
usr/src/uts/common/io/fibre-channel/impl/fp.c
2064
pkt->pkt_cmd = kmem_alloc(cmd_len, KM_SLEEP);
usr/src/uts/common/io/fibre-channel/impl/fp.c
2119
pkt->pkt_resp = kmem_alloc(resp_len, KM_SLEEP);
usr/src/uts/common/io/fibre-channel/impl/fp.c
2396
job->job_result = fp_ulp_notify(port, statec, KM_SLEEP);
usr/src/uts/common/io/fibre-channel/impl/fp.c
2429
*d_id, KM_SLEEP);
usr/src/uts/common/io/fibre-channel/impl/fp.c
2444
FP_CMD_PLOGI_RETAIN, KM_SLEEP, pd, NULL);
usr/src/uts/common/io/fibre-channel/impl/fp.c
2831
ns_cmd->ns_cmd_code, job, 0, KM_SLEEP);
usr/src/uts/common/io/fibre-channel/impl/fp.c
2842
rval = fp_ns_query(port, ns_cmd, job, 0, KM_SLEEP);
usr/src/uts/common/io/fibre-channel/impl/fp.c
2872
KM_SLEEP, job);
usr/src/uts/common/io/fibre-channel/impl/fp.c
2998
KM_SLEEP)) != FC_SUCCESS) {
usr/src/uts/common/io/fibre-channel/impl/fp.c
3019
fp_ns_init(port, job, KM_SLEEP);
usr/src/uts/common/io/fibre-channel/impl/fp.c
3807
KM_SLEEP, pd, NULL);
usr/src/uts/common/io/fibre-channel/impl/fp.c
3872
FP_CMD_PLOGI_DONT_CARE, KM_SLEEP, pd, NULL);
usr/src/uts/common/io/fibre-channel/impl/fp.c
3904
listlen, listlen, KM_SLEEP);
usr/src/uts/common/io/fibre-channel/impl/fp.c
4326
0, 0, KM_SLEEP);
usr/src/uts/common/io/fibre-channel/impl/fp.c
4397
listlen, listlen, KM_SLEEP);
usr/src/uts/common/io/fibre-channel/impl/fp.c
4692
clist, KM_SLEEP);
usr/src/uts/common/io/fibre-channel/impl/fp.c
5127
d_id, KM_SLEEP);
usr/src/uts/common/io/fibre-channel/impl/fp.c
5156
KM_SLEEP, pd, ulp_pkt);
usr/src/uts/common/io/fibre-channel/impl/fp.c
5221
KM_SLEEP, NULL, NULL);
usr/src/uts/common/io/fibre-channel/impl/fp.c
5265
(void) fp_ns_get_devcount(port, job, 0, KM_SLEEP);
usr/src/uts/common/io/fibre-channel/impl/fp.c
5268
(void) fp_ns_get_devcount(port, job, 1, KM_SLEEP);
usr/src/uts/common/io/fibre-channel/impl/fp.c
5299
if (fp_ns_scr(port, job, FC_SCR_CLEAR_REGISTRATION, KM_SLEEP) !=
usr/src/uts/common/io/fibre-channel/impl/fp.c
5307
if (fp_ns_reg(port, NULL, NS_DA_ID, job, 0, KM_SLEEP) != FC_SUCCESS) {
usr/src/uts/common/io/fibre-channel/impl/fp.c
5315
FP_PORT_IDENTIFIER_LEN, KM_SLEEP, NULL);
usr/src/uts/common/io/fibre-channel/impl/fp.c
6305
sizeof (*changelist), KM_SLEEP);
usr/src/uts/common/io/fibre-channel/impl/fp.c
6369
sizeof (*changelist), KM_SLEEP);
usr/src/uts/common/io/fibre-channel/impl/fp.c
6636
sizeof (la_els_logi_t), KM_SLEEP, pd);
usr/src/uts/common/io/fibre-channel/impl/fp.c
6738
kmem_zalloc(sizeof (*changelist), KM_SLEEP);
usr/src/uts/common/io/fibre-channel/impl/fp.c
6755
1, 1, KM_SLEEP, 0);
usr/src/uts/common/io/fibre-channel/impl/fp.c
7310
val = kmem_zalloc(sizeof (*val), KM_SLEEP);
usr/src/uts/common/io/fibre-channel/impl/fp.c
7337
val32 = kmem_zalloc(sizeof (*val32), KM_SLEEP);
usr/src/uts/common/io/fibre-channel/impl/fp.c
7403
tmpPath = kmem_zalloc(MAXPATHLEN, KM_SLEEP);
usr/src/uts/common/io/fibre-channel/impl/fp.c
7436
val = kmem_zalloc(sizeof (*val), KM_SLEEP);
usr/src/uts/common/io/fibre-channel/impl/fp.c
7484
val32 = kmem_zalloc(sizeof (*val32), KM_SLEEP);
usr/src/uts/common/io/fibre-channel/impl/fp.c
7540
attrs = kmem_zalloc(sizeof (*attrs), KM_SLEEP);
usr/src/uts/common/io/fibre-channel/impl/fp.c
7628
portname = kmem_zalloc(MAXPATHLEN, KM_SLEEP);
usr/src/uts/common/io/fibre-channel/impl/fp.c
7630
fcaname = kmem_zalloc(MAXPATHLEN, KM_SLEEP);
usr/src/uts/common/io/fibre-channel/impl/fp.c
7687
list = kmem_zalloc(fcio->fcio_olen, KM_SLEEP);
usr/src/uts/common/io/fibre-channel/impl/fp.c
7726
val = kmem_zalloc(sizeof (*val), KM_SLEEP);
usr/src/uts/common/io/fibre-channel/impl/fp.c
7778
val = kmem_zalloc(sizeof (*val), KM_SLEEP);
usr/src/uts/common/io/fibre-channel/impl/fp.c
7911
val32 = kmem_zalloc(sizeof (*val32), KM_SLEEP);
usr/src/uts/common/io/fibre-channel/impl/fp.c
8001
val = kmem_zalloc(sizeof (*val), KM_SLEEP);
usr/src/uts/common/io/fibre-channel/impl/fp.c
8045
val32 = kmem_zalloc(sizeof (*val32), KM_SLEEP);
usr/src/uts/common/io/fibre-channel/impl/fp.c
8133
val = kmem_zalloc(sizeof (*val), KM_SLEEP);
usr/src/uts/common/io/fibre-channel/impl/fp.c
8176
val32 = kmem_zalloc(sizeof (*val32), KM_SLEEP);
usr/src/uts/common/io/fibre-channel/impl/fp.c
8254
NULL, KM_SLEEP);
usr/src/uts/common/io/fibre-channel/impl/fp.c
8263
(void) fp_ns_get_devcount(port, job, 0, KM_SLEEP);
usr/src/uts/common/io/fibre-channel/impl/fp.c
8383
KM_SLEEP);
usr/src/uts/common/io/fibre-channel/impl/fp.c
8392
NULL, KM_SLEEP);
usr/src/uts/common/io/fibre-channel/impl/fp.c
8395
ret = fp_ns_query(port, ns_cmd, job, 1, KM_SLEEP);
usr/src/uts/common/io/fibre-channel/impl/fp.c
8540
params = kmem_zalloc(sizeof (*params), KM_SLEEP);
usr/src/uts/common/io/fibre-channel/impl/fp.c
8545
params = kmem_zalloc(sizeof (*params), KM_SLEEP);
usr/src/uts/common/io/fibre-channel/impl/fp.c
8569
params32 = kmem_zalloc(sizeof (*params32), KM_SLEEP);
usr/src/uts/common/io/fibre-channel/impl/fp.c
8621
kfcio = kmem_zalloc(sizeof (*kfcio), KM_SLEEP);
usr/src/uts/common/io/fibre-channel/impl/fp.c
8626
KM_SLEEP);
usr/src/uts/common/io/fibre-channel/impl/fp.c
8643
job = fctl_alloc_job(jcode, 0, NULL, NULL, KM_SLEEP);
usr/src/uts/common/io/fibre-channel/impl/fp.c
8687
NULL, NULL, KM_SLEEP);
usr/src/uts/common/io/fibre-channel/impl/fp.c
8696
FCTL_NS_BUF_IS_USERLAND, KM_SLEEP);
usr/src/uts/common/io/fibre-channel/impl/fp.c
8704
1, KM_SLEEP);
usr/src/uts/common/io/fibre-channel/impl/fp.c
8787
changelist = kmem_zalloc(sizeof (*changelist), KM_SLEEP);
usr/src/uts/common/io/fibre-channel/impl/fp.c
8791
(void) fp_ulp_devc_cb(port, changelist, 1, 1, KM_SLEEP, 1);
usr/src/uts/common/io/fibre-channel/impl/fp.c
8808
fcode_rev = kmem_zalloc(fcio->fcio_olen, KM_SLEEP);
usr/src/uts/common/io/fibre-channel/impl/fp.c
884
sym_name = kmem_zalloc(hostnlen + fcanlen + 2, KM_SLEEP);
usr/src/uts/common/io/fibre-channel/impl/fp.c
8858
fw_rev = kmem_zalloc(fcio->fcio_olen, KM_SLEEP);
usr/src/uts/common/io/fibre-channel/impl/fp.c
8936
firmware = kmem_zalloc(fcio->fcio_ilen, KM_SLEEP);
usr/src/uts/common/io/fibre-channel/impl/fp.c
896
char *pathname = kmem_zalloc(MAXPATHLEN, KM_SLEEP);
usr/src/uts/common/io/fibre-channel/impl/fp.c
8975
fcode = kmem_zalloc(fcio->fcio_ilen, KM_SLEEP);
usr/src/uts/common/io/fibre-channel/impl/fp.c
9053
dump = kmem_zalloc(dump_size, KM_SLEEP);
usr/src/uts/common/io/fibre-channel/impl/fp.c
9140
job = fctl_alloc_job(JOB_LINK_RESET, 0, NULL, NULL, KM_SLEEP);
usr/src/uts/common/io/fibre-channel/impl/fp.c
9207
pm.pm_cmd_buf = kmem_zalloc(fcio->fcio_ilen, KM_SLEEP);
usr/src/uts/common/io/fibre-channel/impl/fp.c
9216
pm.pm_data_buf = kmem_zalloc(fcio->fcio_alen, KM_SLEEP);
usr/src/uts/common/io/fibre-channel/impl/fp.c
9225
pm.pm_stat_buf = kmem_zalloc(fcio->fcio_olen, KM_SLEEP);
usr/src/uts/common/io/fibre-channel/impl/fp.c
9387
rls_acc = kmem_zalloc(sizeof (*rls_acc), KM_SLEEP);
usr/src/uts/common/io/fibre-channel/impl/fp.c
9465
NULL, NULL, KM_SLEEP);
usr/src/uts/common/io/fibre-channel/impl/fp.c
9471
sizeof (la_els_rls_acc_t), KM_SLEEP, pd);
usr/src/uts/common/io/fibre-channel/impl/fp.c
9486
rls_acc = kmem_zalloc(sizeof (*rls_acc), KM_SLEEP);
usr/src/uts/common/io/fibre-channel/impl/fp.c
9567
ns_req = kmem_zalloc(sizeof (*ns_req), KM_SLEEP);
usr/src/uts/common/io/fibre-channel/impl/fp.c
9568
ns_req32 = kmem_zalloc(sizeof (*ns_req32), KM_SLEEP);
usr/src/uts/common/io/fibre-channel/impl/fp.c
9594
ns_req = kmem_zalloc(sizeof (*ns_req), KM_SLEEP);
usr/src/uts/common/io/fibre-channel/impl/fp.c
9610
job = fctl_alloc_job(JOB_NS_CMD, 0, NULL, NULL, KM_SLEEP);
usr/src/uts/common/io/fibre-channel/impl/fp.c
9615
FCTL_NS_FILL_NS_MAP, KM_SLEEP);
usr/src/uts/common/io/fibre-channel/impl/fp.c
9707
rnid = kmem_zalloc(sizeof (fc_rnid_t), KM_SLEEP);
usr/src/uts/common/io/fibre-channel/impl/fp.c
9762
rnid = kmem_zalloc(sizeof (fc_rnid_t), KM_SLEEP);
usr/src/uts/common/io/fibre-channel/impl/fp.c
9866
NULL, NULL, KM_SLEEP);
usr/src/uts/common/io/fibre-channel/impl/fp.c
9873
sizeof (la_els_rnid_acc_t), KM_SLEEP, pd);
usr/src/uts/common/io/fibre-channel/impl/fp.c
9889
rnid_acc = kmem_zalloc(sizeof (la_els_rnid_acc_t), KM_SLEEP);
usr/src/uts/common/io/fibre-channel/ulp/fcip.c
1333
kmem_zalloc(sizeof (struct fcip_routing_table), KM_SLEEP);
usr/src/uts/common/io/fibre-channel/ulp/fcip.c
2634
sizeof (la_els_farp_t), NULL, KM_SLEEP);
usr/src/uts/common/io/fibre-channel/ulp/fcip.c
3727
(void) fcip_start(wq, mp, fptr, fdestp, KM_SLEEP);
usr/src/uts/common/io/fibre-channel/ulp/fcip.c
3907
KM_SLEEP)) {
usr/src/uts/common/io/fibre-channel/ulp/fcip.c
422
KM_SLEEP))
usr/src/uts/common/io/fibre-channel/ulp/fcip.c
4387
KM_SLEEP);
usr/src/uts/common/io/fibre-channel/ulp/fcip.c
4438
sizeof (fc_portmap_t)), KM_SLEEP);
usr/src/uts/common/io/fibre-channel/ulp/fcip.c
4561
fptr->fcip_ub_tokens = kmem_zalloc(tok_buf_size, KM_SLEEP);
usr/src/uts/common/io/fibre-channel/ulp/fcip.c
5158
(void) fcip_start(wq, mp, fptr, fdestp, KM_SLEEP);
usr/src/uts/common/io/fibre-channel/ulp/fcip.c
5661
cb = (flags == KM_SLEEP) ? DDI_DMA_SLEEP : DDI_DMA_DONTWAIT;
usr/src/uts/common/io/fibre-channel/ulp/fcip.c
5973
kmem_zalloc(sizeof (struct fcip_dest), KM_SLEEP);
usr/src/uts/common/io/fibre-channel/ulp/fcip.c
6045
sizeof (la_els_farp_t), bdestp->fcipd_pd, KM_SLEEP);
usr/src/uts/common/io/fibre-channel/ulp/fcip.c
6216
sizeof (la_els_logi_t), frp->fcipr_pd, KM_SLEEP);
usr/src/uts/common/io/fibre-channel/ulp/fcip.c
6470
cb = (flags == KM_SLEEP) ? DDI_DMA_SLEEP : DDI_DMA_DONTWAIT;
usr/src/uts/common/io/fibre-channel/ulp/fcp.c
10590
cb = (flags == KM_SLEEP) ? DDI_DMA_SLEEP : DDI_DMA_DONTWAIT;
usr/src/uts/common/io/fibre-channel/ulp/fcp.c
11402
kf = (callback == SLEEP_FUNC) ? KM_SLEEP: KM_NOSLEEP;
usr/src/uts/common/io/fibre-channel/ulp/fcp.c
13984
cmd->cmd_fp_pkt, KM_SLEEP);
usr/src/uts/common/io/fibre-channel/ulp/fcp.c
14926
devlist = kmem_zalloc(sizeof (*devlist), KM_SLEEP);
usr/src/uts/common/io/fibre-channel/ulp/fcp.c
15684
path = kmem_alloc(MAXPATHLEN, KM_SLEEP);
usr/src/uts/common/io/fibre-channel/ulp/fcp.c
16052
(sizeof (struct fcp_black_list_entry), KM_SLEEP);
usr/src/uts/common/io/fibre-channel/ulp/fcp.c
1821
if ((mappings = kmem_zalloc(mappingSize, KM_SLEEP)) == NULL) {
usr/src/uts/common/io/fibre-channel/ulp/fcp.c
2880
report_lun = kmem_zalloc(fpkt->pkt_datalen, KM_SLEEP);
usr/src/uts/common/io/fibre-channel/ulp/fcp.c
4190
(void) fcp_linkreset(pptr, NULL, KM_SLEEP);
usr/src/uts/common/io/fibre-channel/ulp/fcp.c
8224
devname = kmem_alloc(MAXNAMELEN + 1, KM_SLEEP);
usr/src/uts/common/io/fibre-channel/ulp/fcp.c
9821
pathname = kmem_zalloc(MAXPATHLEN, KM_SLEEP);
usr/src/uts/common/io/fibre-channel/ulp/fcp.c
9938
kmem_zalloc(sizeof (fcp_ndi_event_defs), KM_SLEEP);
usr/src/uts/common/io/fibre-channel/ulp/fcsm.c
1169
job = fcsm_alloc_job(KM_SLEEP);
usr/src/uts/common/io/fibre-channel/ulp/fcsm.c
1528
abuf = kmem_zalloc(fcio->fcio_alen, KM_SLEEP);
usr/src/uts/common/io/fibre-channel/ulp/fcsm.c
1581
req_iu = kmem_zalloc(fcio->fcio_ilen, KM_SLEEP);
usr/src/uts/common/io/fibre-channel/ulp/fcsm.c
1582
rsp_iu = kmem_zalloc(fcio->fcio_olen, KM_SLEEP);
usr/src/uts/common/io/fibre-channel/ulp/fcsm.c
1598
status = fcsm_ct_passthru(fcsm->sm_instance, fcio, KM_SLEEP,
usr/src/uts/common/io/fibre-channel/ulp/fcsm.c
1638
list = kmem_zalloc(fcio->fcio_olen, KM_SLEEP);
usr/src/uts/common/io/fibre-channel/ulp/fcsm.c
1967
callback = (kmflags == KM_SLEEP) ? DDI_DMA_SLEEP: DDI_DMA_DONTWAIT;
usr/src/uts/common/io/fibre-channel/ulp/fcsm.c
2049
callback = (sleep == KM_SLEEP) ? DDI_DMA_SLEEP: DDI_DMA_DONTWAIT;
usr/src/uts/common/io/fibre-channel/ulp/fcsm.c
2156
pkt->pkt_cmd = kmem_zalloc(cmd_len, KM_SLEEP);
usr/src/uts/common/io/fibre-channel/ulp/fcsm.c
2229
pkt->pkt_resp = kmem_zalloc(resp_len, KM_SLEEP);
usr/src/uts/common/io/fibre-channel/ulp/fcsm.c
2911
cmd = fcsm_alloc_cmd(fcsm, fcio->fcio_ilen, fcio->fcio_olen, KM_SLEEP);
usr/src/uts/common/io/fibre-channel/ulp/fcsm.c
2982
login_job = fcsm_alloc_job(KM_SLEEP);
usr/src/uts/common/io/fibre-channel/ulp/fcsm.c
3098
kmem_zalloc(sizeof (la_els_logi_t), KM_SLEEP);
usr/src/uts/common/io/fibre-channel/ulp/fcsm.c
3183
sizeof (la_els_logi_t), KM_SLEEP);
usr/src/uts/common/io/fssnap.c
1137
vfsp = vfs_alloc(KM_SLEEP);
usr/src/uts/common/io/fssnap.c
1195
cmnode = kmem_alloc(sizeof (cow_map_node_t), KM_SLEEP);
usr/src/uts/common/io/fssnap.c
1579
oldbp = getrbuf(KM_SLEEP);
usr/src/uts/common/io/fssnap.c
1587
oldbp->b_un.b_addr = kmem_alloc(cmap->cmap_chunksz, KM_SLEEP);
usr/src/uts/common/io/fssnap.c
1811
sidp = kmem_alloc(sizeof (struct snapshot_id), KM_SLEEP);
usr/src/uts/common/io/fssnap.c
1833
cowp = kmem_zalloc(sizeof (struct cow_info), KM_SLEEP);
usr/src/uts/common/io/fssnap.c
1868
cmap->cmap_hastrans = kmem_zalloc(cmap->cmap_bmsize, KM_SLEEP);
usr/src/uts/common/io/fssnap.c
1869
cmap->cmap_candidate = kmem_zalloc(cmap->cmap_bmsize, KM_SLEEP);
usr/src/uts/common/io/fssnap.c
815
snapbuf = getrbuf(KM_SLEEP);
usr/src/uts/common/io/fssnap.c
846
newbuffer = kmem_alloc(newlen, KM_SLEEP);
usr/src/uts/common/io/gen_drv.c
1577
strlen(node_type) + 1, KM_SLEEP);
usr/src/uts/common/io/gld.c
1440
gld = kmem_zalloc(sizeof (gld_t), KM_SLEEP);
usr/src/uts/common/io/gld.c
454
KM_SLEEP);
usr/src/uts/common/io/gld.c
5454
KM_SLEEP);
usr/src/uts/common/io/gld.c
604
KM_SLEEP);
usr/src/uts/common/io/gld.c
628
KM_SLEEP);
usr/src/uts/common/io/gld.c
658
mac_pvt->curr_macaddr = kmem_zalloc(macinfo->gldm_addrlen, KM_SLEEP);
usr/src/uts/common/io/gld.c
667
mac_pvt->statistics = kmem_zalloc(sizeof (struct gld_stats), KM_SLEEP);
usr/src/uts/common/io/gldutil.c
1241
KM_SLEEP);
usr/src/uts/common/io/gpio/gpio_sim.c
532
KM_SLEEP);
usr/src/uts/common/io/gpio/kgpio.c
850
kgpio = kmem_zalloc(sizeof (kgpio_t), KM_SLEEP);
usr/src/uts/common/io/hme/hme.c
1203
hmep = kmem_zalloc(sizeof (*hmep), KM_SLEEP);
usr/src/uts/common/io/hme/hme.c
2855
hmep->hme_tbuf = kmem_zalloc(HME_TMDMAX * sizeof (hmebuf_t), KM_SLEEP);
usr/src/uts/common/io/hme/hme.c
2856
hmep->hme_rbuf = kmem_zalloc(HME_RMDMAX * sizeof (hmebuf_t), KM_SLEEP);
usr/src/uts/common/io/hook.c
1122
new = (hook_family_int_t *)kmem_zalloc(sizeof (*new), KM_SLEEP);
usr/src/uts/common/io/hook.c
1132
dst->hf_name = (char *)kmem_alloc(strlen(src->hf_name) + 1, KM_SLEEP);
usr/src/uts/common/io/hook.c
1653
new = (hook_event_int_t *)kmem_zalloc(sizeof (*new), KM_SLEEP);
usr/src/uts/common/io/hook.c
2299
new = (hook_int_t *)kmem_zalloc(sizeof (*new), KM_SLEEP);
usr/src/uts/common/io/hook.c
2307
dst->h_name = (char *)kmem_alloc(len + 1, KM_SLEEP);
usr/src/uts/common/io/hook.c
2320
KM_SLEEP);
usr/src/uts/common/io/hook.c
2361
hi->hi_ksname = (char *)kmem_zalloc(kslen, KM_SLEEP);
usr/src/uts/common/io/hook.c
2464
h = kmem_zalloc(sizeof (hook_t), KM_SLEEP);
usr/src/uts/common/io/hook.c
2507
hn = (hook_notify_t *)kmem_alloc(sizeof (*hn), KM_SLEEP);
usr/src/uts/common/io/hook.c
498
hks = (hook_stack_t *)kmem_zalloc(sizeof (*hks), KM_SLEEP);
usr/src/uts/common/io/hotplug/hpcsvc/hpcsvc.c
123
(hpc_event_entry_t *)kmem_zalloc(sizeof (hpc_event_entry_t), KM_SLEEP)
usr/src/uts/common/io/hotplug/hpcsvc/hpcsvc.c
144
(hpc_bus_entry_t *)kmem_zalloc(sizeof (hpc_bus_entry_t), KM_SLEEP)
usr/src/uts/common/io/hotplug/hpcsvc/hpcsvc.c
203
(hpc_slot_entry_t *)kmem_zalloc(sizeof (hpc_slot_entry_t), KM_SLEEP)
usr/src/uts/common/io/hotplug/hpcsvc/hpcsvc.c
227
kmem_zalloc(sizeof (hpc_callback_entry_t), KM_SLEEP)
usr/src/uts/common/io/hotplug/pcihp/pcihp.c
2056
kmem_alloc(strlen(slot_info->pci_slot_name) + 1, KM_SLEEP);
usr/src/uts/common/io/hotplug/pcihp/pcihp.c
2114
pcihp_p->dip, KM_SLEEP);
usr/src/uts/common/io/hotplug/pcihp/pcihp.c
2228
pcihp_p->dip, KM_SLEEP);
usr/src/uts/common/io/hotplug/pcihp/pcihp.c
2770
PCIHP_HANDLE_ENUM, KM_SLEEP);
usr/src/uts/common/io/hotplug/pcihp/pcihp.c
2804
KM_SLEEP);
usr/src/uts/common/io/hotplug/pcihp/pcihp.c
2919
pcihp_p->dip, KM_SLEEP);
usr/src/uts/common/io/hotplug/pcihp/pcihp.c
2976
SE_NO_HINT, pcihp_p->dip, KM_SLEEP);
usr/src/uts/common/io/hotplug/pcihp/pcihp.c
356
pcihp_p = kmem_zalloc(sizeof (struct pcihp), KM_SLEEP);
usr/src/uts/common/io/hotplug/pcihp/pcihp.c
3987
((kmflag == KM_SLEEP) ? DDI_SLEEP : DDI_NOSLEEP));
usr/src/uts/common/io/hotplug/pcihp/pcihp.c
672
kmem_alloc(sizeof (char[MAXPATHLEN]), KM_SLEEP);
usr/src/uts/common/io/hotplug/pcihp/pcihp.c
692
occupant = kmem_alloc(sizeof (hpc_occupant_info_t), KM_SLEEP);
usr/src/uts/common/io/hotplug/pcihp/pcihp.c
923
KM_SLEEP);
usr/src/uts/common/io/hotplug/pcihp/pcihp.c
941
KM_SLEEP);
usr/src/uts/common/io/hotplug/pcihp/pcihp.c
975
SE_NO_HINT, pcihp_p->dip, KM_SLEEP);
usr/src/uts/common/io/hotplug/pcihp/pcihp.c
997
SE_NO_HINT, pcihp_p->dip, KM_SLEEP);
usr/src/uts/common/io/hxge/hxge_kstats.c
44
hxgep->statsp = KMEM_ZALLOC(stats_size, KM_SLEEP);
usr/src/uts/common/io/hxge/hxge_main.c
1451
KM_SLEEP);
usr/src/uts/common/io/hxge/hxge_main.c
1453
sizeof (p_hxge_dma_common_t) * ndmas, KM_SLEEP);
usr/src/uts/common/io/hxge/hxge_main.c
1456
KMEM_ZALLOC(sizeof (hxge_dma_pool_t), KM_SLEEP);
usr/src/uts/common/io/hxge/hxge_main.c
1458
sizeof (p_hxge_dma_common_t) * ndmas, KM_SLEEP);
usr/src/uts/common/io/hxge/hxge_main.c
1460
KMEM_ZALLOC(sizeof (hxge_dma_pool_t), KM_SLEEP);
usr/src/uts/common/io/hxge/hxge_main.c
1462
sizeof (p_hxge_dma_common_t) * ndmas, KM_SLEEP);
usr/src/uts/common/io/hxge/hxge_main.c
1464
KMEM_ZALLOC(sizeof (hxge_dma_pool_t), KM_SLEEP);
usr/src/uts/common/io/hxge/hxge_main.c
1466
sizeof (p_hxge_dma_common_t) * ndmas, KM_SLEEP);
usr/src/uts/common/io/hxge/hxge_main.c
1469
KM_SLEEP);
usr/src/uts/common/io/hxge/hxge_main.c
1756
KMEM_ZALLOC(sizeof (hxge_dma_common_t) * HXGE_DMA_BLOCK, KM_SLEEP);
usr/src/uts/common/io/hxge/hxge_main.c
1866
KMEM_ZALLOC(sizeof (hxge_dma_common_t), KM_SLEEP);
usr/src/uts/common/io/hxge/hxge_main.c
1935
KM_SLEEP);
usr/src/uts/common/io/hxge/hxge_main.c
1937
sizeof (p_hxge_dma_common_t) * ndmas, KM_SLEEP);
usr/src/uts/common/io/hxge/hxge_main.c
1940
KMEM_ZALLOC(sizeof (hxge_dma_pool_t), KM_SLEEP);
usr/src/uts/common/io/hxge/hxge_main.c
1942
sizeof (p_hxge_dma_common_t) * ndmas, KM_SLEEP);
usr/src/uts/common/io/hxge/hxge_main.c
1962
KM_SLEEP);
usr/src/uts/common/io/hxge/hxge_main.c
2063
KMEM_ZALLOC(sizeof (hxge_dma_common_t) * HXGE_DMA_BLOCK, KM_SLEEP);
usr/src/uts/common/io/hxge/hxge_main.c
2154
KM_SLEEP);
usr/src/uts/common/io/hxge/hxge_main.c
3838
intrp->htable = kmem_zalloc(intrp->intr_size, KM_SLEEP);
usr/src/uts/common/io/hxge/hxge_main.c
3993
intrp->htable = kmem_alloc(intrp->intr_size, KM_SLEEP);
usr/src/uts/common/io/hxge/hxge_main.c
4297
hw_p = kmem_zalloc(sizeof (hxge_hw_list_t), KM_SLEEP);
usr/src/uts/common/io/hxge/hxge_main.c
754
dev_regs = KMEM_ZALLOC(sizeof (dev_regs_t), KM_SLEEP);
usr/src/uts/common/io/hxge/hxge_ndd.c
400
sizeof (hxge_param_arr), KM_SLEEP);
usr/src/uts/common/io/hxge/hxge_ndd.c
409
(uint64_t)KMEM_ZALLOC(alloc_size, KM_SLEEP);
usr/src/uts/common/io/hxge/hxge_ndd.c
411
(uint64_t)KMEM_ZALLOC(alloc_size, KM_SLEEP);
usr/src/uts/common/io/hxge/hxge_pfc.c
1006
classify_ptr->tcam_entries = KMEM_ZALLOC(alloc_size, KM_SLEEP);
usr/src/uts/common/io/hxge/hxge_pfc.c
347
KM_SLEEP);
usr/src/uts/common/io/hxge/hxge_rxdma.c
2286
KMEM_ZALLOC(sizeof (rx_rbr_rings_t), KM_SLEEP);
usr/src/uts/common/io/hxge/hxge_rxdma.c
2288
sizeof (p_rx_rbr_ring_t) * ndmas, KM_SLEEP);
usr/src/uts/common/io/hxge/hxge_rxdma.c
2291
KMEM_ZALLOC(sizeof (rx_rcr_rings_t), KM_SLEEP);
usr/src/uts/common/io/hxge/hxge_rxdma.c
2293
sizeof (p_rx_rcr_ring_t) * ndmas, KM_SLEEP);
usr/src/uts/common/io/hxge/hxge_rxdma.c
2296
KMEM_ZALLOC(sizeof (rx_mbox_areas_t), KM_SLEEP);
usr/src/uts/common/io/hxge/hxge_rxdma.c
2298
sizeof (p_rx_mbox_t) * ndmas, KM_SLEEP);
usr/src/uts/common/io/hxge/hxge_rxdma.c
2704
rcrp = (p_rx_rcr_ring_t)KMEM_ZALLOC(sizeof (rx_rcr_ring_t), KM_SLEEP);
usr/src/uts/common/io/hxge/hxge_rxdma.c
2773
mboxp = (p_rx_mbox_t)KMEM_ZALLOC(sizeof (rx_mbox_t), KM_SLEEP);
usr/src/uts/common/io/hxge/hxge_rxdma.c
2869
rbrp = (p_rx_rbr_ring_t)KMEM_ZALLOC(sizeof (rx_rbr_ring_t), KM_SLEEP);
usr/src/uts/common/io/hxge/hxge_rxdma.c
2872
rx_msg_ring = KMEM_ZALLOC(size, KM_SLEEP);
usr/src/uts/common/io/hxge/hxge_rxdma.c
2874
KM_SLEEP);
usr/src/uts/common/io/hxge/hxge_txdma.c
1552
tx_rings = (p_tx_rings_t)KMEM_ZALLOC(sizeof (tx_rings_t), KM_SLEEP);
usr/src/uts/common/io/hxge/hxge_txdma.c
1554
sizeof (p_tx_ring_t) * ndmas, KM_SLEEP);
usr/src/uts/common/io/hxge/hxge_txdma.c
1560
KMEM_ZALLOC(sizeof (tx_mbox_areas_t), KM_SLEEP);
usr/src/uts/common/io/hxge/hxge_txdma.c
1562
sizeof (p_tx_mbox_t) * ndmas, KM_SLEEP);
usr/src/uts/common/io/hxge/hxge_txdma.c
1794
mboxp = (p_tx_mbox_t)KMEM_ZALLOC(sizeof (tx_mbox_t), KM_SLEEP);
usr/src/uts/common/io/hxge/hxge_txdma.c
1885
tx_ring_p = (p_tx_ring_t)KMEM_ZALLOC(sizeof (tx_ring_t), KM_SLEEP);
usr/src/uts/common/io/hxge/hxge_txdma.c
1902
tx_msg_ring = KMEM_ZALLOC(size, KM_SLEEP);
usr/src/uts/common/io/hxge/hxge_virtual.c
508
ldgvp = KMEM_ZALLOC(sizeof (hxge_ldgv_t), KM_SLEEP);
usr/src/uts/common/io/hxge/hxge_virtual.c
513
KMEM_ZALLOC(sizeof (hxge_ldg_t) * maxldgs, KM_SLEEP);
usr/src/uts/common/io/hxge/hxge_virtual.c
515
KMEM_ZALLOC(sizeof (hxge_ldv_t) * maxldvs, KM_SLEEP);
usr/src/uts/common/io/i2c/ctrl/ismt/ismt.c
1088
ismt = kmem_zalloc(sizeof (ismt_t), KM_SLEEP);
usr/src/uts/common/io/i2c/ctrl/pchsmbus/pchsmbus.c
1171
pch = kmem_zalloc(sizeof (pchsmbus_t), KM_SLEEP);
usr/src/uts/common/io/i2c/eeprom/at24c/at24c.c
340
KM_SLEEP);
usr/src/uts/common/io/i2c/eeprom/at24c/at24c.c
342
KM_SLEEP);
usr/src/uts/common/io/i2c/eeprom/at24c/at24c.c
468
at = kmem_zalloc(sizeof (at24c_t), KM_SLEEP);
usr/src/uts/common/io/i2c/eeprom/spd511x/spd511x.c
394
spd = kmem_zalloc(sizeof (spd5118_t), KM_SLEEP);
usr/src/uts/common/io/i2c/gpio/pca953x/pca953x.c
694
pca = kmem_zalloc(sizeof (pca953x_t), KM_SLEEP);
usr/src/uts/common/io/i2c/mux/ltc430x/ltc430x.c
731
ltc = kmem_zalloc(sizeof (ltc430x_t), KM_SLEEP);
usr/src/uts/common/io/i2c/mux/pca954x/pca954x.c
233
pca = kmem_zalloc(sizeof (pca954x_t), KM_SLEEP);
usr/src/uts/common/io/i2c/nexus/i2cnex.c
1035
conf->inbc_dup = kmem_alloc(conf->inbc_duplen, KM_SLEEP);
usr/src/uts/common/io/i2c/nexus/i2cnex.c
659
i2c_root_t *root = kmem_zalloc(sizeof (i2c_root_t), KM_SLEEP);
usr/src/uts/common/io/i2c/nexus/i2cnex.c
714
nex = kmem_zalloc(sizeof (i2c_nexus_t), KM_SLEEP);
usr/src/uts/common/io/i2c/nexus/i2cnex_client.c
310
client = kmem_zalloc(sizeof (i2c_client_t), KM_SLEEP);
usr/src/uts/common/io/i2c/nexus/i2cnex_client.c
810
i2c_reg_hdl_t *reg_hdl = kmem_zalloc(sizeof (i2c_reg_hdl_t), KM_SLEEP);
usr/src/uts/common/io/i2c/nexus/i2cnex_ctrl.c
220
reg = kmem_zalloc(sizeof (i2c_ctrl_register_t), KM_SLEEP);
usr/src/uts/common/io/i2c/nexus/i2cnex_ctrl.c
527
ctrl = kmem_zalloc(sizeof (i2c_ctrl_t), KM_SLEEP);
usr/src/uts/common/io/i2c/nexus/i2cnex_device.c
112
dev = kmem_zalloc(sizeof (i2c_dev_t), KM_SLEEP);
usr/src/uts/common/io/i2c/nexus/i2cnex_device.c
119
KM_SLEEP);
usr/src/uts/common/io/i2c/nexus/i2cnex_mux.c
197
i2c_mux_t *mux = kmem_zalloc(sizeof (i2c_mux_t), KM_SLEEP);
usr/src/uts/common/io/i2c/nexus/i2cnex_mux.c
77
reg = kmem_zalloc(sizeof (i2c_mux_register_t), KM_SLEEP);
usr/src/uts/common/io/i2c/nexus/i2cnex_txn.c
45
i2c_txn_t *txn = kmem_zalloc(sizeof (i2c_txn_t), KM_SLEEP);
usr/src/uts/common/io/i2c/sensor/lm7x/lm7x.c
359
lm = kmem_zalloc(sizeof (lm7x_t), KM_SLEEP);
usr/src/uts/common/io/i2c/sensor/tmp43x/tmp43x.c
587
tmp = kmem_zalloc(sizeof (tmp43x_t), KM_SLEEP);
usr/src/uts/common/io/i2c/sensor/ts511x/ts511x.c
271
ts = kmem_zalloc(sizeof (ts511x_t), KM_SLEEP);
usr/src/uts/common/io/i40e/i40e_main.c
1060
i40e->i40e_resources.ifr_nmacfilt, KM_SLEEP);
usr/src/uts/common/io/i40e/i40e_main.c
1062
i40e->i40e_resources.ifr_nmcastfilt, KM_SLEEP);
usr/src/uts/common/io/i40e/i40e_main.c
1188
i40e->i40e_num_trqpairs, KM_SLEEP);
usr/src/uts/common/io/i40e/i40e_main.c
1216
i40e->i40e_num_rx_groups, KM_SLEEP);
usr/src/uts/common/io/i40e/i40e_main.c
1741
i40e->i40e_intr_handles = kmem_alloc(i40e->i40e_intr_size, KM_SLEEP);
usr/src/uts/common/io/i40e/i40e_main.c
3281
(void) nvlist_alloc(&misc, NV_UNIQUE_NAME, KM_SLEEP);
usr/src/uts/common/io/i40e/i40e_main.c
3332
i40e = kmem_zalloc(sizeof (i40e_t), KM_SLEEP);
usr/src/uts/common/io/i40e/i40e_main.c
3334
i40e->i40e_aqbuf = kmem_zalloc(I40E_ADMINQ_BUFSZ, KM_SLEEP);
usr/src/uts/common/io/i40e/i40e_main.c
520
idp = kmem_alloc(sizeof (i40e_device_t), KM_SLEEP);
usr/src/uts/common/io/i40e/i40e_main.c
529
idp->id_rsrcs_alloc, KM_SLEEP);
usr/src/uts/common/io/i40e/i40e_main.c
857
buf = kmem_alloc(len, KM_SLEEP);
usr/src/uts/common/io/i40e/i40e_main.c
902
buf = kmem_alloc(size, KM_SLEEP);
usr/src/uts/common/io/i40e/i40e_osdep.c
28
mem->va = kmem_zalloc(size, KM_SLEEP);
usr/src/uts/common/io/i40e/i40e_transceiver.c
970
sizeof (i40e_tx_control_block_t *), KM_SLEEP);
usr/src/uts/common/io/i8042.c
603
global = (struct i8042 *)kmem_zalloc(sizeof (struct i8042), KM_SLEEP);
usr/src/uts/common/io/ib/adapters/hermon/hermon.c
1062
kmem_zalloc(HERMON_ICM_SPAN * sizeof (void *), KM_SLEEP);
usr/src/uts/common/io/ib/adapters/hermon/hermon.c
1942
sizeof (hermon_icm_table_t), KM_SLEEP);
usr/src/uts/common/io/ib/adapters/hermon/hermon.c
2409
hca_attr = kmem_zalloc(sizeof (ibt_hca_attr_t), KM_SLEEP);
usr/src/uts/common/io/ib/adapters/hermon/hermon.c
3469
sizeof (hermon_hw_set_port_t), KM_SLEEP);
usr/src/uts/common/io/ib/adapters/hermon/hermon.c
3958
state->hs_mcgtmp = kmem_zalloc(mcg_tmp_sz, KM_SLEEP);
usr/src/uts/common/io/ib/adapters/hermon/hermon.c
4754
KM_SLEEP);
usr/src/uts/common/io/ib/adapters/hermon/hermon.c
4758
KM_SLEEP);
usr/src/uts/common/io/ib/adapters/hermon/hermon_agents.c
632
sizeof (hermon_agent_list_t), KM_SLEEP);
usr/src/uts/common/io/ib/adapters/hermon/hermon_agents.c
78
rsrc_name = (char *)kmem_zalloc(HERMON_RSRC_NAME_MAXLEN, KM_SLEEP);
usr/src/uts/common/io/ib/adapters/hermon/hermon_cfg.c
212
KM_SLEEP);
usr/src/uts/common/io/ib/adapters/hermon/hermon_cfg.c
369
sizeof (ib_pkey_t), KM_SLEEP);
usr/src/uts/common/io/ib/adapters/hermon/hermon_cfg.c
371
sizeof (ib_guid_t), KM_SLEEP);
usr/src/uts/common/io/ib/adapters/hermon/hermon_ci.c
2082
kmflag = KM_SLEEP;
usr/src/uts/common/io/ib/adapters/hermon/hermon_ci.c
2232
kmflag = KM_SLEEP;
usr/src/uts/common/io/ib/adapters/hermon/hermon_ci.c
2467
kmflag = KM_SLEEP;
usr/src/uts/common/io/ib/adapters/hermon/hermon_ci.c
2880
(flags & IBT_MR_NOSLEEP) ? KM_NOSLEEP : KM_SLEEP);
usr/src/uts/common/io/ib/adapters/hermon/hermon_cmd.c
1241
sizeof (hermon_cmd_t), KM_SLEEP);
usr/src/uts/common/io/ib/adapters/hermon/hermon_cmd.c
1543
sizeof (hermon_hw_mod_stat_cfg_t), KM_SLEEP);
usr/src/uts/common/io/ib/adapters/hermon/hermon_cmd.c
739
sizeof (hermon_mbox_t), KM_SLEEP);
usr/src/uts/common/io/ib/adapters/hermon/hermon_cq.c
1793
sizeof (hermon_cq_sched_t), KM_SLEEP);
usr/src/uts/common/io/ib/adapters/hermon/hermon_cq.c
634
resize_hdl = kmem_zalloc(sizeof (struct hermon_sw_cq_s), KM_SLEEP);
usr/src/uts/common/io/ib/adapters/hermon/hermon_fcoib.c
384
fcoib->hfc_rfci_qps_per_port, KM_SLEEP);
usr/src/uts/common/io/ib/adapters/hermon/hermon_fm.c
2015
handlep = kmem_cache_alloc(hca_fm->fm_acc_cache, KM_SLEEP);
usr/src/uts/common/io/ib/adapters/hermon/hermon_fm.c
2131
handlep = kmem_cache_alloc(hca_fm->fm_acc_cache, KM_SLEEP);
usr/src/uts/common/io/ib/adapters/hermon/hermon_fm.c
659
rsrc_name = (char *)kmem_zalloc(HERMON_RSRC_NAME_MAXLEN, KM_SLEEP);
usr/src/uts/common/io/ib/adapters/hermon/hermon_ioctl.c
1011
KM_SLEEP);
usr/src/uts/common/io/ib/adapters/hermon/hermon_ioctl.c
1014
KM_SLEEP);
usr/src/uts/common/io/ib/adapters/hermon/hermon_ioctl.c
619
state->hs_fw_log_sector_sz, KM_SLEEP);
usr/src/uts/common/io/ib/adapters/hermon/hermon_ioctl.c
871
KM_SLEEP);
usr/src/uts/common/io/ib/adapters/hermon/hermon_ioctl.c
874
KM_SLEEP);
usr/src/uts/common/io/ib/adapters/hermon/hermon_misc.c
148
udbr = kmem_alloc(sizeof (*udbr), KM_SLEEP);
usr/src/uts/common/io/ib/adapters/hermon/hermon_misc.c
279
info = kmem_zalloc(sizeof (hermon_dbr_info_t), KM_SLEEP);
usr/src/uts/common/io/ib/adapters/hermon/hermon_misc.c
521
KM_SLEEP);
usr/src/uts/common/io/ib/adapters/hermon/hermon_misc.c
85
pagep = kmem_alloc(sizeof (*pagep), KM_SLEEP);
usr/src/uts/common/io/ib/adapters/hermon/hermon_misc.c
91
KM_SLEEP);
usr/src/uts/common/io/ib/adapters/hermon/hermon_qp.c
1364
(sleepflag == HERMON_SLEEP) ? KM_SLEEP : KM_NOSLEEP);
usr/src/uts/common/io/ib/adapters/hermon/hermon_rsrc.c
1501
priv = kmem_zalloc(sizeof (hermon_rsrc_priv_mbox_t), KM_SLEEP);
usr/src/uts/common/io/ib/adapters/hermon/hermon_rsrc.c
1721
KM_SLEEP);
usr/src/uts/common/io/ib/adapters/hermon/hermon_rsrc.c
196
flag = (sleepflag == HERMON_SLEEP) ? KM_SLEEP : KM_NOSLEEP;
usr/src/uts/common/io/ib/adapters/hermon/hermon_rsrc.c
2314
flag = (sleepflag == HERMON_SLEEP) ? KM_SLEEP : KM_NOSLEEP;
usr/src/uts/common/io/ib/adapters/hermon/hermon_rsrc.c
321
flag = (sleepflag == HERMON_SLEEP) ? KM_SLEEP : KM_NOSLEEP;
usr/src/uts/common/io/ib/adapters/hermon/hermon_rsrc.c
650
rsrc_name = kmem_zalloc(HERMON_RSRC_NAME_MAXLEN, KM_SLEEP);
usr/src/uts/common/io/ib/adapters/hermon/hermon_rsrc.c
665
sizeof (hermon_rsrc_pool_info_t), KM_SLEEP);
usr/src/uts/common/io/ib/adapters/hermon/hermon_rsrc.c
824
rsrc_name = kmem_zalloc(HERMON_RSRC_NAME_MAXLEN, KM_SLEEP);
usr/src/uts/common/io/ib/adapters/hermon/hermon_stats.c
108
KM_SLEEP);
usr/src/uts/common/io/ib/adapters/hermon/hermon_umap.c
1036
sizeof (hermon_devmap_track_t), KM_SLEEP);
usr/src/uts/common/io/ib/adapters/hermon/hermon_umap.c
1268
sizeof (hermon_devmap_track_t), KM_SLEEP);
usr/src/uts/common/io/ib/adapters/hermon/hermon_umap.c
492
sizeof (hermon_devmap_track_t), KM_SLEEP);
usr/src/uts/common/io/ib/adapters/hermon/hermon_umap.c
637
sizeof (hermon_devmap_track_t), KM_SLEEP);
usr/src/uts/common/io/ib/adapters/hermon/hermon_umap.c
897
sizeof (hermon_devmap_track_t), KM_SLEEP);
usr/src/uts/common/io/ib/adapters/tavor/tavor.c
1588
hca_attr = kmem_zalloc(sizeof (ibt_hca_attr_t), KM_SLEEP);
usr/src/uts/common/io/ib/adapters/tavor/tavor.c
2043
sizeof (tavor_hw_initib_t), KM_SLEEP);
usr/src/uts/common/io/ib/adapters/tavor/tavor.c
2447
state->ts_mcgtmp = kmem_zalloc(mcg_tmp_sz, KM_SLEEP);
usr/src/uts/common/io/ib/adapters/tavor/tavor_agents.c
393
sizeof (tavor_agent_list_t), KM_SLEEP);
usr/src/uts/common/io/ib/adapters/tavor/tavor_agents.c
78
rsrc_name = (char *)kmem_zalloc(TAVOR_RSRC_NAME_MAXLEN, KM_SLEEP);
usr/src/uts/common/io/ib/adapters/tavor/tavor_cfg.c
275
KM_SLEEP);
usr/src/uts/common/io/ib/adapters/tavor/tavor_ci.c
2603
kmflag = KM_SLEEP;
usr/src/uts/common/io/ib/adapters/tavor/tavor_ci.c
2961
flags & IBT_MR_NOSLEEP ? KM_NOSLEEP : KM_SLEEP);
usr/src/uts/common/io/ib/adapters/tavor/tavor_cmd.c
1067
sizeof (tavor_cmd_t), KM_SLEEP);
usr/src/uts/common/io/ib/adapters/tavor/tavor_cmd.c
1447
sizeof (tavor_hw_mod_stat_cfg_t), KM_SLEEP);
usr/src/uts/common/io/ib/adapters/tavor/tavor_cmd.c
638
sizeof (tavor_mbox_t), KM_SLEEP);
usr/src/uts/common/io/ib/adapters/tavor/tavor_ioctl.c
541
state->ts_fw_log_sector_sz, KM_SLEEP);
usr/src/uts/common/io/ib/adapters/tavor/tavor_ioctl.c
769
KM_SLEEP);
usr/src/uts/common/io/ib/adapters/tavor/tavor_ioctl.c
772
KM_SLEEP);
usr/src/uts/common/io/ib/adapters/tavor/tavor_ioctl.c
909
KM_SLEEP);
usr/src/uts/common/io/ib/adapters/tavor/tavor_ioctl.c
912
KM_SLEEP);
usr/src/uts/common/io/ib/adapters/tavor/tavor_rsrc.c
1691
priv = kmem_zalloc(sizeof (tavor_rsrc_priv_mbox_t), KM_SLEEP);
usr/src/uts/common/io/ib/adapters/tavor/tavor_rsrc.c
194
flag = (sleepflag == TAVOR_SLEEP) ? KM_SLEEP : KM_NOSLEEP;
usr/src/uts/common/io/ib/adapters/tavor/tavor_rsrc.c
1966
KM_SLEEP);
usr/src/uts/common/io/ib/adapters/tavor/tavor_rsrc.c
2274
flag = (sleepflag == TAVOR_SLEEP) ? KM_SLEEP : KM_NOSLEEP;
usr/src/uts/common/io/ib/adapters/tavor/tavor_rsrc.c
419
rsrc_name = (char *)kmem_zalloc(TAVOR_RSRC_NAME_MAXLEN, KM_SLEEP);
usr/src/uts/common/io/ib/adapters/tavor/tavor_rsrc.c
434
sizeof (tavor_rsrc_pool_info_t), KM_SLEEP);
usr/src/uts/common/io/ib/adapters/tavor/tavor_rsrc.c
568
rsrc_name = (char *)kmem_zalloc(TAVOR_RSRC_NAME_MAXLEN, KM_SLEEP);
usr/src/uts/common/io/ib/adapters/tavor/tavor_stats.c
124
KM_SLEEP);
usr/src/uts/common/io/ib/adapters/tavor/tavor_umap.c
403
sizeof (tavor_devmap_track_t), KM_SLEEP);
usr/src/uts/common/io/ib/adapters/tavor/tavor_umap.c
542
sizeof (tavor_devmap_track_t), KM_SLEEP);
usr/src/uts/common/io/ib/adapters/tavor/tavor_umap.c
774
sizeof (tavor_devmap_track_t), KM_SLEEP);
usr/src/uts/common/io/ib/clients/daplt/daplt.c
1862
disc_ev = kmem_zalloc(sizeof (daplka_evd_event_t), KM_SLEEP);
usr/src/uts/common/io/ib/clients/daplt/daplt.c
568
static int daplka_km_flags = KM_SLEEP;
usr/src/uts/common/io/ib/clients/daplt/daplt.c
700
hca = kmem_zalloc(sizeof (daplka_hca_t), KM_SLEEP);
usr/src/uts/common/io/ib/clients/eoib/eib_adm.c
202
chan->ch_wc = kmem_zalloc(sizeof (ibt_wc_t) * sz, KM_SLEEP);
usr/src/uts/common/io/ib/clients/eoib/eib_chan.c
44
chan = kmem_zalloc(sizeof (eib_chan_t), KM_SLEEP);
usr/src/uts/common/io/ib/clients/eoib/eib_cmn.c
165
ss->ei_gw_props = kmem_zalloc(sizeof (eib_gw_props_t), KM_SLEEP);
usr/src/uts/common/io/ib/clients/eoib/eib_cmn.c
166
ss->ei_props = kmem_zalloc(sizeof (eib_props_t), KM_SLEEP);
usr/src/uts/common/io/ib/clients/eoib/eib_ctl.c
180
chan->ch_wc = kmem_zalloc(sizeof (ibt_wc_t) * sz, KM_SLEEP);
usr/src/uts/common/io/ib/clients/eoib/eib_data.c
650
chan->ch_wc = kmem_zalloc(sizeof (ibt_wc_t) * snd_sz, KM_SLEEP);
usr/src/uts/common/io/ib/clients/eoib/eib_data.c
652
chan->ch_rcv_wc = kmem_zalloc(sizeof (ibt_wc_t) * rcv_sz, KM_SLEEP);
usr/src/uts/common/io/ib/clients/eoib/eib_ibt.c
101
ss->ei_hca_attrs = kmem_zalloc(sizeof (ibt_hca_attr_t), KM_SLEEP);
usr/src/uts/common/io/ib/clients/eoib/eib_ibt.c
157
ss->ei_caps = kmem_zalloc(sizeof (eib_caps_t), KM_SLEEP);
usr/src/uts/common/io/ib/clients/eoib/eib_log.c
63
eib_debug_buf = kmem_zalloc(eib_debug_buf_sz, KM_SLEEP);
usr/src/uts/common/io/ib/clients/eoib/eib_main.c
700
ss->ei_node_state = kmem_zalloc(sizeof (eib_node_state_t), KM_SLEEP);
usr/src/uts/common/io/ib/clients/eoib/eib_main.c
708
ss->ei_stats = kmem_zalloc(sizeof (eib_stats_t), KM_SLEEP);
usr/src/uts/common/io/ib/clients/eoib/eib_rsrc.c
572
kmem_zalloc(EIB_MAX_PAYLOAD_HDR_SZ, KM_SLEEP);
usr/src/uts/common/io/ib/clients/eoib/eib_rsrc.c
770
bkt = kmem_zalloc(sizeof (eib_lsobkt_t), KM_SLEEP);
usr/src/uts/common/io/ib/clients/eoib/eib_rsrc.c
771
lsomem = kmem_zalloc(eib_lso_num_bufs * EIB_LSO_BUFSZ, KM_SLEEP);
usr/src/uts/common/io/ib/clients/eoib/eib_rsrc.c
804
KM_SLEEP);
usr/src/uts/common/io/ib/clients/eoib/eib_rsrc.c
861
wp = kmem_zalloc(sizeof (eib_wqe_pool_t), KM_SLEEP);
usr/src/uts/common/io/ib/clients/eoib/eib_rsrc.c
863
wp->wp_wqe = (eib_wqe_t *)kmem_zalloc(wp_wqesz, KM_SLEEP);
usr/src/uts/common/io/ib/clients/eoib/eib_rsrc.c
866
KM_SLEEP);
usr/src/uts/common/io/ib/clients/eoib/eib_svc.c
837
evi = kmem_zalloc(sizeof (eib_event_t), KM_SLEEP);
usr/src/uts/common/io/ib/clients/eoib/eib_svc.c
864
vrq = kmem_zalloc(sizeof (eib_vnic_req_t), KM_SLEEP);
usr/src/uts/common/io/ib/clients/eoib/eib_svc.c
932
vrq = kmem_zalloc(sizeof (eib_vnic_req_t), KM_SLEEP);
usr/src/uts/common/io/ib/clients/eoib/eib_vnic.c
131
vnic = kmem_zalloc(sizeof (eib_vnic_t), KM_SLEEP);
usr/src/uts/common/io/ib/clients/eoib/eib_vnic.c
1740
kav = kmem_zalloc(sizeof (eib_ka_vnics_t), KM_SLEEP);
usr/src/uts/common/io/ib/clients/eoib/eib_vnic.c
671
tbl = kmem_zalloc(sizeof (eib_vhub_table_t), KM_SLEEP);
usr/src/uts/common/io/ib/clients/eoib/eib_vnic.c
675
upd = kmem_zalloc(sizeof (eib_vhub_update_t), KM_SLEEP);
usr/src/uts/common/io/ib/clients/eoib/enx_fip.c
304
gw_addr->ga_vect = kmem_zalloc(sizeof (ibt_adds_vect_t), KM_SLEEP);
usr/src/uts/common/io/ib/clients/eoib/enx_fip.c
65
if ((swqe = eibnx_acquire_swqe(info, KM_SLEEP)) == NULL)
usr/src/uts/common/io/ib/clients/eoib/enx_ibt.c
1191
hca = kmem_zalloc(sizeof (eibnx_hca_t), KM_SLEEP);
usr/src/uts/common/io/ib/clients/eoib/enx_ibt.c
1205
port = kmem_zalloc(sizeof (eibnx_port_t), KM_SLEEP);
usr/src/uts/common/io/ib/clients/eoib/enx_ibt.c
343
info->ti_wc = kmem_zalloc(sizeof (ibt_wc_t) * sz, KM_SLEEP);
usr/src/uts/common/io/ib/clients/eoib/enx_ibt.c
444
KM_SLEEP);
usr/src/uts/common/io/ib/clients/eoib/enx_ibt.c
531
KM_SLEEP);
usr/src/uts/common/io/ib/clients/eoib/enx_log.c
60
enx_debug_buf = kmem_zalloc(enx_debug_buf_sz, KM_SLEEP);
usr/src/uts/common/io/ib/clients/eoib/enx_main.c
239
ss = kmem_zalloc(sizeof (eibnx_t), KM_SLEEP);
usr/src/uts/common/io/ib/clients/eoib/enx_misc.c
357
ti = kmem_zalloc(sizeof (eibnx_thr_info_t), KM_SLEEP);
usr/src/uts/common/io/ib/clients/eoib/enx_misc.c
370
ti->ti_ident = kmem_zalloc(MAXNAMELEN, KM_SLEEP);
usr/src/uts/common/io/ib/clients/eoib/enx_misc.c
629
name = kmem_zalloc(MAXNAMELEN, KM_SLEEP);
usr/src/uts/common/io/ib/clients/eoib/enx_q.c
170
new_ch = kmem_zalloc(sizeof (eibnx_child_t), KM_SLEEP);
usr/src/uts/common/io/ib/clients/ibd/ibd.c
1397
ibd_hash_by_id, NULL, ibd_hash_key_cmp, KM_SLEEP);
usr/src/uts/common/io/ib/clients/ibd/ibd.c
1405
state->id_num_ah, KM_SLEEP);
usr/src/uts/common/io/ib/clients/ibd/ibd.c
2288
req = kmem_cache_alloc(state->id_req_kmc, KM_SLEEP);
usr/src/uts/common/io/ib/clients/ibd/ibd.c
3129
mce = kmem_zalloc(sizeof (ibd_mce_t), KM_SLEEP);
usr/src/uts/common/io/ib/clients/ibd/ibd.c
3532
state->id_tx_buf_sz, KM_SLEEP);
usr/src/uts/common/io/ib/clients/ibd/ibd.c
3535
sizeof (ibd_swqe_t), KM_SLEEP);
usr/src/uts/common/io/ib/clients/ibd/ibd.c
3574
bktp = kmem_zalloc(sizeof (ibd_lsobkt_t), KM_SLEEP);
usr/src/uts/common/io/ib/clients/ibd/ibd.c
3580
membase = kmem_zalloc(memsz, KM_SLEEP);
usr/src/uts/common/io/ib/clients/ibd/ibd.c
3603
KM_SLEEP);
usr/src/uts/common/io/ib/clients/ibd/ibd.c
4035
state->id_rx_buf_sz, KM_SLEEP);
usr/src/uts/common/io/ib/clients/ibd/ibd.c
4038
sizeof (ibd_rwqe_t), KM_SLEEP);
usr/src/uts/common/io/ib/clients/ibd/ibd.c
4042
sizeof (ibd_rx_queue_t), KM_SLEEP);
usr/src/uts/common/io/ib/clients/ibd/ibd.c
4410
req = kmem_cache_alloc(state->id_req_kmc, KM_SLEEP);
usr/src/uts/common/io/ib/clients/ibd/ibd.c
5416
state->id_rxwcs_size, KM_SLEEP);
usr/src/uts/common/io/ib/clients/ibd/ibd.c
5446
state->id_txwcs_size, KM_SLEEP);
usr/src/uts/common/io/ib/clients/ibd/ibd.c
8110
ibd_lbuf = kmem_zalloc(IBD_LOG_SZ, KM_SLEEP);
usr/src/uts/common/io/ib/clients/ibd/ibd.c
8243
state = kmem_zalloc(sizeof (ibd_state_t), KM_SLEEP);
usr/src/uts/common/io/ib/clients/ibd/ibd.c
8912
*attr_list = kmem_alloc(sizeof (ibt_part_attr_t) * n, KM_SLEEP);
usr/src/uts/common/io/ib/clients/ibd/ibd_cm.c
1283
chan->rx_bufs = kmem_zalloc(rc_rx_bufs_sz, KM_SLEEP);
usr/src/uts/common/io/ib/clients/ibd/ibd_cm.c
1286
sizeof (ibd_rwqe_t), KM_SLEEP);
usr/src/uts/common/io/ib/clients/ibd/ibd_cm.c
1805
state->rc_tx_mr_bufs = kmem_zalloc(mem_size, KM_SLEEP);
usr/src/uts/common/io/ib/clients/ibd/ibd_cm.c
1821
sizeof (ibd_rc_tx_largebuf_t), KM_SLEEP);
usr/src/uts/common/io/ib/clients/ibd/ibd_cm.c
1885
chan->tx_mr_bufs = kmem_zalloc(mem_attr.mr_len, KM_SLEEP);
usr/src/uts/common/io/ib/clients/ibd/ibd_cm.c
1925
sizeof (ibd_swqe_t), KM_SLEEP);
usr/src/uts/common/io/ib/clients/ibd/ibd_cm.c
2392
p = kmem_alloc(sizeof (*p), KM_SLEEP);
usr/src/uts/common/io/ib/clients/ibd/ibd_cm.c
2710
hello_ack_msg = kmem_zalloc(sizeof (ibd_rc_msg_hello_t), KM_SLEEP);
usr/src/uts/common/io/ib/clients/ibd/ibd_cm.c
584
chan = kmem_zalloc(sizeof (ibd_rc_chan_t), KM_SLEEP);
usr/src/uts/common/io/ib/clients/ibd/ibd_cm.c
920
state->rc_srq_rx_bufs = kmem_zalloc(rc_rx_bufs_sz, KM_SLEEP);
usr/src/uts/common/io/ib/clients/ibd/ibd_cm.c
923
sizeof (ibd_rwqe_t), KM_SLEEP);
usr/src/uts/common/io/ib/clients/iser/iser.c
118
iser_state = kmem_zalloc(sizeof (iser_state_t), KM_SLEEP);
usr/src/uts/common/io/ib/clients/iser/iser_cm.c
176
iser_conn = kmem_zalloc(sizeof (iser_conn_t), KM_SLEEP);
usr/src/uts/common/io/ib/clients/iser/iser_ib.c
111
iser_state, NULL, KM_SLEEP);
usr/src/uts/common/io/ib/clients/iser/iser_ib.c
1284
hca = (iser_hca_t *)kmem_zalloc(sizeof (iser_hca_t), KM_SLEEP);
usr/src/uts/common/io/ib/clients/iser/iser_ib.c
1663
is_sbind = kmem_zalloc(sizeof (iser_sbind_t), KM_SLEEP);
usr/src/uts/common/io/ib/clients/iser/iser_ib.c
474
chan = kmem_zalloc(sizeof (iser_chan_t), KM_SLEEP);
usr/src/uts/common/io/ib/clients/iser/iser_idm.c
158
iser_conn = kmem_zalloc(sizeof (iser_conn_t), KM_SLEEP);
usr/src/uts/common/io/ib/clients/iser/iser_idm.c
324
iser_svc = kmem_zalloc(sizeof (iser_svc_t), KM_SLEEP);
usr/src/uts/common/io/ib/clients/iser/iser_resource.c
347
result = kmem_zalloc(sizeof (*result), KM_SLEEP);
usr/src/uts/common/io/ib/clients/iser/iser_resource.c
74
NULL, hca, NULL, KM_SLEEP);
usr/src/uts/common/io/ib/clients/iser/iser_resource.c
84
NULL, hca, NULL, KM_SLEEP);
usr/src/uts/common/io/ib/clients/of/sol_ofs/sol_cma.c
1539
cma_listenp = kmem_zalloc(sizeof (sol_cma_glbl_listen_t), KM_SLEEP);
usr/src/uts/common/io/ib/clients/of/sol_ofs/sol_cma.c
1654
event_arg = kmem_zalloc(sizeof (cma_event_async_arg_t), KM_SLEEP);
usr/src/uts/common/io/ib/clients/of/sol_ofs/sol_cma.c
1665
conn_param->private_data_len, KM_SLEEP);
usr/src/uts/common/io/ib/clients/of/sol_ofs/sol_cma.c
1678
ud_paramp->private_data_len, KM_SLEEP);
usr/src/uts/common/io/ib/clients/of/sol_ofs/sol_cma.c
1883
chanp = kmem_zalloc(sizeof (sol_cma_chan_t), KM_SLEEP);
usr/src/uts/common/io/ib/clients/of/sol_ofs/sol_cma.c
954
KM_SLEEP);
usr/src/uts/common/io/ib/clients/of/sol_ofs/sol_ib_cma.c
1016
args.oc_priv_data = kmem_zalloc(SOL_REQ_PRIV_DATA_SZ, KM_SLEEP);
usr/src/uts/common/io/ib/clients/of/sol_ofs/sol_ib_cma.c
1113
attr.ud_priv_data = kmem_zalloc(attr.ud_priv_data_len, KM_SLEEP);
usr/src/uts/common/io/ib/clients/of/sol_ofs/sol_ib_cma.c
1184
devp = kmem_zalloc(sizeof (ibcma_dev_t), KM_SLEEP);
usr/src/uts/common/io/ib/clients/of/sol_ofs/sol_ib_cma.c
1260
ibchanp->chan_pathp = kmem_zalloc(ibchanp->chan_path_size, KM_SLEEP);
usr/src/uts/common/io/ib/clients/of/sol_ofs/sol_ib_cma.c
1289
ibchanp->chan_numpaths, KM_SLEEP);
usr/src/uts/common/io/ib/clients/of/sol_ofs/sol_ib_cma.c
1313
dst_addrp = kmem_zalloc(sizeof (ibt_ip_addr_t), KM_SLEEP);
usr/src/uts/common/io/ib/clients/of/sol_ofs/sol_ib_cma.c
1498
ud_paramp->private_data = kmem_zalloc(cm_privlen, KM_SLEEP);
usr/src/uts/common/io/ib/clients/of/sol_ofs/sol_ib_cma.c
1576
dump_priv = kmem_zalloc(SOL_REQ_PRIV_DATA_SZ, KM_SLEEP);
usr/src/uts/common/io/ib/clients/of/sol_ofs/sol_ib_cma.c
1612
KM_SLEEP);
usr/src/uts/common/io/ib/clients/of/sol_ofs/sol_ib_cma.c
1636
KM_SLEEP);
usr/src/uts/common/io/ib/clients/of/sol_ofs/sol_ib_cma.c
1737
KM_SLEEP);
usr/src/uts/common/io/ib/clients/of/sol_ofs/sol_ib_cma.c
1762
paramp->private_data_len, KM_SLEEP);
usr/src/uts/common/io/ib/clients/of/sol_ofs/sol_ib_cma.c
1895
paramp->private_data_len, KM_SLEEP);
usr/src/uts/common/io/ib/clients/of/sol_ofs/sol_ib_cma.c
2433
KM_SLEEP);
usr/src/uts/common/io/ib/clients/of/sol_ofs/sol_ib_cma.c
2441
ibchanp->chan_path_size, KM_SLEEP);
usr/src/uts/common/io/ib/clients/of/sol_ofs/sol_ib_cma.c
2521
sizeof (ibcma_dev_t), KM_SLEEP);
usr/src/uts/common/io/ib/clients/of/sol_ofs/sol_ib_cma.c
418
KM_SLEEP);
usr/src/uts/common/io/ib/clients/of/sol_ofs/sol_ib_cma.c
452
KM_SLEEP);
usr/src/uts/common/io/ib/clients/of/sol_ofs/sol_ib_cma.c
660
SOL_REP_PRIV_DATA_SZ, KM_SLEEP);
usr/src/uts/common/io/ib/clients/of/sol_ofs/sol_ib_cma.c
688
SOL_REP_PRIV_DATA_SZ, KM_SLEEP);
usr/src/uts/common/io/ib/clients/of/sol_ofs/sol_ib_cma.c
735
KM_SLEEP);
usr/src/uts/common/io/ib/clients/of/sol_ofs/sol_ib_cma.c
891
ibmcastp = kmem_zalloc(sizeof (ibcma_mcast_t), KM_SLEEP);
usr/src/uts/common/io/ib/clients/of/sol_ofs/sol_ib_cma.c
936
mcg_infop = kmem_zalloc(sizeof (ibt_mcg_info_t), KM_SLEEP);
usr/src/uts/common/io/ib/clients/of/sol_ofs/sol_kverbs.c
210
device = kmem_alloc(sizeof (ib_device_t), KM_SLEEP);
usr/src/uts/common/io/ib/clients/of/sol_ofs/sol_ofs_debug_util.c
106
dbg_buf = kmem_zalloc(sol_ofs_debug_buf_size, KM_SLEEP);
usr/src/uts/common/io/ib/clients/of/sol_ofs/sol_ofs_gen_util.c
56
KM_SLEEP));
usr/src/uts/common/io/ib/clients/of/sol_ucma/sol_ucma.c
1487
mcastp = kmem_zalloc(sizeof (sol_ucma_mcast_t), KM_SLEEP);
usr/src/uts/common/io/ib/clients/of/sol_ucma/sol_ucma.c
1664
ucma_evt = kmem_zalloc(sizeof (sol_ucma_event_t), KM_SLEEP);
usr/src/uts/common/io/ib/clients/of/sol_ucma/sol_ucma.c
1771
new_file = kmem_zalloc(sizeof (sol_ucma_file_t), KM_SLEEP);
usr/src/uts/common/io/ib/clients/of/sol_ucma/sol_ucma.c
1794
KM_SLEEP);
usr/src/uts/common/io/ib/clients/of/sol_ucma/sol_ucma.c
1808
new_chanp = kmem_zalloc(sizeof (sol_ucma_chan_t), KM_SLEEP);
usr/src/uts/common/io/ib/clients/of/sol_umad/sol_umad.c
1239
ibmf_info = kmem_zalloc(sizeof (struct ibmf_reg_info), KM_SLEEP);
usr/src/uts/common/io/ib/clients/of/sol_umad/sol_umad.c
1276
entry = kmem_zalloc(sizeof (llist_head_t), KM_SLEEP);
usr/src/uts/common/io/ib/clients/of/sol_umad/sol_umad.c
1453
uctx = kmem_zalloc(sizeof (umad_uctx_t), KM_SLEEP);
usr/src/uts/common/io/ib/clients/of/sol_umad/sol_umad.c
1927
umad_ctx = kmem_zalloc(sizeof (struct umad_send) + len, KM_SLEEP);
usr/src/uts/common/io/ib/clients/of/sol_umad/sol_umad.c
2332
agent = kmem_zalloc(sizeof (umad_agent_t), KM_SLEEP);
usr/src/uts/common/io/ib/clients/of/sol_umad/sol_umad.c
520
kmem_zalloc(sizeof (umad_port_info_t) * hca->hca_nports, KM_SLEEP);
usr/src/uts/common/io/ib/clients/of/sol_umad/sol_umad.c
592
KM_SLEEP);
usr/src/uts/common/io/ib/clients/of/sol_uverbs/sol_uverbs.c
258
sizeof (sol_uverbs_hca_t), KM_SLEEP);
usr/src/uts/common/io/ib/clients/of/sol_uverbs/sol_uverbs.c
2684
uctxt = kmem_zalloc(sizeof (uverbs_uctxt_uobj_t), KM_SLEEP);
usr/src/uts/common/io/ib/clients/rds/rdsib.c
159
rdsib_statep = kmem_zalloc(sizeof (rds_state_t), KM_SLEEP);
usr/src/uts/common/io/ib/clients/rds/rdsib_buf.c
234
KM_SLEEP);
usr/src/uts/common/io/ib/clients/rds/rdsib_buf.c
446
KM_SLEEP);
usr/src/uts/common/io/ib/clients/rds/rdsib_buf.c
449
ack_addr = (uintptr_t)kmem_zalloc(sizeof (uintptr_t), KM_SLEEP);
usr/src/uts/common/io/ib/clients/rds/rdsib_debug.c
94
rds_debug_buf = (char *)kmem_alloc(rds_debug_buf_size, KM_SLEEP);
usr/src/uts/common/io/ib/clients/rds/rdsib_ep.c
1234
newp = kmem_zalloc(sizeof (rds_session_t), KM_SLEEP);
usr/src/uts/common/io/ib/clients/rds/rdsib_ep.c
1597
npkts, KM_SLEEP);
usr/src/uts/common/io/ib/clients/rds/rdsib_ep.c
1821
KM_SLEEP);
usr/src/uts/common/io/ib/clients/rds/rdsib_ib.c
220
hcap = (rds_hca_t *)kmem_zalloc(sizeof (rds_hca_t), KM_SLEEP);
usr/src/uts/common/io/ib/clients/rds/rdsib_ib.c
804
KM_SLEEP);
usr/src/uts/common/io/ib/clients/rds/rdsib_sc.c
136
KM_SLEEP);
usr/src/uts/common/io/ib/clients/rds/rdsib_sc.c
138
sizeof (rds_path_record_t), KM_SLEEP);
usr/src/uts/common/io/ib/clients/rds/rdsib_sc.c
164
sizeof (rds_path_record_t), KM_SLEEP);
usr/src/uts/common/io/ib/clients/rds/rdssubr.c
162
sizeof (rds_bf_t), KM_SLEEP);
usr/src/uts/common/io/ib/clients/rds/rdssubr.c
186
rds = kmem_cache_alloc(rds_alloc_cache, KM_SLEEP);
usr/src/uts/common/io/ib/clients/rdsv3/af_rds.c
1017
rdsv3_rdma_dwp = kmem_zalloc(sizeof (rdsv3_delayed_work_t), KM_SLEEP);
usr/src/uts/common/io/ib/clients/rdsv3/bind.c
126
kmem_zalloc(sizeof (struct rdsv3_ip_bucket), KM_SLEEP);
usr/src/uts/common/io/ib/clients/rdsv3/connection.c
507
buffer = kmem_zalloc(item_len + 8, KM_SLEEP);
usr/src/uts/common/io/ib/clients/rdsv3/ib.c
443
sizeof (struct rdsv3_ib_statistics), KM_SLEEP);
usr/src/uts/common/io/ib/clients/rdsv3/ib_rdma.c
399
KM_SLEEP);
usr/src/uts/common/io/ib/clients/rdsv3/ib_send.c
947
KM_SLEEP);
usr/src/uts/common/io/ib/clients/rdsv3/rds_recv.c
490
KM_SLEEP);
usr/src/uts/common/io/ib/clients/rdsv3/rds_recv.c
596
sin = kmem_alloc(sizeof (struct sockaddr_in), KM_SLEEP);
usr/src/uts/common/io/ib/clients/rdsv3/rdsv3_debug.c
93
rdsv3_debug_buf = (char *)kmem_alloc(rdsv3_debug_buf_size, KM_SLEEP);
usr/src/uts/common/io/ib/clients/rdsv3/rdsv3_impl.c
1123
bp = kmem_alloc(bufsz, KM_SLEEP);
usr/src/uts/common/io/ib/clients/rdsv3/rdsv3_impl.c
1186
iov = kmem_alloc(num * sizeof (ibt_iov_t), KM_SLEEP);
usr/src/uts/common/io/ib/clients/rdsv3/rdsv3_impl.c
1187
sgl = kmem_zalloc((num * 2) * sizeof (ibt_wr_ds_t), KM_SLEEP);
usr/src/uts/common/io/ib/clients/rdsv3/rdsv3_impl.c
1273
KM_SLEEP);
usr/src/uts/common/io/ib/clients/rdsv3/rdsv3_impl.c
154
buf = kmem_alloc(bufsize, KM_SLEEP);
usr/src/uts/common/io/ib/clients/rdsv3/rdsv3_impl.c
222
rbuf = kmem_alloc(rbufsize, KM_SLEEP);
usr/src/uts/common/io/ib/clients/rdsv3/rdsv3_impl.c
356
buf = kmem_alloc(bufsize, KM_SLEEP);
usr/src/uts/common/io/ib/clients/rdsv3/rdsv3_impl.c
436
rbuf = kmem_alloc(rbufsize, KM_SLEEP);
usr/src/uts/common/io/ib/clients/rdsv3/rdsv3_impl.c
854
sk = kmem_cache_alloc(rdsv3_alloc_cache, KM_SLEEP);
usr/src/uts/common/io/ib/clients/rdsv3/rdsv3_impl.c
867
sk->sk_sleep = kmem_zalloc(sizeof (rdsv3_wait_queue_t), KM_SLEEP);
usr/src/uts/common/io/ib/clients/rdsv3/rdsv3_sc.c
134
KM_SLEEP);
usr/src/uts/common/io/ib/clients/rdsv3/rdsv3_sc.c
136
sizeof (rds_path_record_t), KM_SLEEP);
usr/src/uts/common/io/ib/clients/rdsv3/rdsv3_sc.c
162
sizeof (rds_path_record_t), KM_SLEEP);
usr/src/uts/common/io/ib/clients/rdsv3/stats.c
175
sizeof (struct rdsv3_statistics), KM_SLEEP);
usr/src/uts/common/io/ib/ibnex/ibnex.c
1151
device_name = i_ddi_strdup(devname, KM_SLEEP);
usr/src/uts/common/io/ib/ibnex/ibnex.c
1855
- temp) + 1, KM_SLEEP);
usr/src/uts/common/io/ib/ibnex/ibnex.c
2052
node_addr = (char *)kmem_alloc(len, KM_SLEEP);
usr/src/uts/common/io/ib/ibnex/ibnex.c
2419
port_gids = kmem_zalloc(length, KM_SLEEP);
usr/src/uts/common/io/ib/ibnex/ibnex.c
2463
srv_id = kmem_zalloc(length, KM_SLEEP);
usr/src/uts/common/io/ib/ibnex/ibnex.c
2529
temp = kmem_alloc(IBNEX_MAX_COMPAT_PROP_SZ, KM_SLEEP);
usr/src/uts/common/io/ib/ibnex/ibnex.c
2657
guid = kmem_alloc(sizeof (ib_guid_t), KM_SLEEP);
usr/src/uts/common/io/ib/ibnex/ibnex.c
2833
valid = kmem_zalloc(nservices * sizeof (int), KM_SLEEP);
usr/src/uts/common/io/ib/ibnex/ibnex.c
2891
kmem_zalloc((ncomm_svcs * sizeof (char *)), KM_SLEEP);
usr/src/uts/common/io/ib/ibnex/ibnex.c
2898
kmem_zalloc((ncomm_svcs * sizeof (char *)), KM_SLEEP);
usr/src/uts/common/io/ib/ibnex/ibnex.c
2905
kmem_zalloc((ncomm_svcs * sizeof (char *)), KM_SLEEP);
usr/src/uts/common/io/ib/ibnex/ibnex.c
2918
comm_svcp[i] = kmem_alloc(len + 1, KM_SLEEP);
usr/src/uts/common/io/ib/ibnex/ibnex.c
3192
KM_SLEEP);
usr/src/uts/common/io/ib/ibnex/ibnex.c
3336
temp = kmem_alloc(IBNEX_MAX_IBPORT_COMPAT_PROP_SZ, KM_SLEEP);
usr/src/uts/common/io/ib/ibnex/ibnex.c
3501
node_addr = kmem_zalloc(pnam_len, KM_SLEEP);
usr/src/uts/common/io/ib/ibnex/ibnex.c
3522
unit_addr = (char *)kmem_alloc(len, KM_SLEEP);
usr/src/uts/common/io/ib/ibnex/ibnex.c
3557
node_data = kmem_zalloc(sizeof (ibnex_node_data_t), KM_SLEEP);
usr/src/uts/common/io/ib/ibnex/ibnex.c
3582
kmem_zalloc(strlen(devi_name) + 1, KM_SLEEP);
usr/src/uts/common/io/ib/ibnex/ibnex.c
3797
sizeof (ib_dm_ioc_ctrl_profile_t), KM_SLEEP);
usr/src/uts/common/io/ib/ibnex/ibnex_hca.c
450
device_name = i_ddi_strdup(devname, KM_SLEEP);
usr/src/uts/common/io/ib/ibnex/ibnex_hca.c
490
device_name = i_ddi_strdup(devname, KM_SLEEP);
usr/src/uts/common/io/ib/ibnex/ibnex_ioctl.c
1180
(void) nvlist_alloc(&nvl, 0, KM_SLEEP);
usr/src/uts/common/io/ib/ibnex/ibnex_ioctl.c
1357
if (nvlist_pack(nvl, buf, sz, NV_ENCODE_NATIVE, KM_SLEEP)) {
usr/src/uts/common/io/ib/ibnex/ibnex_ioctl.c
1782
ap_id = i_ddi_strdup(apid, KM_SLEEP);
usr/src/uts/common/io/ib/ibnex/ibnex_ioctl.c
2302
service_name = kmem_alloc((nsvcs + 1) * sizeof (char *), KM_SLEEP);
usr/src/uts/common/io/ib/ibnex/ibnex_ioctl.c
2309
service_name[i] = kmem_alloc(strlen(service) + 1, KM_SLEEP);
usr/src/uts/common/io/ib/ibnex/ibnex_ioctl.c
2336
service_name = kmem_alloc((nsvcs + 1) * sizeof (char *), KM_SLEEP);
usr/src/uts/common/io/ib/ibnex/ibnex_ioctl.c
2343
service_name[i] = kmem_alloc(strlen(service) + 1, KM_SLEEP);
usr/src/uts/common/io/ib/ibnex/ibnex_ioctl.c
2369
service_name = kmem_alloc((nsvcs + 1) * sizeof (char *), KM_SLEEP);
usr/src/uts/common/io/ib/ibnex/ibnex_ioctl.c
2376
service_name[i] = kmem_alloc(strlen(service) + 1, KM_SLEEP);
usr/src/uts/common/io/ib/ibnex/ibnex_ioctl.c
2451
service_name = kmem_alloc((nsvcs - 1) * sizeof (char *), KM_SLEEP);
usr/src/uts/common/io/ib/ibnex/ibnex_ioctl.c
2530
service_name = kmem_alloc((nsvcs - 1) * sizeof (char *), KM_SLEEP);
usr/src/uts/common/io/ib/ibnex/ibnex_ioctl.c
2612
service_name = kmem_alloc((nsvcs - 1) * sizeof (char *), KM_SLEEP);
usr/src/uts/common/io/ib/ibnex/ibnex_ioctl.c
2980
sizeof (ibnex_ctl_query_hca_32_t), KM_SLEEP);
usr/src/uts/common/io/ib/ibnex/ibnex_ioctl.c
2997
KM_SLEEP);
usr/src/uts/common/io/ib/ibnex/ibnex_ioctl.c
3013
hca_attr = kmem_zalloc(sizeof (ibt_hca_attr_t), KM_SLEEP);
usr/src/uts/common/io/ib/ibnex/ibnex_ioctl.c
3014
hca_device_path = kmem_zalloc(MAXPATHLEN, KM_SLEEP);
usr/src/uts/common/io/ib/ibnex/ibnex_ioctl.c
3150
KM_SLEEP);
usr/src/uts/common/io/ib/ibnex/ibnex_ioctl.c
3155
sizeof (ibnex_ctl_query_hca_port_32_t), KM_SLEEP);
usr/src/uts/common/io/ib/ibnex/ibnex_ioctl.c
324
apid_n = kmem_zalloc(apid_len, KM_SLEEP);
usr/src/uts/common/io/ib/ibnex/ibnex_ioctl.c
632
service = kmem_zalloc(ioc.bufsiz + 1, KM_SLEEP);
usr/src/uts/common/io/ib/ibnex/ibnex_ioctl.c
659
service = kmem_zalloc(ioc.bufsiz + 1, KM_SLEEP);
usr/src/uts/common/io/ib/ibnex/ibnex_ioctl.c
920
devnm = kmem_alloc(MAXNAMELEN + 1, KM_SLEEP);
usr/src/uts/common/io/ib/ibtl/ibtl_chan.c
1048
ud_destp = kmem_alloc(sizeof (*ud_destp), KM_SLEEP);
usr/src/uts/common/io/ib/ibtl/ibtl_chan.c
650
ibc_send_cq = kmem_alloc(sizeof (ibc_cq_hdl_t) << log2, KM_SLEEP);
usr/src/uts/common/io/ib/ibtl/ibtl_chan.c
651
ibc_recv_cq = kmem_alloc(sizeof (ibc_cq_hdl_t) << log2, KM_SLEEP);
usr/src/uts/common/io/ib/ibtl/ibtl_chan.c
652
ibc_qp_hdl_p = kmem_alloc(sizeof (ibc_qp_hdl_t) << log2, KM_SLEEP);
usr/src/uts/common/io/ib/ibtl/ibtl_chan.c
655
ud_chan_p[i] = kmem_zalloc(sizeof (ibtl_channel_t), KM_SLEEP);
usr/src/uts/common/io/ib/ibtl/ibtl_cm.c
480
p_listp = kmem_zalloc(count * sizeof (ibtl_cm_port_list_t), KM_SLEEP);
usr/src/uts/common/io/ib/ibtl/ibtl_cm.c
706
gidp = kmem_zalloc(count * sizeof (ib_gid_t), KM_SLEEP);
usr/src/uts/common/io/ib/ibtl/ibtl_cq.c
95
ibt_cq = kmem_zalloc(sizeof (struct ibtl_cq_s), KM_SLEEP);
usr/src/uts/common/io/ib/ibtl/ibtl_handlers.c
1514
KM_SLEEP);
usr/src/uts/common/io/ib/ibtl/ibtl_handlers.c
1543
KM_SLEEP);
usr/src/uts/common/io/ib/ibtl/ibtl_handlers.c
1571
KM_SLEEP);
usr/src/uts/common/io/ib/ibtl/ibtl_handlers.c
1603
KM_SLEEP);
usr/src/uts/common/io/ib/ibtl/ibtl_handlers.c
1881
noticep = kmem_zalloc(sizeof (*noticep), KM_SLEEP);
usr/src/uts/common/io/ib/ibtl/ibtl_handlers.c
1909
noticep = kmem_zalloc(sizeof (*noticep), KM_SLEEP);
usr/src/uts/common/io/ib/ibtl/ibtl_handlers.c
2019
KM_SLEEP);
usr/src/uts/common/io/ib/ibtl/ibtl_handlers.c
537
mgrp = kmem_alloc(sizeof (*mgrp), KM_SLEEP);
usr/src/uts/common/io/ib/ibtl/ibtl_handlers.c
560
mgrp = kmem_alloc(sizeof (*mgrp), KM_SLEEP);
usr/src/uts/common/io/ib/ibtl/ibtl_hca.c
1042
p1 = kmem_zalloc(len, KM_SLEEP);
usr/src/uts/common/io/ib/ibtl/ibtl_hca.c
147
hca_infop = kmem_zalloc(sizeof (ibtl_hca_t), KM_SLEEP);
usr/src/uts/common/io/ib/ibtl/ibtl_hca.c
349
hca_listp = kmem_alloc(hca_count * sizeof (ib_guid_t), KM_SLEEP);
usr/src/uts/common/io/ib/ibtl/ibtl_hca.c
789
p1 = kmem_zalloc(len, KM_SLEEP);
usr/src/uts/common/io/ib/ibtl/ibtl_hca.c
856
p1 = kmem_zalloc(len, KM_SLEEP);
usr/src/uts/common/io/ib/ibtl/ibtl_hca.c
943
sp1 = kmem_zalloc(len, KM_SLEEP);
usr/src/uts/common/io/ib/ibtl/ibtl_ibnex.c
116
(void) nvlist_alloc(&nvl, 0, KM_SLEEP);
usr/src/uts/common/io/ib/ibtl/ibtl_ibnex.c
119
ret_apid = kmem_alloc(IBTL_IBNEX_APID_LEN, KM_SLEEP);
usr/src/uts/common/io/ib/ibtl/ibtl_ibnex.c
263
if (nvlist_pack(nvl, buffer, bufsiz, NV_ENCODE_NATIVE, KM_SLEEP)) {
usr/src/uts/common/io/ib/ibtl/ibtl_ibnex.c
451
*buffer = kmem_alloc(*bufsiz, KM_SLEEP);
usr/src/uts/common/io/ib/ibtl/ibtl_impl.c
1138
pks = kmem_zalloc(hca_devp->hd_hca_port_ks_info_len, KM_SLEEP);
usr/src/uts/common/io/ib/ibtl/ibtl_impl.c
307
clntp = kmem_zalloc(sizeof (ibtl_clnt_t), KM_SLEEP);
usr/src/uts/common/io/ib/ibtl/ibtl_impl.c
586
(nports - 1) * sizeof (ibtl_async_port_event_t), KM_SLEEP);
usr/src/uts/common/io/ib/ibtl/ibtl_qp.c
155
chanp = kmem_zalloc(sizeof (*chanp), KM_SLEEP);
usr/src/uts/common/io/ib/ibtl/ibtl_qp.c
364
chanp = kmem_zalloc(sizeof (*chanp), KM_SLEEP);
usr/src/uts/common/io/ib/ibtl/ibtl_srq.c
58
ibt_srq = kmem_zalloc(sizeof (struct ibtl_srq_s), KM_SLEEP);
usr/src/uts/common/io/ib/ibtl/ibtl_util.c
187
ibtf_debug_buf = (char *)kmem_alloc(ibtf_debug_buf_size, KM_SLEEP);
usr/src/uts/common/io/ib/mgt/ibcm/ibcm_arp.c
239
nparts * sizeof (ibcm_arp_ip_t), KM_SLEEP);
usr/src/uts/common/io/ib/mgt/ibcm/ibcm_arp.c
327
lifcp->lifc_buf = kmem_zalloc(*bufsizep, KM_SLEEP);
usr/src/uts/common/io/ib/mgt/ibcm/ibcm_arp.c
95
KM_SLEEP);
usr/src/uts/common/io/ib/mgt/ibcm/ibcm_impl.c
1155
(nports - 1) * sizeof (ibcm_port_info_t), KM_SLEEP);
usr/src/uts/common/io/ib/mgt/ibcm/ibcm_impl.c
1617
flow1 = kmem_alloc(sizeof (*flow1), KM_SLEEP);
usr/src/uts/common/io/ib/mgt/ibcm/ibcm_impl.c
1950
(num_failed_sgids - 1) * sizeof (ib_gid_t), KM_SLEEP);
usr/src/uts/common/io/ib/mgt/ibcm/ibcm_impl.c
2418
pup = kmem_alloc(sizeof (ibcm_port_up_t), KM_SLEEP);
usr/src/uts/common/io/ib/mgt/ibcm/ibcm_path.c
1420
mpr_req = kmem_zalloc(template_len, KM_SLEEP);
usr/src/uts/common/io/ib/mgt/ibcm/ibcm_path.c
213
path_cachep = kmem_zalloc(cache_size * sizeof (*path_cachep), KM_SLEEP);
usr/src/uts/common/io/ib/mgt/ibcm/ibcm_path.c
2769
mpr_req = kmem_zalloc(template_len, KM_SLEEP);
usr/src/uts/common/io/ib/mgt/ibcm/ibcm_path.c
3417
mpr_req = kmem_zalloc(template_len, KM_SLEEP);
usr/src/uts/common/io/ib/mgt/ibcm/ibcm_path.c
3803
dinfo = kmem_zalloc(len, KM_SLEEP);
usr/src/uts/common/io/ib/mgt/ibcm/ibcm_path.c
3860
KM_SLEEP);
usr/src/uts/common/io/ib/mgt/ibcm/ibcm_path.c
3863
sizeof (ibt_path_ip_src_t) * max_paths, KM_SLEEP);
usr/src/uts/common/io/ib/mgt/ibcm/ibcm_path.c
3941
sizeof (ibt_path_info_t) * num_path, KM_SLEEP);
usr/src/uts/common/io/ib/mgt/ibcm/ibcm_path.c
3950
sizeof (ibt_path_ip_src_t) * num_path, KM_SLEEP);
usr/src/uts/common/io/ib/mgt/ibcm/ibcm_path.c
4119
int sleep_flag = ((func == NULL) ? KM_SLEEP : KM_NOSLEEP);
usr/src/uts/common/io/ib/mgt/ibcm/ibcm_path.c
432
int sleep_flag = ((func == NULL) ? KM_SLEEP : KM_NOSLEEP);
usr/src/uts/common/io/ib/mgt/ibcm/ibcm_path.c
4445
mpr_req = kmem_zalloc(template_len, KM_SLEEP);
usr/src/uts/common/io/ib/mgt/ibcm/ibcm_path.c
728
dinfo = kmem_zalloc(len, KM_SLEEP);
usr/src/uts/common/io/ib/mgt/ibcm/ibcm_path.c
745
KM_SLEEP);
usr/src/uts/common/io/ib/mgt/ibcm/ibcm_path.c
859
sizeof (ibt_path_info_t) * num_path, KM_SLEEP);
usr/src/uts/common/io/ib/mgt/ibcm/ibcm_sm.c
6239
priv_data = kmem_zalloc(IBT_MAX_PRIV_DATA_SZ, KM_SLEEP);
usr/src/uts/common/io/ib/mgt/ibcm/ibcm_sm.c
6271
kmem_zalloc(IBCM_MSG_SIZE, KM_SLEEP);
usr/src/uts/common/io/ib/mgt/ibcm/ibcm_sm.c
6789
priv_data = kmem_zalloc(IBT_MAX_PRIV_DATA_SZ, KM_SLEEP);
usr/src/uts/common/io/ib/mgt/ibcm/ibcm_sm.c
6807
kmem_zalloc(IBCM_MSG_SIZE, KM_SLEEP);
usr/src/uts/common/io/ib/mgt/ibcm/ibcm_sm.c
8013
kmem_zalloc(IBCM_MSG_SIZE, KM_SLEEP);
usr/src/uts/common/io/ib/mgt/ibcm/ibcm_sm.c
996
statep = kmem_zalloc(sizeof (*statep), KM_SLEEP);
usr/src/uts/common/io/ib/mgt/ibcm/ibcm_ti.c
1659
KM_SLEEP);
usr/src/uts/common/io/ib/mgt/ibcm/ibcm_ti.c
2214
kmem_alloc(sizeof (*local_handler_priv), KM_SLEEP);
usr/src/uts/common/io/ib/mgt/ibcm/ibcm_ti.c
2752
sbindp = kmem_zalloc(sizeof (*sbindp), KM_SLEEP);
usr/src/uts/common/io/ib/mgt/ibcm/ibcm_ti.c
3218
hdlp = kmem_alloc(sizeof (*hdlp), KM_SLEEP);
usr/src/uts/common/io/ib/mgt/ibcm/ibcm_ti.c
3219
new = kmem_zalloc(sizeof (*new), KM_SLEEP);
usr/src/uts/common/io/ib/mgt/ibcm/ibcm_ti.c
3297
srv_recp = kmem_zalloc(sizeof (*srv_recp), KM_SLEEP);
usr/src/uts/common/io/ib/mgt/ibcm/ibcm_ti.c
4020
KM_SLEEP);
usr/src/uts/common/io/ib/mgt/ibcm/ibcm_ti.c
4185
KM_SLEEP);
usr/src/uts/common/io/ib/mgt/ibcm/ibcm_ti.c
4721
new = kmem_zalloc(sizeof (ibcm_mcg_list_t), KM_SLEEP);
usr/src/uts/common/io/ib/mgt/ibcm/ibcm_ti.c
4853
int flag = ((func == NULL) ? KM_SLEEP : KM_NOSLEEP);
usr/src/uts/common/io/ib/mgt/ibcm/ibcm_ti.c
5554
KM_SLEEP);
usr/src/uts/common/io/ib/mgt/ibcm/ibcm_ti.c
564
statep = kmem_zalloc(sizeof (ibcm_state_data_t), KM_SLEEP);
usr/src/uts/common/io/ib/mgt/ibcm/ibcm_ti.c
6393
sizeof (ib_gid_t), KM_SLEEP);
usr/src/uts/common/io/ib/mgt/ibcm/ibcm_ti.c
6404
sizeof (ib_gid_t), KM_SLEEP);
usr/src/uts/common/io/ib/mgt/ibcm/ibcm_ti.c
6553
KM_SLEEP);
usr/src/uts/common/io/ib/mgt/ibcm/ibcm_utils.c
1243
svcinfop = kmem_zalloc(sizeof (*svcinfop), KM_SLEEP);
usr/src/uts/common/io/ib/mgt/ibcm/ibcm_utils.c
1332
IBCM_MAD_SIZE, KM_SLEEP);
usr/src/uts/common/io/ib/mgt/ibcm/ibcm_utils.c
1423
entry = kmem_alloc(sizeof (ibcm_qp_list_t), KM_SLEEP);
usr/src/uts/common/io/ib/mgt/ibcm/ibcm_utils.c
1585
sp->conn_trace = kmem_zalloc(sizeof (ibcm_conn_trace_t), KM_SLEEP);
usr/src/uts/common/io/ib/mgt/ibcm/ibcm_utils.c
1590
kmem_zalloc(sp->conn_trace->conn_allocated_trcnt, KM_SLEEP);
usr/src/uts/common/io/ib/mgt/ibcm/ibcm_utils.c
1593
sizeof (tm_diff_type), KM_SLEEP);
usr/src/uts/common/io/ib/mgt/ibcm/ibcm_utils.c
652
ud_statep = kmem_zalloc(sizeof (ibcm_ud_state_data_t), KM_SLEEP);
usr/src/uts/common/io/ib/mgt/ibdm/ibdm.c
1874
KM_SLEEP);
usr/src/uts/common/io/ib/mgt/ibdm/ibdm.c
2032
gid_info = kmem_zalloc(sizeof (ibdm_dp_gidinfo_t), KM_SLEEP);
usr/src/uts/common/io/ib/mgt/ibdm/ibdm.c
2688
gid_info->gl_iou = (ibdm_iou_info_t *)kmem_zalloc(size, KM_SLEEP);
usr/src/uts/common/io/ib/mgt/ibdm/ibdm.c
2970
KM_SLEEP);
usr/src/uts/common/io/ib/mgt/ibdm/ibdm.c
4168
ngid_ents, KM_SLEEP);
usr/src/uts/common/io/ib/mgt/ibdm/ibdm.c
4196
kmem_zalloc(IBDM_MAD_SIZE, KM_SLEEP);
usr/src/uts/common/io/ib/mgt/ibdm/ibdm.c
4324
sizeof (ibdm_gid_t), KM_SLEEP);
usr/src/uts/common/io/ib/mgt/ibdm/ibdm.c
4525
sizeof (ibdm_dp_gidinfo_t), KM_SLEEP);
usr/src/uts/common/io/ib/mgt/ibdm/ibdm.c
4791
sizeof (ibdm_port_attr_t), KM_SLEEP);
usr/src/uts/common/io/ib/mgt/ibdm/ibdm.c
4837
KM_SLEEP);
usr/src/uts/common/io/ib/mgt/ibdm/ibdm.c
4931
out_hca = (ibdm_hca_list_t *)kmem_alloc(len, KM_SLEEP);
usr/src/uts/common/io/ib/mgt/ibdm/ibdm.c
5320
out_ioc = kmem_alloc(sizeof (ibdm_ioc_info_t), KM_SLEEP);
usr/src/uts/common/io/ib/mgt/ibdm/ibdm.c
5896
sizeof (ibdm_saa_event_arg_t), KM_SLEEP);
usr/src/uts/common/io/ib/mgt/ibdm/ibdm.c
6377
new = kmem_zalloc(sizeof (ibdm_gid_t), KM_SLEEP);
usr/src/uts/common/io/ib/mgt/ibdm/ibdm.c
663
pkey_tbl = kmem_zalloc(npkeys * sizeof (ibdm_pkey_tbl_t), KM_SLEEP);
usr/src/uts/common/io/ib/mgt/ibdm/ibdm.c
6652
tmp = kmem_zalloc(sizeof (ibdm_gid_t), KM_SLEEP);
usr/src/uts/common/io/ib/mgt/ibdm/ibdm.c
758
port->pa_npkeys * sizeof (ibdm_pkey_tbl_t), KM_SLEEP);
usr/src/uts/common/io/ib/mgt/ibdm/ibdm.c
919
port->pa_npkeys * sizeof (ibdm_pkey_tbl_t), KM_SLEEP);
usr/src/uts/common/io/ib/mgt/ibdm/ibdm.c
956
kmem_alloc(sizeof (ibt_hca_attr_t), KM_SLEEP);
usr/src/uts/common/io/ib/mgt/ibdm/ibdm.c
973
kmem_zalloc((sizeof (ibdm_hca_list_t)), KM_SLEEP);
usr/src/uts/common/io/ib/mgt/ibdm/ibdm.c
975
(sizeof (ibdm_port_attr_t) * hca_attr->hca_nports), KM_SLEEP);
usr/src/uts/common/io/ib/mgt/ibdm/ibdm.c
991
sizeof (ibdm_port_attr_t), KM_SLEEP);
usr/src/uts/common/io/ib/mgt/ibdma/ibdma.c
1003
kmem_zalloc(sizeof (ib_dm_srv_t) * svc_entries, KM_SLEEP);
usr/src/uts/common/io/ib/mgt/ibdma/ibdma.c
1018
hdl = kmem_alloc(sizeof (*hdl), KM_SLEEP);
usr/src/uts/common/io/ib/mgt/ibdma/ibdma.c
116
ibdma = kmem_zalloc(sizeof (*ibdma), KM_SLEEP);
usr/src/uts/common/io/ib/mgt/ibdma/ibdma.c
1185
sizeof (ib_dm_srv_t), KM_SLEEP);
usr/src/uts/common/io/ib/mgt/ibdma/ibdma.c
425
(hca_attr.hca_nports-1)*sizeof (ibdma_port_t), KM_SLEEP);
usr/src/uts/common/io/ib/mgt/ibdma/ibdma.c
580
kmem_zalloc(IBDMA_MAD_SIZE, KM_SLEEP);
usr/src/uts/common/io/ib/mgt/ibmf/ibmf.c
644
km_flags = (flag == IBMF_ALLOC_SLEEP) ? KM_SLEEP : KM_NOSLEEP;
usr/src/uts/common/io/ib/mgt/ibmf/ibmf_impl.c
1205
ibmf_clientp = kmem_zalloc(sizeof (ibmf_client_t), KM_SLEEP);
usr/src/uts/common/io/ib/mgt/ibmf/ibmf_impl.c
1608
tqpp = (ibmf_qp_t *)kmem_zalloc(sizeof (ibmf_qp_t), KM_SLEEP);
usr/src/uts/common/io/ib/mgt/ibmf/ibmf_impl.c
1951
if (km_flags == KM_SLEEP) {
usr/src/uts/common/io/ib/mgt/ibmf/ibmf_impl.c
2414
(flags & IBMF_ALLOC_SLEEP) ? KM_SLEEP : KM_NOSLEEP);
usr/src/uts/common/io/ib/mgt/ibmf/ibmf_impl.c
2881
(block == B_TRUE ? KM_SLEEP : KM_NOSLEEP));
usr/src/uts/common/io/ib/mgt/ibmf/ibmf_impl.c
2903
(block == B_TRUE ? KM_SLEEP : KM_NOSLEEP));
usr/src/uts/common/io/ib/mgt/ibmf/ibmf_impl.c
2943
(block == B_TRUE) ? KM_SLEEP : KM_NOSLEEP);
usr/src/uts/common/io/ib/mgt/ibmf/ibmf_impl.c
444
KM_SLEEP);
usr/src/uts/common/io/ib/mgt/ibmf/ibmf_recv.c
1525
KM_SLEEP);
usr/src/uts/common/io/ib/mgt/ibmf/ibmf_recv.c
1555
KM_SLEEP);
usr/src/uts/common/io/ib/mgt/ibmf/ibmf_recv.c
1556
send_wqep->send_mem = (void *)kmem_zalloc(IBMF_MEM_PER_WQE, KM_SLEEP);
usr/src/uts/common/io/ib/mgt/ibmf/ibmf_saa.c
329
saa_client = kmem_zalloc(sizeof (saa_client_data_t), KM_SLEEP);
usr/src/uts/common/io/ib/mgt/ibmf/ibmf_saa.c
690
KM_SLEEP);
usr/src/uts/common/io/ib/mgt/ibmf/ibmf_saa_events.c
1191
resp_mad_hdr = kmem_zalloc(sizeof (ib_mad_hdr_t), KM_SLEEP);
usr/src/uts/common/io/ib/mgt/ibmf/ibmf_saa_events.c
1199
msgp->im_msgbufs_recv.im_bufs_cl_hdr_len, KM_SLEEP);
usr/src/uts/common/io/ib/mgt/ibmf/ibmf_saa_events.c
296
trans_info = kmem_zalloc(sizeof (saa_impl_trans_info_t), KM_SLEEP);
usr/src/uts/common/io/ib/mgt/ibmf/ibmf_saa_impl.c
112
saa_statep = kmem_zalloc(sizeof (saa_state_t), KM_SLEEP);
usr/src/uts/common/io/ib/mgt/ibmf/ibmf_saa_impl.c
1701
km_sleep_flag = KM_SLEEP;
usr/src/uts/common/io/ib/mgt/ibmf/ibmf_ud_dest.c
498
ibmf_i_populate_ud_dest_list(cip, KM_SLEEP);
usr/src/uts/common/io/ib/mgt/ibmf/ibmf_wqe.c
1085
(block == B_TRUE ? KM_SLEEP : KM_NOSLEEP));
usr/src/uts/common/io/ib/mgt/ibmf/ibmf_wqe.c
1154
(block == B_TRUE ? KM_SLEEP : KM_NOSLEEP));
usr/src/uts/common/io/ib/mgt/ibmf/ibmf_wqe.c
201
IBMF_MEM_PER_WQE, kmflags == KM_SLEEP ? VM_SLEEP : VM_NOSLEEP);
usr/src/uts/common/io/ib/mgt/ibmf/ibmf_wqe.c
314
kmflags == KM_SLEEP ? VM_SLEEP : VM_NOSLEEP);
usr/src/uts/common/io/ib/mgt/ibmf/ibmf_wqe.c
427
kmflags == KM_SLEEP ? VM_SLEEP : VM_NOSLEEP);
usr/src/uts/common/io/ib/mgt/ibmf/ibmf_wqe.c
538
wqe_mgtp = kmem_zalloc(sizeof (ibmf_wqe_mgt_t), KM_SLEEP);
usr/src/uts/common/io/ib/mgt/ibmf/ibmf_wqe.c
550
kmem_zalloc(wqe_mgtp->wqes_kmem_sz, KM_SLEEP);
usr/src/uts/common/io/ib/mgt/ibmf/ibmf_wqe.c
694
wqe_mgtp = kmem_zalloc(sizeof (ibmf_wqe_mgt_t), KM_SLEEP);
usr/src/uts/common/io/ib/mgt/ibmf/ibmf_wqe.c
703
wqe_mgtp->wqes_kmem = kmem_zalloc(wqe_mgtp->wqes_kmem_sz, KM_SLEEP);
usr/src/uts/common/io/ib/mgt/ibmf/ibmf_wqe.c
89
IBMF_MEM_PER_WQE, kmflags == KM_SLEEP ? VM_SLEEP : VM_NOSLEEP);
usr/src/uts/common/io/idm/idm.c
1967
return (idm_pdu_alloc_common(hdrlen, datalen, KM_SLEEP));
usr/src/uts/common/io/idm/idm.c
2382
kmem_zalloc(idm.idm_taskid_max * sizeof (idm_task_t *), KM_SLEEP);
usr/src/uts/common/io/idm/idm.c
2387
sizeof (idm_buf_t), 8, NULL, NULL, NULL, NULL, NULL, KM_SLEEP);
usr/src/uts/common/io/idm/idm.c
2396
NULL, NULL, NULL, KM_SLEEP);
usr/src/uts/common/io/idm/idm.c
382
is = kmem_zalloc(sizeof (idm_svc_t), KM_SLEEP);
usr/src/uts/common/io/idm/idm_conn_sm.c
271
event_ctx = kmem_zalloc(sizeof (*event_ctx), KM_SLEEP);
usr/src/uts/common/io/idm/idm_impl.c
465
ic = kmem_zalloc(sizeof (idm_conn_t), KM_SLEEP);
usr/src/uts/common/io/idm/idm_impl.c
696
KM_SLEEP);
usr/src/uts/common/io/idm/idm_so.c
1095
so_conn = kmem_zalloc(sizeof (idm_so_conn_t), KM_SLEEP);
usr/src/uts/common/io/idm/idm_so.c
1202
so_svc = kmem_zalloc(sizeof (idm_so_svc_t), KM_SLEEP);
usr/src/uts/common/io/idm/idm_so.c
183
&idm_sotx_pdu_constructor, NULL, NULL, NULL, NULL, KM_SLEEP);
usr/src/uts/common/io/idm/idm_so.c
188
&idm_sorx_pdu_constructor, NULL, NULL, NULL, NULL, KM_SLEEP);
usr/src/uts/common/io/idm/idm_so.c
192
IDM_SO_BUF_CACHE_UB, 8, NULL, NULL, NULL, NULL, NULL, KM_SLEEP);
usr/src/uts/common/io/idm/idm_so.c
2096
pdu->isp_data = kmem_alloc(pdu->isp_datalen, KM_SLEEP);
usr/src/uts/common/io/idm/idm_so.c
2141
pdu = kmem_cache_alloc(idm.idm_sorx_pdu_cache, KM_SLEEP);
usr/src/uts/common/io/idm/idm_so.c
2520
pdu = kmem_cache_alloc(idm.idm_sotx_pdu_cache, KM_SLEEP);
usr/src/uts/common/io/idm/idm_so.c
2722
pdu = kmem_cache_alloc(idm.idm_sotx_pdu_cache, KM_SLEEP);
usr/src/uts/common/io/idm/idm_so.c
442
buf = kmem_alloc(bufsize, KM_SLEEP);
usr/src/uts/common/io/idm/idm_so.c
465
ipaddr = kmem_zalloc(size_ipaddr, KM_SLEEP);
usr/src/uts/common/io/idm/idm_so.c
879
new_hdr = kmem_alloc(pdu->isp_hdrlen, KM_SLEEP);
usr/src/uts/common/io/idm/idm_text.c
1012
itb->itb_mem = kmem_alloc(itb->itb_mem_len, KM_SLEEP);
usr/src/uts/common/io/idm/idm_text.c
1015
new_mem = kmem_alloc(new_mem_len, KM_SLEEP);
usr/src/uts/common/io/idm/idm_text.c
1281
nkey = kmem_zalloc(len, KM_SLEEP);
usr/src/uts/common/io/idm/idm_text.c
1331
str = kmem_alloc(itb.itb_mem_len, KM_SLEEP);
usr/src/uts/common/io/idm/idm_text.c
1358
itb = kmem_zalloc(sizeof (idm_textbuf_t), KM_SLEEP);
usr/src/uts/common/io/idm/idm_text.c
500
binary_array = kmem_alloc(binary_length, KM_SLEEP);
usr/src/uts/common/io/igb/igb_main.c
4538
igb->htable = kmem_alloc(igb->intr_size, KM_SLEEP);
usr/src/uts/common/io/igb/igb_main.c
464
igb = kmem_zalloc(sizeof (igb_t), KM_SLEEP);
usr/src/uts/common/io/igc/igc.c
1257
igc->igc_nucast, KM_SLEEP);
usr/src/uts/common/io/igc/igc.c
1290
igc->igc_nmcast, KM_SLEEP);
usr/src/uts/common/io/igc/igc.c
1292
igc->igc_nmcast, KM_SLEEP);
usr/src/uts/common/io/igc/igc.c
1639
igc = kmem_zalloc(sizeof (igc_t), KM_SLEEP);
usr/src/uts/common/io/igc/igc.c
874
igc->igc_intr_handles = kmem_alloc(igc->igc_intr_size, KM_SLEEP);
usr/src/uts/common/io/igc/igc.c
920
igc->igc_ntx_rings, KM_SLEEP);
usr/src/uts/common/io/igc/igc.c
934
igc->igc_nrx_rings, KM_SLEEP);
usr/src/uts/common/io/iprb/iprb.c
268
ip = kmem_zalloc(sizeof (*ip), KM_SLEEP);
usr/src/uts/common/io/iwh/iwh.c
1800
amrr = kmem_zalloc(sizeof (iwh_amrr_t), KM_SLEEP);
usr/src/uts/common/io/iwh/iwh.c
640
sc->sc_intr_htable = kmem_zalloc(sizeof (ddi_intr_handle_t), KM_SLEEP);
usr/src/uts/common/io/iwk/iwk2.c
1527
amrr = kmem_zalloc(sizeof (iwk_amrr_t), KM_SLEEP);
usr/src/uts/common/io/iwk/iwk2.c
565
sc->sc_intr_htable = kmem_zalloc(sizeof (ddi_intr_handle_t), KM_SLEEP);
usr/src/uts/common/io/iwn/if_iwn.c
443
*data = kmem_zalloc(size, KM_SLEEP);
usr/src/uts/common/io/iwn/if_iwn.c
661
sc->sc_intr_htable = kmem_zalloc(sc->sc_intr_size, KM_SLEEP);
usr/src/uts/common/io/iwn/if_iwn.c
7034
fw->data = kmem_alloc(fw->size, KM_SLEEP);
usr/src/uts/common/io/iwp/iwp.c
1741
amrr = kmem_zalloc(sizeof (iwp_amrr_t), KM_SLEEP);
usr/src/uts/common/io/iwp/iwp.c
601
sc->sc_intr_htable = kmem_zalloc(sizeof (ddi_intr_handle_t), KM_SLEEP);
usr/src/uts/common/io/iwscons.c
193
lp = kmem_zalloc(sizeof (*lp), KM_SLEEP);
usr/src/uts/common/io/ixgbe/ixgbe_main.c
1207
kmem_zalloc(IXGBE_ACI_MAX_BUFFER_SIZE, KM_SLEEP);
usr/src/uts/common/io/ixgbe/ixgbe_main.c
486
ixgbe = kmem_zalloc(sizeof (ixgbe_t), KM_SLEEP);
usr/src/uts/common/io/ixgbe/ixgbe_main.c
5606
ixgbe->htable = kmem_alloc(ixgbe->intr_size, KM_SLEEP);
usr/src/uts/common/io/ixgbe/ixgbe_main.c
6869
vlp = kmem_zalloc(sizeof (ixgbe_vlan_t), KM_SLEEP);
usr/src/uts/common/io/ixgbe/ixgbe_osdep.c
76
return (kmem_alloc(len, KM_SLEEP));
usr/src/uts/common/io/ixgbe/ixgbe_osdep.c
91
return (kmem_zalloc(total, KM_SLEEP));
usr/src/uts/common/io/kbtrans/kbtrans_streams.c
267
upper = kmem_zalloc(sizeof (struct kbtrans), KM_SLEEP);
usr/src/uts/common/io/kbtrans/kbtrans_streams.c
329
kmem_zalloc(upper->kbtrans_streams_downs_bytes, KM_SLEEP);
usr/src/uts/common/io/kbtrans/usb_keytables.c
442
kmem_alloc(sizeof (struct keyboard), KM_SLEEP);
usr/src/uts/common/io/ksensor/ksensor_test.c
117
kt = kmem_zalloc(sizeof (ksensor_test_t), KM_SLEEP);
usr/src/uts/common/io/ksocket/ksocket.c
800
pdp = kmem_zalloc(sizeof (*pdp), KM_SLEEP);
usr/src/uts/common/io/ksyms.c
293
buf = kmem_alloc(PAGESIZE, KM_SLEEP);
usr/src/uts/common/io/ksyms.c
463
sizeof (ksyms_image_t), KM_SLEEP);
usr/src/uts/common/io/ktest/ktest.c
1206
input_bytes = kmem_zalloc(kro.kro_input_len, KM_SLEEP);
usr/src/uts/common/io/ldterm.c
4733
locale_name_sz, KM_SLEEP);
usr/src/uts/common/io/ldterm.c
682
KM_SLEEP);
usr/src/uts/common/io/ldterm.c
745
tp->t_csdata.locale_name = (char *)kmem_alloc(6, KM_SLEEP);
usr/src/uts/common/io/llc1.c
384
llc1 = kmem_zalloc(sizeof (llc1_t), KM_SLEEP);
usr/src/uts/common/io/lofi.c
1033
iobuf = kmem_alloc(len, KM_SLEEP);
usr/src/uts/common/io/lofi.c
1253
lc = kmem_alloc(sizeof (struct lofi_comp_cache), KM_SLEEP);
usr/src/uts/common/io/lofi.c
1591
KM_SLEEP);
usr/src/uts/common/io/lofi.c
1657
KM_SLEEP);
usr/src/uts/common/io/lofi.c
1851
(void) taskq_dispatch(lsp->ls_taskq, taskfunc, bp, KM_SLEEP);
usr/src/uts/common/io/lofi.c
1923
bp = getrbuf(KM_SLEEP);
usr/src/uts/common/io/lofi.c
1967
&cbd, KM_SLEEP));
usr/src/uts/common/io/lofi.c
2263
klip = *klipp = kmem_alloc(sizeof (struct lofi_ioctl), KM_SLEEP);
usr/src/uts/common/io/lofi.c
2580
lsp->ls_comp_index_data = kmem_alloc(index_sz, KM_SLEEP);
usr/src/uts/common/io/lofi.c
2668
CRYPTO_BITS2BYTES(lsp->ls_key.ck_length), KM_SLEEP);
usr/src/uts/common/io/lofi.c
269
return (kmem_alloc(size, KM_SLEEP));
usr/src/uts/common/io/lofi.c
2812
sizeof (struct compbuf), KM_SLEEP);
usr/src/uts/common/io/lofi.c
3734
error = dfl_copyin((void *)arg, &dfl, flag, KM_SLEEP);
usr/src/uts/common/io/lofi.c
402
bp = getrbuf(KM_SLEEP);
usr/src/uts/common/io/lofi.c
425
(void) taskq_dispatch(lsp->ls_taskq, lofi_strategy_task, bp, KM_SLEEP);
usr/src/uts/common/io/lofi.c
633
(void) taskq_dispatch(system_taskq, lofi_teardown_task, lsp, KM_SLEEP);
usr/src/uts/common/io/lofi.c
877
iv = kmem_zalloc(iv_len, KM_SLEEP);
usr/src/uts/common/io/mac/mac.c
1368
addr = kmem_alloc(capab.mcm_naddr * MAXMACADDRLEN, KM_SLEEP);
usr/src/uts/common/io/mac/mac.c
1373
sizeof (mac_factory_addr_t), KM_SLEEP);
usr/src/uts/common/io/mac/mac.c
3007
p = kmem_zalloc(sizeof (mac_margin_req_t), KM_SLEEP);
usr/src/uts/common/io/mac/mac.c
3141
cur = kmem_alloc(sizeof (mac_mtu_req_t), KM_SLEEP);
usr/src/uts/common/io/mac/mac.c
3247
mtrp = kmem_zalloc(sizeof (mactype_register_t), KM_SLEEP);
usr/src/uts/common/io/mac/mac.c
3280
mtp = kmem_zalloc(sizeof (*mtp), KM_SLEEP);
usr/src/uts/common/io/mac/mac.c
3287
mtp->mt_brdcst_addr = kmem_alloc(mtrp->mtr_addrlen, KM_SLEEP);
usr/src/uts/common/io/mac/mac.c
3563
mrp = kmem_zalloc(sizeof (*mrp), KM_SLEEP);
usr/src/uts/common/io/mac/mac.c
3661
mrp = kmem_zalloc(sizeof (*mrp), KM_SLEEP);
usr/src/uts/common/io/mac/mac.c
3672
mrp = kmem_zalloc(sizeof (*mrp), KM_SLEEP);
usr/src/uts/common/io/mac/mac.c
4018
mip->mi_priv_prop = kmem_zalloc(nprops * sizeof (char *), KM_SLEEP);
usr/src/uts/common/io/mac/mac.c
4021
mip->mi_priv_prop[i] = kmem_zalloc(MAXLINKPROPNAME, KM_SLEEP);
usr/src/uts/common/io/mac/mac.c
4071
ring = kmem_cache_alloc(mac_ring_cache, KM_SLEEP);
usr/src/uts/common/io/mac/mac.c
438
mod_hash_bystr, NULL, mod_hash_strkey_cmp, KM_SLEEP);
usr/src/uts/common/io/mac/mac.c
4396
groups = kmem_zalloc(sizeof (mac_group_t) * (grpcnt+ 1), KM_SLEEP);
usr/src/uts/common/io/mac/mac.c
451
mod_hash_bystr, NULL, mod_hash_strkey_cmp, KM_SLEEP);
usr/src/uts/common/io/mac/mac.c
5447
mvp = kmem_zalloc(sizeof (mac_vlan_t), KM_SLEEP);
usr/src/uts/common/io/mac/mac.c
5507
map = kmem_zalloc(sizeof (mac_address_t), KM_SLEEP);
usr/src/uts/common/io/mac/mac.c
5881
map = kmem_zalloc(sizeof (mac_address_t), KM_SLEEP);
usr/src/uts/common/io/mac/mac.c
6831
KM_SLEEP);
usr/src/uts/common/io/mac/mac.c
6861
KM_SLEEP);
usr/src/uts/common/io/mac/mac.c
6957
mgcp = kmem_zalloc(sizeof (mac_grp_client_t), KM_SLEEP);
usr/src/uts/common/io/mac/mac.c
8009
mtnfp = kmem_zalloc(sizeof (mac_tx_notify_cb_t), KM_SLEEP);
usr/src/uts/common/io/mac/mac.c
8231
KM_SLEEP);
usr/src/uts/common/io/mac/mac.c
8429
mrp = kmem_zalloc(sizeof (*mrp), KM_SLEEP);
usr/src/uts/common/io/mac/mac.c
8540
mpa = kmem_zalloc(sizeof (struct mac_pool_arg), KM_SLEEP);
usr/src/uts/common/io/mac/mac_bcast.c
277
KM_SLEEP);
usr/src/uts/common/io/mac/mac_bcast.c
297
KM_SLEEP);
usr/src/uts/common/io/mac/mac_bcast.c
322
grp = kmem_cache_alloc(mac_bcast_grp_cache, KM_SLEEP);
usr/src/uts/common/io/mac/mac_bcast.c
330
grp->mbg_addr = kmem_zalloc(addr_len, KM_SLEEP);
usr/src/uts/common/io/mac/mac_bcast.c
425
sizeof (mac_bcast_grp_mcip_t), KM_SLEEP);
usr/src/uts/common/io/mac/mac_client.c
1358
mcip = kmem_cache_alloc(mac_client_impl_cache, KM_SLEEP);
usr/src/uts/common/io/mac/mac_client.c
2101
omrp = kmem_zalloc(sizeof (*omrp), KM_SLEEP);
usr/src/uts/common/io/mac/mac_client.c
2643
muip = kmem_zalloc(sizeof (mac_unicast_impl_t), KM_SLEEP);
usr/src/uts/common/io/mac/mac_client.c
2699
mrp = kmem_zalloc(sizeof (*mrp), KM_SLEEP);
usr/src/uts/common/io/mac/mac_client.c
2746
muip = kmem_zalloc(sizeof (mac_unicast_impl_t), KM_SLEEP);
usr/src/uts/common/io/mac/mac_client.c
3236
mrp = kmem_zalloc(sizeof (*mrp), KM_SLEEP);
usr/src/uts/common/io/mac/mac_client.c
3405
mpip = kmem_cache_alloc(mac_promisc_impl_cache, KM_SLEEP);
usr/src/uts/common/io/mac/mac_client.c
3868
mncb = kmem_zalloc(sizeof (mac_notify_cb_t), KM_SLEEP);
usr/src/uts/common/io/mac/mac_client.c
4682
umrp = kmem_zalloc(sizeof (*umrp), KM_SLEEP);
usr/src/uts/common/io/mac/mac_client.c
4704
tmrp = kmem_zalloc(sizeof (*tmrp), KM_SLEEP);
usr/src/uts/common/io/mac/mac_client.c
4733
omrp = kmem_zalloc(sizeof (*omrp), KM_SLEEP);
usr/src/uts/common/io/mac/mac_datapath_setup.c
1232
MAX_RINGS_PER_GROUP, KM_SLEEP);
usr/src/uts/common/io/mac/mac_datapath_setup.c
1238
MAX_RINGS_PER_GROUP, KM_SLEEP);
usr/src/uts/common/io/mac/mac_datapath_setup.c
1243
KM_SLEEP);
usr/src/uts/common/io/mac/mac_datapath_setup.c
1246
KM_SLEEP);
usr/src/uts/common/io/mac/mac_datapath_setup.c
1249
KM_SLEEP);
usr/src/uts/common/io/mac/mac_datapath_setup.c
1252
KM_SLEEP);
usr/src/uts/common/io/mac/mac_datapath_setup.c
1255
KM_SLEEP);
usr/src/uts/common/io/mac/mac_datapath_setup.c
2149
mac_srs = kmem_cache_alloc(mac_srs_cache, KM_SLEEP);
usr/src/uts/common/io/mac/mac_flow.c
1527
finfo = kmem_zalloc(sizeof (*finfo), KM_SLEEP);
usr/src/uts/common/io/mac/mac_flow.c
195
mod_hash_bystr, NULL, mod_hash_strkey_cmp, KM_SLEEP);
usr/src/uts/common/io/mac/mac_flow.c
228
flent = kmem_cache_alloc(flow_cache, KM_SLEEP);
usr/src/uts/common/io/mac/mac_flow.c
989
ft = kmem_cache_alloc(flow_tab_cache, KM_SLEEP);
usr/src/uts/common/io/mac/mac_flow.c
992
ft->ft_table = kmem_zalloc(size * sizeof (flow_entry_t *), KM_SLEEP);
usr/src/uts/common/io/mac/mac_ktest.c
119
if (nvlist_unpack((char *)bytes, num_bytes, &params, KM_SLEEP) != 0) {
usr/src/uts/common/io/mac/mac_ktest.c
143
etp->etp_outputs = kmem_alloc(out_pkt_sz, KM_SLEEP);
usr/src/uts/common/io/mac/mac_ktest.c
189
etp->etp_raw = kmem_alloc(pkt_sz, KM_SLEEP);
usr/src/uts/common/io/mac/mac_ktest.c
714
if (nvlist_unpack((char *)bytes, num_bytes, &params, KM_SLEEP) != 0) {
usr/src/uts/common/io/mac/mac_ktest.c
829
if (nvlist_unpack((char *)bytes, num_bytes, &params, KM_SLEEP) != 0) {
usr/src/uts/common/io/mac/mac_provider.c
1013
mip->mi_pdata = kmem_alloc(dsize, KM_SLEEP);
usr/src/uts/common/io/mac/mac_provider.c
112
mregp = kmem_zalloc(sizeof (mac_register_t), KM_SLEEP);
usr/src/uts/common/io/mac/mac_provider.c
185
mip = kmem_cache_alloc(i_mac_impl_cachep, KM_SLEEP);
usr/src/uts/common/io/mac/mac_provider.c
285
kmem_alloc(mip->mi_type->mt_addr_length, KM_SLEEP);
usr/src/uts/common/io/mac/mac_provider.c
335
kmem_alloc(mregp->m_pdata_size, KM_SLEEP);
usr/src/uts/common/io/mac/mac_soft_ring.c
159
ringp = kmem_cache_alloc(mac_soft_ring_cache, KM_SLEEP);
usr/src/uts/common/io/mac/mac_util.c
1666
iget_p = kmem_zalloc(ipsz, KM_SLEEP);
usr/src/uts/common/io/mac/mac_util.c
1690
iget_p = kmem_zalloc(ipsz, KM_SLEEP);
usr/src/uts/common/io/mega_sas/megaraid_sas.c
2045
instance->cmd_list = kmem_zalloc(sz, KM_SLEEP);
usr/src/uts/common/io/mega_sas/megaraid_sas.c
2050
KM_SLEEP);
usr/src/uts/common/io/mega_sas/megaraid_sas.c
356
sizeof (struct megasas_func_ptr), KM_SLEEP);
usr/src/uts/common/io/mem.c
691
buf = kmem_alloc(bufsize, KM_SLEEP);
usr/src/uts/common/io/mem.c
759
buf = kmem_alloc(bufsize, KM_SLEEP);
usr/src/uts/common/io/mem.c
764
name = kmem_alloc(mem_name.m_namelen, KM_SLEEP);
usr/src/uts/common/io/mii/mii.c
235
mh = kmem_zalloc(sizeof (*mh), KM_SLEEP);
usr/src/uts/common/io/mlxcx/mlxcx.c
1328
pages = kmem_alloc(sizeof (*pages) * npages, KM_SLEEP);
usr/src/uts/common/io/mlxcx/mlxcx.c
1334
mdp = kmem_zalloc(sizeof (mlxcx_dev_page_t), KM_SLEEP);
usr/src/uts/common/io/mlxcx/mlxcx.c
1442
s = kmem_zalloc(sizeof (mlxcx_buf_shard_t), KM_SLEEP);
usr/src/uts/common/io/mlxcx/mlxcx.c
1851
mlxp->mlx_ports = kmem_zalloc(mlxp->mlx_ports_size, KM_SLEEP);
usr/src/uts/common/io/mlxcx/mlxcx.c
1898
KM_SLEEP));
usr/src/uts/common/io/mlxcx/mlxcx.c
1911
ft->mlft_ent = kmem_zalloc(ft->mlft_entsize, KM_SLEEP);
usr/src/uts/common/io/mlxcx/mlxcx.c
1940
fg = kmem_zalloc(sizeof (mlxcx_flow_group_t), KM_SLEEP);
usr/src/uts/common/io/mlxcx/mlxcx.c
1956
fg = kmem_zalloc(sizeof (mlxcx_flow_group_t), KM_SLEEP);
usr/src/uts/common/io/mlxcx/mlxcx.c
1968
fg = kmem_zalloc(sizeof (mlxcx_flow_group_t), KM_SLEEP);
usr/src/uts/common/io/mlxcx/mlxcx.c
2135
v = kmem_zalloc(sizeof (mlxcx_group_vlan_t), KM_SLEEP);
usr/src/uts/common/io/mlxcx/mlxcx.c
2343
gm = kmem_zalloc(sizeof (mlxcx_group_mac_t), KM_SLEEP);
usr/src/uts/common/io/mlxcx/mlxcx.c
2566
mlxp->mlx_caps = c = kmem_zalloc(sizeof (mlxcx_caps_t), KM_SLEEP);
usr/src/uts/common/io/mlxcx/mlxcx.c
2948
mlxp->mlx_rx_groups = kmem_zalloc(mlxp->mlx_rx_groups_size, KM_SLEEP);
usr/src/uts/common/io/mlxcx/mlxcx.c
2953
mlxp->mlx_tx_groups = kmem_zalloc(mlxp->mlx_tx_groups_size, KM_SLEEP);
usr/src/uts/common/io/mlxcx/mlxcx.c
828
KM_SLEEP);
usr/src/uts/common/io/mlxcx/mlxcx_cmd.c
1291
in = kmem_zalloc(insize, KM_SLEEP);
usr/src/uts/common/io/mlxcx/mlxcx_cmd.c
1340
out = kmem_alloc(outsize, KM_SLEEP);
usr/src/uts/common/io/mlxcx/mlxcx_cmd.c
1378
out = kmem_zalloc(sizeof (mlxcx_cmd_query_hca_cap_out_t), KM_SLEEP);
usr/src/uts/common/io/mlxcx/mlxcx_cmd.c
668
mbox = kmem_zalloc(sizeof (*mbox), KM_SLEEP);
usr/src/uts/common/io/mlxcx/mlxcx_intr.c
1251
mlxp->mlx_intr_handles = kmem_alloc(mlxp->mlx_intr_size, KM_SLEEP);
usr/src/uts/common/io/mlxcx/mlxcx_intr.c
1302
mlxp->mlx_eqs = kmem_zalloc(mlxp->mlx_eqs_size, KM_SLEEP);
usr/src/uts/common/io/mlxcx/mlxcx_intr.c
449
pages = kmem_zalloc(sizeof (*pages) * npages, KM_SLEEP);
usr/src/uts/common/io/mlxcx/mlxcx_intr.c
452
mdp = kmem_zalloc(sizeof (mlxcx_dev_page_t), KM_SLEEP);
usr/src/uts/common/io/mlxcx/mlxcx_intr.c
511
pas = kmem_alloc(sizeof (*pas) * npages, KM_SLEEP);
usr/src/uts/common/io/mlxcx/mlxcx_ring.c
1017
fg = kmem_zalloc(sizeof (mlxcx_flow_group_t), KM_SLEEP);
usr/src/uts/common/io/mlxcx/mlxcx_ring.c
1038
fg = kmem_zalloc(sizeof (mlxcx_flow_group_t), KM_SLEEP);
usr/src/uts/common/io/mlxcx/mlxcx_ring.c
1059
fg = kmem_zalloc(sizeof (mlxcx_flow_group_t), KM_SLEEP);
usr/src/uts/common/io/mlxcx/mlxcx_ring.c
1086
KM_SLEEP));
usr/src/uts/common/io/mlxcx/mlxcx_ring.c
1100
ft->mlft_ent = kmem_zalloc(ft->mlft_entsize, KM_SLEEP);
usr/src/uts/common/io/mlxcx/mlxcx_ring.c
1119
fg = kmem_zalloc(sizeof (mlxcx_flow_group_t), KM_SLEEP);
usr/src/uts/common/io/mlxcx/mlxcx_ring.c
1136
fg = kmem_zalloc(sizeof (mlxcx_flow_group_t), KM_SLEEP);
usr/src/uts/common/io/mlxcx/mlxcx_ring.c
1157
fg = kmem_zalloc(sizeof (mlxcx_flow_group_t), KM_SLEEP);
usr/src/uts/common/io/mlxcx/mlxcx_ring.c
1341
g->mlg_wqs = kmem_zalloc(g->mlg_wqs_size, KM_SLEEP);
usr/src/uts/common/io/mlxcx/mlxcx_ring.c
2166
b = kmem_cache_alloc(mlxp->mlx_bufs_cache, KM_SLEEP);
usr/src/uts/common/io/mlxcx/mlxcx_ring.c
2198
b = kmem_cache_alloc(mlxp->mlx_bufs_cache, KM_SLEEP);
usr/src/uts/common/io/mlxcx/mlxcx_ring.c
342
cq = kmem_zalloc(sizeof (mlxcx_completion_queue_t), KM_SLEEP);
usr/src/uts/common/io/mlxcx/mlxcx_ring.c
768
g->mlg_wqs = kmem_zalloc(g->mlg_wqs_size, KM_SLEEP);
usr/src/uts/common/io/mlxcx/mlxcx_ring.c
771
g->mlg_rqt = kmem_zalloc(sizeof (mlxcx_rqtable_t), KM_SLEEP);
usr/src/uts/common/io/mlxcx/mlxcx_ring.c
777
g->mlg_rqt->mlrqt_rq = kmem_zalloc(g->mlg_rqt->mlrqt_rq_size, KM_SLEEP);
usr/src/uts/common/io/mlxcx/mlxcx_ring.c
897
KM_SLEEP));
usr/src/uts/common/io/mlxcx/mlxcx_ring.c
914
ft->mlft_ent = kmem_zalloc(ft->mlft_entsize, KM_SLEEP);
usr/src/uts/common/io/mlxcx/mlxcx_ring.c
929
fg = kmem_zalloc(sizeof (mlxcx_flow_group_t), KM_SLEEP);
usr/src/uts/common/io/mlxcx/mlxcx_ring.c
951
fg = kmem_zalloc(sizeof (mlxcx_flow_group_t), KM_SLEEP);
usr/src/uts/common/io/mlxcx/mlxcx_ring.c
973
fg = kmem_zalloc(sizeof (mlxcx_flow_group_t), KM_SLEEP);
usr/src/uts/common/io/mlxcx/mlxcx_ring.c
995
fg = kmem_zalloc(sizeof (mlxcx_flow_group_t), KM_SLEEP);
usr/src/uts/common/io/mlxcx/mlxcx_sensor.c
96
mlxp->mlx_temp_nsensors, KM_SLEEP);
usr/src/uts/common/io/mouse8042.c
302
state = kmem_zalloc(sizeof (struct mouse_state), KM_SLEEP);
usr/src/uts/common/io/mr_sas/mr_sas.c
1425
KM_SLEEP);
usr/src/uts/common/io/mr_sas/mr_sas.c
3132
instance->cmd_list = kmem_zalloc(sz, KM_SLEEP);
usr/src/uts/common/io/mr_sas/mr_sas.c
3138
kmem_zalloc(sizeof (struct mrsas_cmd), KM_SLEEP);
usr/src/uts/common/io/mr_sas/mr_sas.c
7289
KM_SLEEP);
usr/src/uts/common/io/mr_sas/mr_sas.c
7582
sd = kmem_zalloc(sizeof (struct scsi_device), KM_SLEEP);
usr/src/uts/common/io/mr_sas/mr_sas.c
7774
devname = kmem_zalloc(MAXNAMELEN + 1, KM_SLEEP);
usr/src/uts/common/io/mr_sas/mr_sas.c
949
KM_SLEEP);
usr/src/uts/common/io/mr_sas/mr_sas.c
956
sizeof (struct mrsas_tbolt_pd), KM_SLEEP);
usr/src/uts/common/io/mr_sas/mr_sas_tbolt.c
3539
kmem_zalloc(sizeof (struct mrsas_tbolt_pd_info), KM_SLEEP);
usr/src/uts/common/io/mr_sas/mr_sas_tbolt.c
3550
sd = kmem_zalloc(sizeof (struct scsi_device), KM_SLEEP);
usr/src/uts/common/io/mr_sas/mr_sas_tbolt.c
581
instance->cmd_list = kmem_zalloc(sz, KM_SLEEP);
usr/src/uts/common/io/mr_sas/mr_sas_tbolt.c
586
kmem_zalloc(sizeof (struct mrsas_cmd), KM_SLEEP);
usr/src/uts/common/io/mwl/mwl.c
2237
mn = kmem_zalloc(sizeof (struct mwl_node), KM_SLEEP);
usr/src/uts/common/io/mwl/mwl.c
4105
sc->sc_intr_htable = kmem_zalloc(sizeof (ddi_intr_handle_t), KM_SLEEP);
usr/src/uts/common/io/mwl/mwl.c
491
ring->buf = (struct mwl_rxbuf *)kmem_zalloc(datadlen, KM_SLEEP);
usr/src/uts/common/io/mwl/mwl.c
578
ring->buf = kmem_zalloc(datadlen, KM_SLEEP);
usr/src/uts/common/io/mwl/mwl.c
969
fwboot = (uint8_t *)kmem_alloc(fwboot_size, KM_SLEEP);
usr/src/uts/common/io/mwl/mwl.c
978
fw = (uint8_t *)kmem_alloc(fw_size, KM_SLEEP);
usr/src/uts/common/io/mxfe/mxfe.c
1906
txb = kmem_zalloc(sizeof (*txb), KM_SLEEP);
usr/src/uts/common/io/mxfe/mxfe.c
1950
rxb = kmem_zalloc(sizeof (*rxb), KM_SLEEP);
usr/src/uts/common/io/mxfe/mxfe.c
2039
KM_SLEEP);
usr/src/uts/common/io/mxfe/mxfe.c
2103
KM_SLEEP);
usr/src/uts/common/io/mxfe/mxfe.c
390
mxfep = kmem_zalloc(sizeof (mxfe_t), KM_SLEEP);
usr/src/uts/common/io/myri10ge/drv/myri10ge.c
1668
KM_SLEEP);
usr/src/uts/common/io/myri10ge/drv/myri10ge.c
1880
ss->rx_small.shadow = kmem_zalloc(bytes, KM_SLEEP);
usr/src/uts/common/io/myri10ge/drv/myri10ge.c
1886
ss->rx_big.shadow = kmem_zalloc(bytes, KM_SLEEP);
usr/src/uts/common/io/myri10ge/drv/myri10ge.c
1894
ss->tx.info = kmem_zalloc(bytes, KM_SLEEP);
usr/src/uts/common/io/myri10ge/drv/myri10ge.c
1900
ss->rx_small.info = kmem_zalloc(bytes, KM_SLEEP);
usr/src/uts/common/io/myri10ge/drv/myri10ge.c
1906
ss->rx_big.info = kmem_zalloc(bytes, KM_SLEEP);
usr/src/uts/common/io/myri10ge/drv/myri10ge.c
4495
mgp->htable = kmem_alloc(mgp->intr_size, KM_SLEEP);
usr/src/uts/common/io/myri10ge/drv/myri10ge.c
5525
lro = kmem_zalloc(sizeof (*lro), KM_SLEEP);
usr/src/uts/common/io/myri10ge/drv/myri10ge.c
5575
mgp->ss = kmem_zalloc(bytes, KM_SLEEP);
usr/src/uts/common/io/myri10ge/drv/myri10ge.c
559
kmem_alloc(sizeof (*j), KM_SLEEP);
usr/src/uts/common/io/myri10ge/drv/myri10ge.c
5821
macp = kmem_zalloc(sizeof (*macp) * 8, KM_SLEEP);
usr/src/uts/common/io/myri10ge/drv/myri10ge.c
5825
kmem_zalloc(sizeof (*mgp), KM_SLEEP)) == NULL) {
usr/src/uts/common/io/myri10ge/drv/myri10ge.c
775
handle = kmem_zalloc(sizeof (*handle), KM_SLEEP);
usr/src/uts/common/io/myri10ge/drv/myri10ge.c
926
ss->tx.cp = kmem_zalloc(bytes, KM_SLEEP);
usr/src/uts/common/io/net80211/net80211.c
100
void *p = kmem_zalloc((size + 4), KM_SLEEP);
usr/src/uts/common/io/net80211/net80211.c
743
im = kmem_alloc(sizeof (ieee80211_impl_t), KM_SLEEP);
usr/src/uts/common/io/net80211/net80211_crypto_ccmp.c
89
ctx = kmem_zalloc(sizeof (struct ccmp_ctx), KM_SLEEP);
usr/src/uts/common/io/net80211/net80211_crypto_tkip.c
106
ctx = kmem_zalloc(sizeof (struct tkip_ctx), KM_SLEEP);
usr/src/uts/common/io/net80211/net80211_node.c
765
return (kmem_zalloc(sizeof (ieee80211_node_t), KM_SLEEP));
usr/src/uts/common/io/neti_impl.c
76
new = kmem_alloc(sizeof (*new), KM_SLEEP);
usr/src/uts/common/io/neti_stack.c
102
nts = kmem_zalloc(sizeof (*nts), KM_SLEEP);
usr/src/uts/common/io/neti_stack.c
261
nini = kmem_zalloc(sizeof (net_instance_int_t), KM_SLEEP);
usr/src/uts/common/io/neti_stack.c
332
nin = kmem_zalloc(sizeof (net_instance_t), KM_SLEEP);
usr/src/uts/common/io/nge/nge_main.c
1317
pitem = kmem_zalloc(sizeof (mul_item), KM_SLEEP);
usr/src/uts/common/io/nge/nge_main.c
2396
ngep = kmem_zalloc(sizeof (*ngep), KM_SLEEP);
usr/src/uts/common/io/nge/nge_main.c
2953
ngep->htable = kmem_alloc(intr_size, KM_SLEEP);
usr/src/uts/common/io/nge/nge_main.c
518
ssbdp = kmem_zalloc(nslots*sizeof (*ssbdp), KM_SLEEP);
usr/src/uts/common/io/nge/nge_main.c
723
bsbdp = kmem_zalloc(nslots_recv *sizeof (*bsbdp), KM_SLEEP);
usr/src/uts/common/io/nge/nge_main.c
728
bufp = kmem_zalloc(sizeof (dma_area_t), KM_SLEEP);
usr/src/uts/common/io/ntxn/unm_gem.c
1164
adapter = kmem_zalloc(sizeof (unm_adapter), KM_SLEEP);
usr/src/uts/common/io/ntxn/unm_gem.c
1396
KM_SLEEP);
usr/src/uts/common/io/ntxn/unm_gem.c
644
total_buf, KM_SLEEP);
usr/src/uts/common/io/ntxn/unm_nic_init.c
320
buf = kmem_zalloc(n * sizeof (struct crb_addr_pair), KM_SLEEP);
usr/src/uts/common/io/nvme/nvme.c
1549
nvme_dma_t *dma = kmem_zalloc(sizeof (nvme_dma_t), KM_SLEEP);
usr/src/uts/common/io/nvme/nvme.c
1674
nvme_cq_t *cq = kmem_zalloc(sizeof (*cq), KM_SLEEP);
usr/src/uts/common/io/nvme/nvme.c
1731
nvme->n_cq = kmem_zalloc(sizeof (*nvme->n_cq) * ncq, KM_SLEEP);
usr/src/uts/common/io/nvme/nvme.c
1762
nvme_qpair_t *qp = kmem_zalloc(sizeof (*qp), KM_SLEEP);
usr/src/uts/common/io/nvme/nvme.c
1788
qp->nq_cmd = kmem_zalloc(sizeof (nvme_cmd_t *) * nentry, KM_SLEEP);
usr/src/uts/common/io/nvme/nvme.c
2654
nvme_cmd_t *abort_cmd = nvme_alloc_admin_cmd(nvme, KM_SLEEP);
usr/src/uts/common/io/nvme/nvme.c
3201
cmd = nvme_alloc_admin_cmd(nvme, KM_SLEEP);
usr/src/uts/common/io/nvme/nvme.c
3240
nvme_cmd_t *cmd = nvme_alloc_admin_cmd(nvme, KM_SLEEP);
usr/src/uts/common/io/nvme/nvme.c
3290
nvme_cmd_t *cmd = nvme_alloc_admin_cmd(nvme, KM_SLEEP);
usr/src/uts/common/io/nvme/nvme.c
3364
*buf = kmem_alloc(log->nigl_len, KM_SLEEP);
usr/src/uts/common/io/nvme/nvme.c
3432
nvme_cmd_t *cmd = nvme_alloc_admin_cmd(nvme, KM_SLEEP);
usr/src/uts/common/io/nvme/nvme.c
3489
*buf = kmem_alloc(NVME_IDENTIFY_BUFSIZE, KM_SLEEP);
usr/src/uts/common/io/nvme/nvme.c
3514
nvme_cmd_t *cmd = nvme_alloc_admin_cmd(nvme, KM_SLEEP);
usr/src/uts/common/io/nvme/nvme.c
3548
nvme_cmd_t *cmd = nvme_alloc_admin_cmd(nvme, KM_SLEEP);
usr/src/uts/common/io/nvme/nvme.c
3669
nvme_cmd_t *cmd = nvme_alloc_admin_cmd(nvme, KM_SLEEP);
usr/src/uts/common/io/nvme/nvme.c
3725
cmd = nvme_alloc_admin_cmd(nvme, KM_SLEEP);
usr/src/uts/common/io/nvme/nvme.c
4318
KM_SLEEP);
usr/src/uts/common/io/nvme/nvme.c
4446
hb = kmem_zalloc(sizeof (nvme_host_behavior_t), KM_SLEEP);
usr/src/uts/common/io/nvme/nvme.c
4565
nvme->n_ioq = kmem_alloc(sizeof (nvme_qpair_t *), KM_SLEEP);
usr/src/uts/common/io/nvme/nvme.c
4777
nvme->n_namespace_count, KM_SLEEP);
usr/src/uts/common/io/nvme/nvme.c
4842
(nvme->n_submission_queues + 1), KM_SLEEP);
usr/src/uts/common/io/nvme/nvme.c
5047
nvme->n_inth = kmem_zalloc(nvme->n_inth_sz, KM_SLEEP);
usr/src/uts/common/io/nvme/nvme.c
5782
cmd->nc_prp = kmem_cache_alloc(nvme->n_prp_cache, KM_SLEEP);
usr/src/uts/common/io/nvme/nvme.c
5872
allocflag = (xfer->x_flags & BD_XFER_POLL) ? KM_NOSLEEP : KM_SLEEP;
usr/src/uts/common/io/nvme/nvme.c
6780
cmd = nvme_alloc_admin_cmd(nvme, KM_SLEEP);
usr/src/uts/common/io/nxge/nxge_hio.c
137
nhd = KMEM_ZALLOC(sizeof (*nhd), KM_SLEEP);
usr/src/uts/common/io/nxge/nxge_hio.c
310
group = KMEM_ZALLOC(sizeof (*group), KM_SLEEP);
usr/src/uts/common/io/nxge/nxge_hio.c
983
nhd = KMEM_ZALLOC(sizeof (*nhd), KM_SLEEP);
usr/src/uts/common/io/nxge/nxge_hio_guest.c
73
nxge->dev_regs = KMEM_ZALLOC(sizeof (dev_regs_t), KM_SLEEP);
usr/src/uts/common/io/nxge/nxge_intr.c
618
interrupts->htable = kmem_alloc(interrupts->intr_size, KM_SLEEP);
usr/src/uts/common/io/nxge/nxge_intr.c
932
control = KMEM_ZALLOC(sizeof (nxge_ldgv_t), KM_SLEEP);
usr/src/uts/common/io/nxge/nxge_intr.c
937
sizeof (nxge_ldg_t) * NXGE_INT_MAX_LDGS, KM_SLEEP);
usr/src/uts/common/io/nxge/nxge_intr.c
939
sizeof (nxge_ldv_t) * NXGE_INT_MAX_LDS, KM_SLEEP);
usr/src/uts/common/io/nxge/nxge_kstats.c
50
nxgep->statsp = KMEM_ZALLOC(stats_size, KM_SLEEP);
usr/src/uts/common/io/nxge/nxge_mac.c
5759
KM_SLEEP);
usr/src/uts/common/io/nxge/nxge_main.c
1200
dev_regs = KMEM_ZALLOC(sizeof (dev_regs_t), KM_SLEEP);
usr/src/uts/common/io/nxge/nxge_main.c
2270
KM_SLEEP);
usr/src/uts/common/io/nxge/nxge_main.c
2272
sizeof (p_nxge_dma_common_t) * rdc_max, KM_SLEEP);
usr/src/uts/common/io/nxge/nxge_main.c
2275
KMEM_ZALLOC(sizeof (nxge_dma_pool_t), KM_SLEEP);
usr/src/uts/common/io/nxge/nxge_main.c
2277
sizeof (p_nxge_dma_common_t) * rdc_max, KM_SLEEP);
usr/src/uts/common/io/nxge/nxge_main.c
2280
sizeof (uint32_t) * rdc_max, KM_SLEEP);
usr/src/uts/common/io/nxge/nxge_main.c
2401
KMEM_ZALLOC(sizeof (rx_rbr_rings_t), KM_SLEEP);
usr/src/uts/common/io/nxge/nxge_main.c
2403
KMEM_ZALLOC(sizeof (p_rx_rbr_ring_t) * rdc_max, KM_SLEEP);
usr/src/uts/common/io/nxge/nxge_main.c
2405
KMEM_ZALLOC(sizeof (rx_rcr_rings_t), KM_SLEEP);
usr/src/uts/common/io/nxge/nxge_main.c
2407
KMEM_ZALLOC(sizeof (p_rx_rcr_ring_t) * rdc_max, KM_SLEEP);
usr/src/uts/common/io/nxge/nxge_main.c
2409
KMEM_ZALLOC(sizeof (rx_mbox_areas_t), KM_SLEEP);
usr/src/uts/common/io/nxge/nxge_main.c
2411
KMEM_ZALLOC(sizeof (p_rx_mbox_t) * rdc_max, KM_SLEEP);
usr/src/uts/common/io/nxge/nxge_main.c
2600
KM_SLEEP);
usr/src/uts/common/io/nxge/nxge_main.c
2774
KMEM_ZALLOC(sizeof (nxge_dma_common_t), KM_SLEEP);
usr/src/uts/common/io/nxge/nxge_main.c
3021
KM_SLEEP);
usr/src/uts/common/io/nxge/nxge_main.c
3023
sizeof (p_nxge_dma_common_t) * tdc_max, KM_SLEEP);
usr/src/uts/common/io/nxge/nxge_main.c
3026
KMEM_ZALLOC(sizeof (nxge_dma_pool_t), KM_SLEEP);
usr/src/uts/common/io/nxge/nxge_main.c
3028
sizeof (p_nxge_dma_common_t) * tdc_max, KM_SLEEP);
usr/src/uts/common/io/nxge/nxge_main.c
3057
sizeof (uint32_t) * tdc_max, KM_SLEEP);
usr/src/uts/common/io/nxge/nxge_main.c
3073
KMEM_ZALLOC(sizeof (tx_rings_t), KM_SLEEP);
usr/src/uts/common/io/nxge/nxge_main.c
3075
KMEM_ZALLOC(sizeof (p_tx_ring_t) * tdc_max, KM_SLEEP);
usr/src/uts/common/io/nxge/nxge_main.c
3077
KMEM_ZALLOC(sizeof (tx_mbox_areas_t), KM_SLEEP);
usr/src/uts/common/io/nxge/nxge_main.c
3079
KMEM_ZALLOC(sizeof (p_tx_mbox_t) * tdc_max, KM_SLEEP);
usr/src/uts/common/io/nxge/nxge_main.c
3105
KM_SLEEP);
usr/src/uts/common/io/nxge/nxge_main.c
3215
KMEM_ZALLOC(sizeof (nxge_dma_common_t), KM_SLEEP);
usr/src/uts/common/io/nxge/nxge_main.c
6106
intrp->htable = kmem_alloc(intrp->intr_size, KM_SLEEP);
usr/src/uts/common/io/nxge/nxge_main.c
6271
intrp->htable = kmem_alloc(intrp->intr_size, KM_SLEEP);
usr/src/uts/common/io/nxge/nxge_main.c
6534
macp->m_src_addr = KMEM_ZALLOC(MAXMACADDRLEN, KM_SLEEP);
usr/src/uts/common/io/nxge/nxge_main.c
6535
macp->m_dst_addr = KMEM_ZALLOC(MAXMACADDRLEN, KM_SLEEP);
usr/src/uts/common/io/nxge/nxge_main.c
6695
hw_p = kmem_zalloc(sizeof (nxge_hw_list_t), KM_SLEEP);
usr/src/uts/common/io/nxge/nxge_main.c
6713
hw_p->tcam_size, KM_SLEEP);
usr/src/uts/common/io/nxge/nxge_ndd.c
745
KMEM_ZALLOC(sizeof (nxge_param_arr), KM_SLEEP);
usr/src/uts/common/io/nxge/nxge_ndd.c
755
(uint64_t)KMEM_ZALLOC(alloc_size, KM_SLEEP);
usr/src/uts/common/io/nxge/nxge_ndd.c
757
(uint64_t)KMEM_ZALLOC(alloc_size, KM_SLEEP);
usr/src/uts/common/io/nxge/nxge_rxdma.c
3546
KMEM_ZALLOC(sizeof (rx_rcr_ring_t), KM_SLEEP);
usr/src/uts/common/io/nxge/nxge_rxdma.c
3626
KMEM_ZALLOC(sizeof (rx_mbox_t), KM_SLEEP);
usr/src/uts/common/io/nxge/nxge_rxdma.c
3755
rbrp = (p_rx_rbr_ring_t)KMEM_ZALLOC(sizeof (*rbrp), KM_SLEEP);
usr/src/uts/common/io/nxge/nxge_rxdma.c
3758
rx_msg_ring = KMEM_ZALLOC(size, KM_SLEEP);
usr/src/uts/common/io/nxge/nxge_rxdma.c
3760
KM_SLEEP);
usr/src/uts/common/io/nxge/nxge_txdma.c
2436
KMEM_ZALLOC(sizeof (tx_mbox_t), KM_SLEEP);
usr/src/uts/common/io/nxge/nxge_txdma.c
2559
KMEM_ZALLOC(sizeof (tx_ring_t), KM_SLEEP);
usr/src/uts/common/io/nxge/nxge_txdma.c
2580
tx_msg_ring = KMEM_ZALLOC(size, KM_SLEEP);
usr/src/uts/common/io/nxge/nxge_virtual.c
1814
KM_SLEEP);
usr/src/uts/common/io/nxge/nxge_virtual.c
3058
ldgvp = KMEM_ZALLOC(sizeof (nxge_ldgv_t), KM_SLEEP);
usr/src/uts/common/io/nxge/nxge_virtual.c
3063
sizeof (nxge_ldg_t) * maxldgs, KM_SLEEP);
usr/src/uts/common/io/nxge/nxge_virtual.c
3065
sizeof (nxge_ldv_t) * maxldvs, KM_SLEEP);
usr/src/uts/common/io/nxge/nxge_virtual.c
3172
sysldvp = KMEM_ZALLOC(sizeof (nxge_ldv_t), KM_SLEEP);
usr/src/uts/common/io/nxge/nxge_virtual.c
3326
ldgvp = KMEM_ZALLOC(sizeof (nxge_ldgv_t), KM_SLEEP);
usr/src/uts/common/io/nxge/nxge_virtual.c
3331
KM_SLEEP);
usr/src/uts/common/io/nxge/nxge_virtual.c
3333
KM_SLEEP);
usr/src/uts/common/io/openprom.c
1172
propval = kmem_zalloc(proplen + 1, KM_SLEEP);
usr/src/uts/common/io/openprom.c
1182
buf1 = kmem_alloc(OBP_MAXPROPNAME, KM_SLEEP);
usr/src/uts/common/io/openprom.c
1183
buf2 = kmem_zalloc(OBP_MAXPROPNAME, KM_SLEEP);
usr/src/uts/common/io/openprom.c
1197
propval = kmem_zalloc(proplen + 1, KM_SLEEP);
usr/src/uts/common/io/openprom.c
1223
(void) nvlist_alloc(&nvl, 0, KM_SLEEP);
usr/src/uts/common/io/openprom.c
1238
(void) nvlist_pack(nvl, buf, size, NV_ENCODE_NATIVE, KM_SLEEP);
usr/src/uts/common/io/openprom.c
1254
(void) nvlist_alloc(&nvl, NV_UNIQUE_NAME, KM_SLEEP);
usr/src/uts/common/io/openprom.c
1275
error = nvlist_pack(nvl, buf, size, NV_ENCODE_NATIVE, KM_SLEEP);
usr/src/uts/common/io/openprom.c
395
sizeof (uint_t) + 1, KM_SLEEP);
usr/src/uts/common/io/openprom.c
407
valbuf = (char *)kmem_zalloc(valsize + 1, KM_SLEEP);
usr/src/uts/common/io/openprom.c
413
valsize + sizeof (uint_t) + 1, KM_SLEEP);
usr/src/uts/common/io/openprom.c
427
valbuf = (char *)kmem_zalloc(valsize + 1, KM_SLEEP);
usr/src/uts/common/io/openprom.c
433
valsize + sizeof (uint_t) + 1, KM_SLEEP);
usr/src/uts/common/io/openprom.c
444
sizeof (uint_t) + 1, KM_SLEEP);
usr/src/uts/common/io/openprom.c
528
userbufsize + sizeof (uint_t) + 1, KM_SLEEP);
usr/src/uts/common/io/openprom.c
777
dev_name = kmem_alloc(MAXPATHLEN, KM_SLEEP);
usr/src/uts/common/io/openprom.c
901
prom_name = kmem_alloc(userbufsize, KM_SLEEP);
usr/src/uts/common/io/overlay/overlay.c
1232
odd = kmem_zalloc(sizeof (overlay_dev_t), KM_SLEEP);
usr/src/uts/common/io/overlay/overlay.c
1385
infop = kmem_alloc(sizeof (overlay_ioc_propinfo_t), KM_SLEEP);
usr/src/uts/common/io/overlay/overlay.c
1386
oip = kmem_alloc(sizeof (overlay_ioc_prop_t), KM_SLEEP);
usr/src/uts/common/io/overlay/overlay_mux.c
275
mux = kmem_alloc(sizeof (overlay_mux_t), KM_SLEEP);
usr/src/uts/common/io/overlay/overlay_mux.c
282
mux->omux_addr = kmem_alloc(len, KM_SLEEP);
usr/src/uts/common/io/overlay/overlay_plugin.c
155
opp = kmem_cache_alloc(overlay_plugin_cache, KM_SLEEP);
usr/src/uts/common/io/overlay/overlay_plugin.c
96
ovrp = kmem_zalloc(sizeof (overlay_plugin_register_t), KM_SLEEP);
usr/src/uts/common/io/overlay/overlay_target.c
1160
ote = kmem_cache_alloc(overlay_entry_cache, KM_SLEEP);
usr/src/uts/common/io/overlay/overlay_target.c
1307
iter = kmem_alloc(*bsize, KM_SLEEP);
usr/src/uts/common/io/overlay/overlay_target.c
1596
buf = kmem_alloc(bufsize, KM_SLEEP);
usr/src/uts/common/io/overlay/overlay_target.c
491
ott = kmem_cache_alloc(overlay_target_cache, KM_SLEEP);
usr/src/uts/common/io/overlay/overlay_target.c
506
offsetof(overlay_target_entry_t, ote_addr), KM_SLEEP);
usr/src/uts/common/io/overlay/overlay_target.c
771
pkt = kmem_alloc(sizeof (overlay_targ_pkt_t), KM_SLEEP);
usr/src/uts/common/io/overlay/overlay_target.c
999
otl = kmem_zalloc(*bsize, KM_SLEEP);
usr/src/uts/common/io/overlay/plugins/overlay_vxlan.c
95
vxl = kmem_alloc(sizeof (vxlan_t), KM_SLEEP);
usr/src/uts/common/io/pci_intr_lib.c
796
msix_p = kmem_zalloc(sizeof (ddi_intr_msix_t), KM_SLEEP);
usr/src/uts/common/io/pcic.c
1409
sizeof (ddi_intr_handle_t), KM_SLEEP);
usr/src/uts/common/io/pcic.c
1500
KM_SLEEP);
usr/src/uts/common/io/pcic.c
5895
KM_SLEEP);
usr/src/uts/common/io/pcic.c
6530
dbp = kmem_alloc(sizeof (struct debounce), KM_SLEEP);
usr/src/uts/common/io/pcic.c
720
pcic = kmem_zalloc(sizeof (pcicdev_t), KM_SLEEP);
usr/src/uts/common/io/pciex/hotplug/pcie_hp.c
1184
kmem_alloc(sizeof (char[MAXPATHLEN]), KM_SLEEP);
usr/src/uts/common/io/pciex/hotplug/pcie_hp.c
1293
((kmflag == KM_SLEEP) ? DDI_SLEEP : DDI_NOSLEEP));
usr/src/uts/common/io/pciex/hotplug/pcie_hp.c
135
if ((packed = kmem_alloc(packed_sz, KM_SLEEP)) == NULL)
usr/src/uts/common/io/pciex/hotplug/pcie_hp.c
145
if ((ret = nvlist_unpack(packed, packed_sz, &dest, KM_SLEEP)) != 0) {
usr/src/uts/common/io/pciex/hotplug/pcie_hp.c
501
occupant = kmem_alloc(sizeof (pcie_hp_occupant_info_t), KM_SLEEP);
usr/src/uts/common/io/pciex/hotplug/pcie_hp.c
733
cn_info->cn_name = (char *)kmem_zalloc(name_len, KM_SLEEP);
usr/src/uts/common/io/pciex/hotplug/pcie_hp.c
802
cn_info->cn_name = ddi_strdup(cn_name, KM_SLEEP);
usr/src/uts/common/io/pciex/hotplug/pcie_hp.c
857
cn_info = kmem_zalloc(sizeof (ddi_hp_cn_info_t), KM_SLEEP);
usr/src/uts/common/io/pciex/hotplug/pciehpc.c
1109
slot_p->hs_info.cn_name = ddi_strdup(tmp_name, KM_SLEEP);
usr/src/uts/common/io/pciex/hotplug/pciehpc.c
1115
KM_SLEEP);
usr/src/uts/common/io/pciex/hotplug/pciehpc.c
1122
KM_SLEEP);
usr/src/uts/common/io/pciex/hotplug/pciehpc.c
1703
sync = kmem_alloc(sizeof (pciehpc_sync_task_t), KM_SLEEP);
usr/src/uts/common/io/pciex/hotplug/pciehpc.c
1996
ctrl_p = kmem_zalloc(sizeof (pcie_hp_ctrl_t), KM_SLEEP);
usr/src/uts/common/io/pciex/hotplug/pciehpc.c
2000
ctrl_p->hc_slots[0] = kmem_zalloc(sizeof (pcie_hp_slot_t), KM_SLEEP);
usr/src/uts/common/io/pciex/hotplug/pciehpc.c
3591
KM_SLEEP);
usr/src/uts/common/io/pciex/hotplug/pcishpc.c
1763
KM_SLEEP);
usr/src/uts/common/io/pciex/hotplug/pcishpc.c
1982
KM_SLEEP);
usr/src/uts/common/io/pciex/hotplug/pcishpc.c
1999
slot_p->hs_info.cn_name = i_ddi_strdup(tmp_name, KM_SLEEP);
usr/src/uts/common/io/pciex/hotplug/pcishpc.c
2005
slot_p->hs_info.cn_name = i_ddi_strdup(tmp_name, KM_SLEEP);
usr/src/uts/common/io/pciex/hotplug/pcishpc.c
847
ctrl_p = kmem_zalloc(sizeof (pcie_hp_ctrl_t), KM_SLEEP);
usr/src/uts/common/io/pciex/hotplug/pcishpc.c
977
slot_p = kmem_zalloc(sizeof (pcie_hp_slot_t), KM_SLEEP);
usr/src/uts/common/io/pciex/pcie.c
1428
bus_p = (pcie_bus_t *)kmem_zalloc(sizeof (pcie_bus_t), KM_SLEEP);
usr/src/uts/common/io/pciex/pcie.c
1919
bus_p = kmem_zalloc(sizeof (pcie_bus_t), KM_SLEEP);
usr/src/uts/common/io/pciex/pcie.c
3087
bus_p->bus_lbw_pbuf = kmem_zalloc(MAXPATHLEN, KM_SLEEP);
usr/src/uts/common/io/pciex/pcie.c
3088
bus_p->bus_lbw_cbuf = kmem_zalloc(MAXPATHLEN, KM_SLEEP);
usr/src/uts/common/io/pciex/pcie.c
649
pcie_nv_buf = kmem_alloc(ERPT_DATA_SZ, KM_SLEEP);
usr/src/uts/common/io/pciex/pcie_pwr.c
546
sizeof (pcie_pm_t), KM_SLEEP);
usr/src/uts/common/io/pciex/pcie_pwr.c
550
KM_SLEEP);
usr/src/uts/common/io/pciex/pcie_pwr.c
611
sizeof (pcie_pm_t), KM_SLEEP);
usr/src/uts/common/io/pciex/pcie_pwr.c
615
pwr_p = (pcie_pwr_t *)kmem_zalloc(sizeof (pcie_pwr_t), KM_SLEEP);
usr/src/uts/common/io/pciex/pcieb.c
1196
KM_SLEEP);
usr/src/uts/common/io/pckt.c
225
pip = kmem_zalloc(sizeof (*pip), KM_SLEEP);
usr/src/uts/common/io/pcn/pcn.c
1548
buf = kmem_zalloc(sizeof (*buf), KM_SLEEP);
usr/src/uts/common/io/pcn/pcn.c
1619
KM_SLEEP);
usr/src/uts/common/io/pcn/pcn.c
1676
KM_SLEEP);
usr/src/uts/common/io/pfmod.c
178
pfp = kmem_alloc(sizeof (struct epacketfilt), KM_SLEEP);
usr/src/uts/common/io/physmem.c
213
newp = kmem_zalloc(sizeof (struct physmem_proc_hash), KM_SLEEP);
usr/src/uts/common/io/physmem.c
369
php = kmem_zalloc(sizeof (struct physmem_hash), KM_SLEEP);
usr/src/uts/common/io/physmem.c
376
vp = vn_alloc(KM_SLEEP);
usr/src/uts/common/io/pm.c
1064
req.data = kmem_alloc(req.datasize, KM_SLEEP);
usr/src/uts/common/io/pm.c
1176
req.data = kmem_alloc(req.datasize, KM_SLEEP);
usr/src/uts/common/io/pm.c
1593
rp = kmem_zalloc(size, KM_SLEEP);
usr/src/uts/common/io/pm.c
1739
rp = kmem_zalloc(size, KM_SLEEP);
usr/src/uts/common/io/pm.c
1945
KM_SLEEP);
usr/src/uts/common/io/pm.c
2330
physpath = kmem_zalloc(1, KM_SLEEP);
usr/src/uts/common/io/pm.c
2340
physpath = kmem_zalloc(physlen, KM_SLEEP);
usr/src/uts/common/io/pm.c
2465
physpath = kmem_zalloc(physlen, KM_SLEEP);
usr/src/uts/common/io/pm.c
257
pathbuf = kmem_alloc(MAXPATHLEN, KM_SLEEP);
usr/src/uts/common/io/ppm/ppm.c
1160
kmflag = KM_SLEEP;
usr/src/uts/common/io/ppm/ppm.c
473
domain = kmem_zalloc(MAXNAMELEN, KM_SLEEP);
usr/src/uts/common/io/ppm/ppm.c
552
path = kmem_zalloc(MAXPATHLEN, KM_SLEEP);
usr/src/uts/common/io/ppm/ppm.c
604
domain = kmem_zalloc(MAXNAMELEN, KM_SLEEP);
usr/src/uts/common/io/ppm/ppm.c
624
if ((d = devlist = kmem_zalloc(size, KM_SLEEP)) == NULL)
usr/src/uts/common/io/ppm/ppm.c
693
path = kmem_zalloc(MAXPATHLEN, KM_SLEEP);
usr/src/uts/common/io/ppm/ppm_subr.c
1103
line = kmem_alloc(len + 1, KM_SLEEP);
usr/src/uts/common/io/ppm/ppm_subr.c
1110
kmem_zalloc((sizeof (char *) * (count + 1)), KM_SLEEP);
usr/src/uts/common/io/ppm/ppm_subr.c
1130
dc->path = kmem_zalloc((strlen(f) + 1), KM_SLEEP);
usr/src/uts/common/io/ppm/ppm_subr.c
249
domdata.name = kmem_zalloc(strlen(PPM_DOMAIN_PROP) + 1, KM_SLEEP);
usr/src/uts/common/io/ppm/ppm_subr.c
260
domp = kmem_zalloc(sizeof (*domp), KM_SLEEP);
usr/src/uts/common/io/ppm/ppm_subr.c
261
domp->name = kmem_zalloc(strlen(*dom_namep) + 1, KM_SLEEP);
usr/src/uts/common/io/ppm/ppm_subr.c
288
modeldata.name = kmem_zalloc(plen, KM_SLEEP);
usr/src/uts/common/io/ppm/ppm_subr.c
318
propnamedata.name = kmem_zalloc(plen, KM_SLEEP);
usr/src/uts/common/io/ppm/ppm_subr.c
326
(strlen(*propnamedata.strings) + 1), KM_SLEEP);
usr/src/uts/common/io/ppm/ppm_subr.c
337
devdata.name = kmem_zalloc(plen, KM_SLEEP);
usr/src/uts/common/io/ppm/ppm_subr.c
364
dcdata.name = kmem_zalloc(plen, KM_SLEEP);
usr/src/uts/common/io/ppm/ppm_subr.c
373
dc = kmem_zalloc(sizeof (*dc), KM_SLEEP);
usr/src/uts/common/io/ppm/ppm_subr.c
502
dbp = kmem_zalloc(sizeof (struct ppm_db), KM_SLEEP);
usr/src/uts/common/io/ppm/ppm_subr.c
503
dbp->name = kmem_zalloc((strlen(path) + 1), KM_SLEEP);
usr/src/uts/common/io/ppm/ppm_subr.c
658
new_owned = kmem_zalloc(sizeof (*new_owned), KM_SLEEP);
usr/src/uts/common/io/ppm/ppm_subr.c
659
new_owned->path = kmem_zalloc(strlen(path) + 1, KM_SLEEP);
usr/src/uts/common/io/ppm/ppm_subr.c
690
new = kmem_zalloc(sizeof (*new), KM_SLEEP);
usr/src/uts/common/io/ppm/ppm_subr.c
691
new->path = kmem_zalloc(strlen(path) + 1, KM_SLEEP);
usr/src/uts/common/io/ppp/sppp/sppp.c
179
sps = (spppstr_t *)kmem_zalloc(sizeof (spppstr_t), KM_SLEEP);
usr/src/uts/common/io/ppp/spppasyn/spppasyn.c
406
state = (sppp_ahdlc_t *)kmem_zalloc(sizeof (sppp_ahdlc_t), KM_SLEEP);
usr/src/uts/common/io/ppp/spppcomp/deflate.c
217
state = (struct deflate_state *)kmem_zalloc(sizeof (*state), KM_SLEEP);
usr/src/uts/common/io/ppp/spppcomp/deflate.c
671
state = (struct deflate_state *)kmem_zalloc(sizeof (*state), KM_SLEEP);
usr/src/uts/common/io/ppp/spppcomp/spppcomp.c
245
cp = kmem_zalloc(sizeof (sppp_comp_t), KM_SLEEP);
usr/src/uts/common/io/ppp/sppptun/sppptun.c
2431
tcl_slots = kmem_zalloc(tcl_nslots * sizeof (tuncl_t *), KM_SLEEP);
usr/src/uts/common/io/ppp/sppptun/sppptun.c
454
tll = kmem_zalloc(sizeof (tunll_t), KM_SLEEP);
usr/src/uts/common/io/pshot.c
2564
devstr = i_ddi_strdup(devname, KM_SLEEP);
usr/src/uts/common/io/pshot.c
3139
KM_SLEEP);
usr/src/uts/common/io/pshot.c
3146
i_ddi_strdup(src[i].name, KM_SLEEP);
usr/src/uts/common/io/pshot.c
3149
i_ddi_strdup(src[i].nodetype, KM_SLEEP);
usr/src/uts/common/io/pshot.c
3152
i_ddi_strdup(src[i].compat, KM_SLEEP);
usr/src/uts/common/io/pshot.c
3252
devarr = kmem_zalloc(name_arr_len * sizeof (*devarr), KM_SLEEP);
usr/src/uts/common/io/pshot.c
3254
devarr[i].name = i_ddi_strdup(name_arr[i], KM_SLEEP);
usr/src/uts/common/io/pshot.c
3255
devarr[i].compat = i_ddi_strdup(compat_arr[i], KM_SLEEP);
usr/src/uts/common/io/pshot.c
3262
devarr[i].nodetype = i_ddi_strdup(str, KM_SLEEP);
usr/src/uts/common/io/ptem.c
173
ntp = kmem_alloc(sizeof (*ntp), KM_SLEEP);
usr/src/uts/common/io/ptms_conf.c
279
sizeof (struct pt_ttys *), KM_SLEEP);
usr/src/uts/common/io/qede/579xx/drivers/ecore/bcm_osal.h
92
#define GFP_KERNEL KM_SLEEP
usr/src/uts/common/io/qede/qede_gld.c
1627
buf = kmem_zalloc(size, KM_SLEEP);
usr/src/uts/common/io/qede/qede_main.c
1100
intr_ctx->intr_hdl_array_size, KM_SLEEP);
usr/src/uts/common/io/qede/qede_main.c
1103
intr_ctx->intr_vect_info_array_size, KM_SLEEP);
usr/src/uts/common/io/qede/qede_main.c
2391
rx_buf_area = kmem_zalloc(sizeof (*rx_buf_area), KM_SLEEP);
usr/src/uts/common/io/qede/qede_main.c
2543
bcopy_list = kmem_zalloc(size, KM_SLEEP);
usr/src/uts/common/io/qede/qede_main.c
2626
dmah_list = kmem_zalloc(size, KM_SLEEP);
usr/src/uts/common/io/qede/qede_main.c
2720
recycle_list = kmem_zalloc(size, KM_SLEEP);
usr/src/uts/common/io/qede/qede_main.c
3349
if ((qede = kmem_zalloc(sizeof (qede_t), KM_SLEEP)) == NULL) {
usr/src/uts/common/io/ral/rt2560.c
582
KM_SLEEP);
usr/src/uts/common/io/ral/rt2560.c
584
KM_SLEEP);
usr/src/uts/common/io/ral/rt2560.c
708
KM_SLEEP);
usr/src/uts/common/io/ral/rt2560.c
710
KM_SLEEP);
usr/src/uts/common/io/ral/rt2560.c
791
rn = kmem_zalloc(sizeof (struct rt2560_node), KM_SLEEP);
usr/src/uts/common/io/rge/rge_main.c
1326
rgep->htable = kmem_alloc(intr_size, KM_SLEEP);
usr/src/uts/common/io/rge/rge_main.c
1601
rgep = kmem_zalloc(sizeof (*rgep), KM_SLEEP);
usr/src/uts/common/io/rge/rge_main.c
480
ssbdp = kmem_zalloc(RGE_SEND_SLOTS*sizeof (*ssbdp), KM_SLEEP);
usr/src/uts/common/io/rge/rge_main.c
527
srbdp = kmem_zalloc(RGE_RECV_SLOTS*sizeof (*srbdp), KM_SLEEP);
usr/src/uts/common/io/rge/rge_main.c
540
kmem_zalloc(sizeof (dma_buf_t), KM_SLEEP);
usr/src/uts/common/io/rge/rge_main.c
594
free_srbdp = kmem_zalloc(RGE_BUF_SLOTS*sizeof (*free_srbdp), KM_SLEEP);
usr/src/uts/common/io/rge/rge_main.c
606
kmem_zalloc(sizeof (dma_buf_t), KM_SLEEP);
usr/src/uts/common/io/rlmod.c
220
rmip = kmem_zalloc(sizeof (*rmip), KM_SLEEP);
usr/src/uts/common/io/rsm/rsm.c
1200
KM_SLEEP);
usr/src/uts/common/io/rsm/rsm.c
1227
blk = (rsmresource_blk_t *)kmem_zalloc(sizeof (*blk), KM_SLEEP);
usr/src/uts/common/io/rsm/rsm.c
1629
kmem_zalloc(size * sizeof (rsmresource_t *), KM_SLEEP);
usr/src/uts/common/io/rsm/rsm.c
1713
shdatap = kmem_zalloc(sizeof (rsm_import_share_t), KM_SLEEP);
usr/src/uts/common/io/rsm/rsm.c
1770
new_token = kmem_zalloc(sizeof (importing_token_t), KM_SLEEP);
usr/src/uts/common/io/rsm/rsm.c
1910
new = (rsmseg_t *)kmem_zalloc(sizeof (*new), KM_SLEEP);
usr/src/uts/common/io/rsm/rsm.c
2680
acl = kmem_alloc(acl_size, KM_SLEEP);
usr/src/uts/common/io/rsm/rsm.c
2727
acl = kmem_alloc(acl_size, KM_SLEEP);
usr/src/uts/common/io/rsm/rsm.c
3219
tmp_acl = kmem_zalloc(new_acl_len*sizeof (*tmp_acl), KM_SLEEP);
usr/src/uts/common/io/rsm/rsm.c
5718
rp = kmem_zalloc(sizeof (republish_token_t), KM_SLEEP);
usr/src/uts/common/io/rsm/rsm.c
5788
KM_SLEEP);
usr/src/uts/common/io/rsm/rsm.c
7097
evlist32 = kmem_zalloc(evlistsz32, KM_SLEEP);
usr/src/uts/common/io/rsm/rsm.c
7117
evlist = kmem_zalloc(evlistsz, KM_SLEEP);
usr/src/uts/common/io/rsm/rsm.c
7157
evlist = kmem_zalloc(evlistsz, KM_SLEEP);
usr/src/uts/common/io/rsm/rsm.c
7199
evlist32 = kmem_zalloc(evlistsz32, KM_SLEEP);
usr/src/uts/common/io/rsm/rsm.c
7315
iovec32_base = iovec32 = kmem_zalloc(size, KM_SLEEP);
usr/src/uts/common/io/rsm/rsm.c
7509
ka_iovec_start = ka_iovec = kmem_zalloc(ka_size, KM_SLEEP);
usr/src/uts/common/io/rsm/rsm.c
7591
iovec_start = iovec = kmem_zalloc(size, KM_SLEEP);
usr/src/uts/common/io/rsm/rsm.c
8222
p = kmem_alloc(sizeof (*p), KM_SLEEP);
usr/src/uts/common/io/rsm/rsm.c
8321
p = kmem_alloc(sizeof (*p), KM_SLEEP);
usr/src/uts/common/io/rsm/rsm.c
846
kmem_zalloc(rsm_hash_size * sizeof (importing_token_t *), KM_SLEEP);
usr/src/uts/common/io/rsm/rsm.c
854
p = (rsmresource_t *)kmem_zalloc(sizeof (*p), KM_SLEEP);
usr/src/uts/common/io/rsm/rsm.c
8747
p = kmem_alloc(sizeof (*p), KM_SLEEP);
usr/src/uts/common/io/rsm/rsmka_pathmanager.c
1799
listhead = kmem_zalloc(sizeof (adapter_listhead_t), KM_SLEEP);
usr/src/uts/common/io/rsm/rsmka_pathmanager.c
1982
adapter = kmem_zalloc(sizeof (adapter_t), KM_SLEEP);
usr/src/uts/common/io/rsm/rsmka_pathmanager.c
2391
ipc_info = kmem_zalloc(sizeof (ipc_info_t), KM_SLEEP);
usr/src/uts/common/io/rsm/rsmka_pathmanager.c
2945
bufp = kmem_zalloc(request_size, KM_SLEEP);
usr/src/uts/common/io/rsm/rsmka_pathmanager.c
715
srv_hdlr_argp = kmem_zalloc(sizeof (srv_handler_arg_t), KM_SLEEP);
usr/src/uts/common/io/rsm/rsmka_pathmanager.c
877
path = kmem_zalloc(sizeof (path_t), KM_SLEEP);
usr/src/uts/common/io/rsm/rsmka_pathmanager.c
913
RSMIPC_MAX_MESSAGES * sizeof (msgbuf_elem_t), KM_SLEEP);
usr/src/uts/common/io/rsm/rsmops.c
147
p = kmem_alloc(sizeof (rsmops_drv_t), KM_SLEEP);
usr/src/uts/common/io/rsm/rsmops.c
443
p_ctrl = kmem_alloc(sizeof (rsmops_ctrl_t), KM_SLEEP);
usr/src/uts/common/io/rtls/rtls.c
435
rtlsp = kmem_zalloc(sizeof (rtls_t), KM_SLEEP);
usr/src/uts/common/io/rtw/rtw.c
1255
txbf = (struct rtw_txbuf *)kmem_zalloc(buflen, KM_SLEEP);
usr/src/uts/common/io/rtw/rtw.c
1284
rxbf = (struct rtw_rxbuf *)kmem_zalloc(buflen, KM_SLEEP);
usr/src/uts/common/io/rtw/rtw.c
817
sr->sr_content = kmem_zalloc(sr->sr_size, KM_SLEEP);
usr/src/uts/common/io/rtw/rtwphy.c
449
sa = (struct rtw_sa2400 *)kmem_zalloc(sizeof (*sa), KM_SLEEP);
usr/src/uts/common/io/rtw/rtwphy.c
597
mx = (struct rtw_max2820 *)kmem_zalloc(sizeof (*mx), KM_SLEEP);
usr/src/uts/common/io/rwd/rt2661.c
2078
rn = kmem_zalloc(sizeof (struct rt2661_node), KM_SLEEP);
usr/src/uts/common/io/rwd/rt2661.c
2918
sc->sc_intr_htable = kmem_zalloc(sizeof (ddi_intr_handle_t), KM_SLEEP);
usr/src/uts/common/io/sad_conf.c
209
ap_new = kmem_zalloc(sizeof (struct autopush), KM_SLEEP);
usr/src/uts/common/io/sad_conf.c
297
KM_SLEEP);
usr/src/uts/common/io/sad_conf.c
301
sad_hash_alg, NULL, sad_hash_keycmp, KM_SLEEP);
usr/src/uts/common/io/sata/adapters/ahci/ahci.c
1291
sata_hba_tran = kmem_zalloc(sizeof (sata_hba_tran_t), KM_SLEEP);
usr/src/uts/common/io/sata/adapters/ahci/ahci.c
3908
kmem_zalloc(sizeof (ahci_pmult_info_t), KM_SLEEP);
usr/src/uts/common/io/sata/adapters/ahci/ahci.c
6134
(ahci_port_t *)kmem_zalloc(sizeof (ahci_port_t), KM_SLEEP);
usr/src/uts/common/io/sata/adapters/ahci/ahci.c
6180
kmem_zalloc(sizeof (ahci_event_arg_t), KM_SLEEP);
usr/src/uts/common/io/sata/adapters/ahci/ahci.c
6183
kmem_zalloc(sizeof (ahci_addr_t), KM_SLEEP);
usr/src/uts/common/io/sata/adapters/ahci/ahci.c
8286
kmem_alloc(ahci_ctlp->ahcictl_intr_size, KM_SLEEP);
usr/src/uts/common/io/sata/adapters/nv_sata/nv_sata.c
2731
KM_SLEEP);
usr/src/uts/common/io/sata/adapters/nv_sata/nv_sata.c
2821
NV_QUEUE_SLOTS, KM_SLEEP);
usr/src/uts/common/io/sata/adapters/nv_sata/nv_sata.c
2824
NV_QUEUE_SLOTS, KM_SLEEP);
usr/src/uts/common/io/sata/adapters/nv_sata/nv_sata.c
2827
NV_QUEUE_SLOTS, KM_SLEEP);
usr/src/uts/common/io/sata/adapters/nv_sata/nv_sata.c
2830
NV_QUEUE_SLOTS, KM_SLEEP);
usr/src/uts/common/io/sata/adapters/nv_sata/nv_sata.c
2833
KM_SLEEP);
usr/src/uts/common/io/sata/adapters/nv_sata/nv_sata.c
3804
nvc->nvc_htable = kmem_zalloc(nvc->nvc_intr_size, KM_SLEEP);
usr/src/uts/common/io/sata/adapters/nv_sata/nv_sata.c
3929
nvc->nvc_htable = kmem_alloc(nvc->nvc_intr_size, KM_SLEEP);
usr/src/uts/common/io/sata/adapters/nv_sata/nv_sata.c
6551
KM_SLEEP);
usr/src/uts/common/io/sata/adapters/si3124/si3124.c
1056
sata_hba_tran = kmem_zalloc(sizeof (sata_hba_tran_t), KM_SLEEP);
usr/src/uts/common/io/sata/adapters/si3124/si3124.c
1943
sizeof (si_port_state_t), KM_SLEEP);
usr/src/uts/common/io/sata/adapters/si3124/si3124.c
1965
kmem_zalloc(sizeof (si_event_arg_t), KM_SLEEP);
usr/src/uts/common/io/sata/adapters/si3124/si3124.c
4925
si_ctlp->sictl_htable = kmem_zalloc(si_ctlp->sictl_intr_size, KM_SLEEP);
usr/src/uts/common/io/sata/adapters/si3124/si3124.c
5043
si_ctlp->sictl_htable = kmem_alloc(si_ctlp->sictl_intr_size, KM_SLEEP);
usr/src/uts/common/io/sata/impl/sata.c
10054
lbuf = kmem_zalloc(512, KM_SLEEP);
usr/src/uts/common/io/sata/impl/sata.c
10114
lbuf = kmem_zalloc(512, KM_SLEEP);
usr/src/uts/common/io/sata/impl/sata.c
10890
spx = kmem_zalloc(sizeof (sata_pkt_txlate_t), KM_SLEEP);
usr/src/uts/common/io/sata/impl/sata.c
11105
spx = kmem_zalloc(sizeof (sata_pkt_txlate_t), KM_SLEEP);
usr/src/uts/common/io/sata/impl/sata.c
11379
cportinfo = kmem_zalloc(sizeof (sata_cport_info_t), KM_SLEEP);
usr/src/uts/common/io/sata/impl/sata.c
11445
KM_SLEEP);
usr/src/uts/common/io/sata/impl/sata.c
11555
kmem_zalloc(sizeof (sata_drive_info_t), KM_SLEEP);
usr/src/uts/common/io/sata/impl/sata.c
12262
sizeof (sata_drive_info_t), KM_SLEEP);
usr/src/uts/common/io/sata/impl/sata.c
12725
KM_SLEEP);
usr/src/uts/common/io/sata/impl/sata.c
12858
kmem_zalloc(sizeof (sata_pmult_info_t), KM_SLEEP);
usr/src/uts/common/io/sata/impl/sata.c
12902
pmportinfo = kmem_zalloc(sizeof (sata_pmport_info_t), KM_SLEEP);
usr/src/uts/common/io/sata/impl/sata.c
14069
kmsflag = (callback == SLEEP_FUNC) ? KM_SLEEP : KM_NOSLEEP;
usr/src/uts/common/io/sata/impl/sata.c
14459
KM_SLEEP);
usr/src/uts/common/io/sata/impl/sata.c
14644
spx = kmem_zalloc(sizeof (sata_pkt_txlate_t), KM_SLEEP);
usr/src/uts/common/io/sata/impl/sata.c
14938
spx = kmem_zalloc(sizeof (sata_pkt_txlate_t), KM_SLEEP);
usr/src/uts/common/io/sata/impl/sata.c
15017
spx = kmem_zalloc(sizeof (sata_pkt_txlate_t), KM_SLEEP);
usr/src/uts/common/io/sata/impl/sata.c
15102
spx = kmem_zalloc(sizeof (sata_pkt_txlate_t), KM_SLEEP);
usr/src/uts/common/io/sata/impl/sata.c
17364
hwid = kmem_zalloc(LEGACY_HWID_LEN, KM_SLEEP);
usr/src/uts/common/io/sata/impl/sata.c
17647
spx = kmem_zalloc(sizeof (sata_pkt_txlate_t), KM_SLEEP);
usr/src/uts/common/io/sata/impl/sata.c
17749
spx = kmem_zalloc(sizeof (sata_pkt_txlate_t), KM_SLEEP);
usr/src/uts/common/io/sata/impl/sata.c
17858
spx = kmem_zalloc(sizeof (*spx), KM_SLEEP);
usr/src/uts/common/io/sata/impl/sata.c
17973
spx = kmem_zalloc(sizeof (sata_pkt_txlate_t), KM_SLEEP);
usr/src/uts/common/io/sata/impl/sata.c
18081
spx = kmem_zalloc(sizeof (sata_pkt_txlate_t), KM_SLEEP);
usr/src/uts/common/io/sata/impl/sata.c
1893
spx = kmem_zalloc(sizeof (sata_pkt_txlate_t), KM_SLEEP);
usr/src/uts/common/io/sata/impl/sata.c
1994
spx = kmem_zalloc(sizeof (sata_pkt_txlate_t), KM_SLEEP);
usr/src/uts/common/io/sata/impl/sata.c
21923
sata_debug_rbuf = kmem_zalloc(sizeof (sata_trace_rbuf_t), KM_SLEEP);
usr/src/uts/common/io/sata/impl/sata.c
5178
data = kmem_zalloc(bdlen, KM_SLEEP);
usr/src/uts/common/io/sata/impl/sata.c
5304
buf = kmem_zalloc(1024, KM_SLEEP);
usr/src/uts/common/io/sata/impl/sata.c
6148
buf = kmem_zalloc(MAX_LOG_SENSE_PAGE_SIZE, KM_SLEEP);
usr/src/uts/common/io/sata/impl/sata.c
9258
lbuf = kmem_zalloc(512, KM_SLEEP);
usr/src/uts/common/io/sata/impl/sata.c
9338
sizeof (struct smart_ext_selftest_log), KM_SLEEP);
usr/src/uts/common/io/sata/impl/sata.c
948
sata_hba_inst = kmem_zalloc(sizeof (struct sata_hba_inst), KM_SLEEP);
usr/src/uts/common/io/sata/impl/sata.c
9569
KM_SLEEP);
usr/src/uts/common/io/sata/impl/sata.c
9814
smart_data = kmem_zalloc(512, KM_SLEEP);
usr/src/uts/common/io/sata/impl/sata.c
9844
lbuf = kmem_zalloc(512, KM_SLEEP);
usr/src/uts/common/io/sbp2/cfgrom.c
207
cep->ce_data.leaf = kmem_zalloc(cep->ce_len * 4, KM_SLEEP);
usr/src/uts/common/io/sbp2/cfgrom.c
241
cbp->cb_buf = kmem_zalloc(cbp->cb_len * 4, KM_SLEEP);
usr/src/uts/common/io/sbp2/cfgrom.c
273
new_ent = kmem_zalloc(new_size, KM_SLEEP);
usr/src/uts/common/io/sbp2/sbp2.c
1324
task->ts_buf = kmem_zalloc(sizeof (sbp2_bus_buf_t), KM_SLEEP);
usr/src/uts/common/io/sbp2/sbp2.c
154
tp = kmem_zalloc(sizeof (sbp2_tgt_t), KM_SLEEP);
usr/src/uts/common/io/sbp2/sbp2.c
268
tp->t_lun = kmem_zalloc(maxluns * sizeof (sbp2_lun_t), KM_SLEEP);
usr/src/uts/common/io/sbp2/sbp2.c
731
sp = kmem_zalloc(sizeof (sbp2_ses_t), KM_SLEEP);
usr/src/uts/common/io/scsi/adapters/iscsi/iscsi.c
1200
name = kmem_zalloc(MAX_GET_NAME_SIZE, KM_SLEEP);
usr/src/uts/common/io/scsi/adapters/iscsi/iscsi.c
1558
ilg = (iscsi_param_get_t *)kmem_alloc(sizeof (*ilg), KM_SLEEP);
usr/src/uts/common/io/scsi/adapters/iscsi/iscsi.c
1633
KM_SLEEP);
usr/src/uts/common/io/scsi/adapters/iscsi/iscsi.c
1732
ils = (iscsi_param_set_t *)kmem_alloc(sizeof (*ils), KM_SLEEP);
usr/src/uts/common/io/scsi/adapters/iscsi/iscsi.c
1746
initiator_node_name = kmem_zalloc(ISCSI_MAX_NAME_LEN, KM_SLEEP);
usr/src/uts/common/io/scsi/adapters/iscsi/iscsi.c
1821
KM_SLEEP);
usr/src/uts/common/io/scsi/adapters/iscsi/iscsi.c
1849
ils = (iscsi_param_set_t *)kmem_alloc(sizeof (*ils), KM_SLEEP);
usr/src/uts/common/io/scsi/adapters/iscsi/iscsi.c
1934
name = kmem_zalloc(ISCSI_MAX_NAME_LEN, KM_SLEEP);
usr/src/uts/common/io/scsi/adapters/iscsi/iscsi.c
1961
ics = kmem_zalloc(sizeof (*ics), KM_SLEEP);
usr/src/uts/common/io/scsi/adapters/iscsi/iscsi.c
2119
idlp = kmem_zalloc(list_space, KM_SLEEP);
usr/src/uts/common/io/scsi/adapters/iscsi/iscsi.c
2169
target_name = kmem_zalloc(ISCSI_MAX_NAME_LEN, KM_SLEEP);
usr/src/uts/common/io/scsi/adapters/iscsi/iscsi.c
2234
KM_SLEEP);
usr/src/uts/common/io/scsi/adapters/iscsi/iscsi.c
2277
ialp = (iscsi_addr_list_t *)kmem_zalloc(list_space, KM_SLEEP);
usr/src/uts/common/io/scsi/adapters/iscsi/iscsi.c
2343
KM_SLEEP);
usr/src/uts/common/io/scsi/adapters/iscsi/iscsi.c
2401
KM_SLEEP);
usr/src/uts/common/io/scsi/adapters/iscsi/iscsi.c
2452
(sizeof (iscsi_chap_props_t), KM_SLEEP);
usr/src/uts/common/io/scsi/adapters/iscsi/iscsi.c
2484
KM_SLEEP);
usr/src/uts/common/io/scsi/adapters/iscsi/iscsi.c
2578
sizeof (*ispp), KM_SLEEP);
usr/src/uts/common/io/scsi/adapters/iscsi/iscsi.c
2660
name = kmem_zalloc(ISCSI_MAX_NAME_LEN, KM_SLEEP);
usr/src/uts/common/io/scsi/adapters/iscsi/iscsi.c
2746
name = kmem_zalloc(ISCSI_MAX_NAME_LEN, KM_SLEEP);
usr/src/uts/common/io/scsi/adapters/iscsi/iscsi.c
2859
KM_SLEEP);
usr/src/uts/common/io/scsi/adapters/iscsi/iscsi.c
2877
KM_SLEEP);
usr/src/uts/common/io/scsi/adapters/iscsi/iscsi.c
2974
ialp = kmem_zalloc(list_space, KM_SLEEP);
usr/src/uts/common/io/scsi/adapters/iscsi/iscsi.c
3030
ialp = kmem_zalloc(list_space, KM_SLEEP);
usr/src/uts/common/io/scsi/adapters/iscsi/iscsi.c
3199
ISCSI_MAX_NAME_LEN, KM_SLEEP);
usr/src/uts/common/io/scsi/adapters/iscsi/iscsi.c
3305
ll = (iscsi_lun_list_t *)kmem_alloc(sizeof (*ll), KM_SLEEP);
usr/src/uts/common/io/scsi/adapters/iscsi/iscsi.c
3327
llp = kmem_zalloc(lun_sz, KM_SLEEP);
usr/src/uts/common/io/scsi/adapters/iscsi/iscsi.c
3398
lun = (iscsi_lun_props_t *)kmem_zalloc(sizeof (*lun), KM_SLEEP);
usr/src/uts/common/io/scsi/adapters/iscsi/iscsi.c
3538
KM_SLEEP);
usr/src/uts/common/io/scsi/adapters/iscsi/iscsi.c
3585
KM_SLEEP);
usr/src/uts/common/io/scsi/adapters/iscsi/iscsi.c
3620
KM_SLEEP);
usr/src/uts/common/io/scsi/adapters/iscsi/iscsi.c
3689
KM_SLEEP);
usr/src/uts/common/io/scsi/adapters/iscsi/iscsi.c
3747
KM_SLEEP);
usr/src/uts/common/io/scsi/adapters/iscsi/iscsi.c
3899
iu.iu_ucmd.uscsi_buflen, KM_SLEEP);
usr/src/uts/common/io/scsi/adapters/iscsi/iscsi.c
3915
iu_caller.iu_ucmd.uscsi_cdblen, KM_SLEEP);
usr/src/uts/common/io/scsi/adapters/iscsi/iscsi.c
3935
iu.iu_ucmd.uscsi_rqlen, KM_SLEEP);
usr/src/uts/common/io/scsi/adapters/iscsi/iscsi.c
4136
istl = kmem_zalloc(stl_sz, KM_SLEEP);
usr/src/uts/common/io/scsi/adapters/iscsi/iscsi.c
4176
initiator_node_name = kmem_zalloc(ISCSI_MAX_NAME_LEN, KM_SLEEP);
usr/src/uts/common/io/scsi/adapters/iscsi/iscsi.c
4198
ISCSI_MAX_NAME_LEN, KM_SLEEP);
usr/src/uts/common/io/scsi/adapters/iscsi/iscsi.c
4272
server_pg_list_sz, KM_SLEEP);
usr/src/uts/common/io/scsi/adapters/iscsi/iscsi.c
4457
reenum = (iscsi_reen_t *)kmem_alloc(size, KM_SLEEP);
usr/src/uts/common/io/scsi/adapters/iscsi/iscsi.c
4498
KM_SLEEP);
usr/src/uts/common/io/scsi/adapters/iscsi/iscsi.c
4510
KM_SLEEP);
usr/src/uts/common/io/scsi/adapters/iscsi/iscsi.c
5166
tmp = kmem_zalloc(MAX_GET_NAME_SIZE, KM_SLEEP);
usr/src/uts/common/io/scsi/adapters/iscsi/iscsi.c
5210
tmp = kmem_zalloc(MAX_GET_NAME_SIZE, KM_SLEEP);
usr/src/uts/common/io/scsi/adapters/iscsi/iscsi.c
5270
pparam = (persistent_param_t *)kmem_zalloc(sizeof (*pparam), KM_SLEEP);
usr/src/uts/common/io/scsi/adapters/iscsi/iscsi.c
5296
pp = (persistent_param_t *)kmem_zalloc(sizeof (*pp), KM_SLEEP);
usr/src/uts/common/io/scsi/adapters/iscsi/iscsi.c
5539
KM_SLEEP);
usr/src/uts/common/io/scsi/adapters/iscsi/iscsi.c
694
init_node_name = kmem_zalloc(ISCSI_MAX_NAME_LEN, KM_SLEEP);
usr/src/uts/common/io/scsi/adapters/iscsi/iscsi_conn.c
1048
itp = kmem_zalloc(sizeof (iscsi_task_t), KM_SLEEP);
usr/src/uts/common/io/scsi/adapters/iscsi/iscsi_conn.c
201
itp = kmem_zalloc(sizeof (iscsi_task_t), KM_SLEEP);
usr/src/uts/common/io/scsi/adapters/iscsi/iscsi_conn.c
451
cn = kmem_alloc(sizeof (*cn), KM_SLEEP);
usr/src/uts/common/io/scsi/adapters/iscsi/iscsi_conn.c
837
ics = kmem_zalloc(size, KM_SLEEP);
usr/src/uts/common/io/scsi/adapters/iscsi/iscsi_conn.c
89
icp = (iscsi_conn_t *)kmem_zalloc(sizeof (iscsi_conn_t), KM_SLEEP);
usr/src/uts/common/io/scsi/adapters/iscsi/iscsi_conn.c
923
ics = kmem_zalloc(size, KM_SLEEP);
usr/src/uts/common/io/scsi/adapters/iscsi/iscsi_doorclt.c
253
buffer = (mybuffer_t *)kmem_zalloc(buffer_size, KM_SLEEP);
usr/src/uts/common/io/scsi/adapters/iscsi/iscsi_io.c
1472
itp = kmem_zalloc(sizeof (iscsi_task_t), KM_SLEEP);
usr/src/uts/common/io/scsi/adapters/iscsi/iscsi_io.c
1531
itp = kmem_zalloc(sizeof (iscsi_task_t), KM_SLEEP);
usr/src/uts/common/io/scsi/adapters/iscsi/iscsi_io.c
2160
pdu = kmem_zalloc(sizeof (idm_pdu_t), KM_SLEEP);
usr/src/uts/common/io/scsi/adapters/iscsi/iscsi_io.c
2172
ihp = kmem_zalloc(ADDLHDRSZ(cdblen), KM_SLEEP);
usr/src/uts/common/io/scsi/adapters/iscsi/iscsi_io.c
2179
ihp = kmem_zalloc(sizeof (iscsi_scsi_cmd_hdr_t), KM_SLEEP);
usr/src/uts/common/io/scsi/adapters/iscsi/iscsi_io.c
2230
tx_pdu = kmem_zalloc(sizeof (idm_pdu_t), KM_SLEEP);
usr/src/uts/common/io/scsi/adapters/iscsi/iscsi_io.c
2263
inohp = kmem_zalloc(sizeof (iscsi_nop_out_hdr_t), KM_SLEEP);
usr/src/uts/common/io/scsi/adapters/iscsi/iscsi_io.c
2298
istmh = kmem_zalloc(sizeof (iscsi_scsi_task_mgt_hdr_t), KM_SLEEP);
usr/src/uts/common/io/scsi/adapters/iscsi/iscsi_io.c
2335
istmh = kmem_zalloc(sizeof (iscsi_scsi_task_mgt_hdr_t), KM_SLEEP);
usr/src/uts/common/io/scsi/adapters/iscsi/iscsi_io.c
2385
ilh = kmem_zalloc(sizeof (iscsi_logout_hdr_t), KM_SLEEP);
usr/src/uts/common/io/scsi/adapters/iscsi/iscsi_io.c
2424
ith = kmem_zalloc(sizeof (iscsi_text_hdr_t), KM_SLEEP);
usr/src/uts/common/io/scsi/adapters/iscsi/iscsi_io.c
2466
new_icmdp = iscsi_cmd_alloc(icp, KM_SLEEP);
usr/src/uts/common/io/scsi/adapters/iscsi/iscsi_io.c
2778
icmdp = iscsi_cmd_alloc(icp, KM_SLEEP);
usr/src/uts/common/io/scsi/adapters/iscsi/iscsi_io.c
2870
icmdp = iscsi_cmd_alloc(icp, KM_SLEEP);
usr/src/uts/common/io/scsi/adapters/iscsi/iscsi_io.c
2990
bp = kmem_zalloc(sizeof (struct buf), KM_SLEEP);
usr/src/uts/common/io/scsi/adapters/iscsi/iscsi_io.c
2992
pkt = kmem_zalloc(sizeof (struct scsi_pkt), KM_SLEEP);
usr/src/uts/common/io/scsi/adapters/iscsi/iscsi_io.c
2994
icmdp = iscsi_cmd_alloc(NULL, KM_SLEEP);
usr/src/uts/common/io/scsi/adapters/iscsi/iscsi_io.c
3004
pkt->pkt_scbp = kmem_zalloc(statuslen, KM_SLEEP);
usr/src/uts/common/io/scsi/adapters/iscsi/iscsi_io.c
3005
pkt->pkt_cdbp = kmem_zalloc(ucmdp->uscsi_cdblen, KM_SLEEP);
usr/src/uts/common/io/scsi/adapters/iscsi/iscsi_ioctl.c
106
KM_SLEEP);
usr/src/uts/common/io/scsi/adapters/iscsi/iscsi_ioctl.c
1279
KM_SLEEP);
usr/src/uts/common/io/scsi/adapters/iscsi/iscsi_ioctl.c
371
data = kmem_zalloc(data_len, KM_SLEEP);
usr/src/uts/common/io/scsi/adapters/iscsi/iscsi_ioctl.c
535
tmp_buf = kmem_zalloc(tmp_buf_len, KM_SLEEP);
usr/src/uts/common/io/scsi/adapters/iscsi/iscsi_ioctl.c
57
data = kmem_alloc(size, KM_SLEEP);
usr/src/uts/common/io/scsi/adapters/iscsi/iscsi_ioctl.c
644
ipgp = (iscsi_param_get_t *)kmem_alloc(sizeof (*ipgp), KM_SLEEP);
usr/src/uts/common/io/scsi/adapters/iscsi/iscsi_ioctl.c
759
name = kmem_alloc(ISCSI_MAX_NAME_LEN, KM_SLEEP);
usr/src/uts/common/io/scsi/adapters/iscsi/iscsi_ioctl.c
778
KM_SLEEP);
usr/src/uts/common/io/scsi/adapters/iscsi/iscsi_ioctl.c
793
KM_SLEEP);
usr/src/uts/common/io/scsi/adapters/iscsi/iscsi_ioctl.c
833
KM_SLEEP);
usr/src/uts/common/io/scsi/adapters/iscsi/iscsi_ioctl.c
876
kmem_zalloc(sizeof (*pp), KM_SLEEP);
usr/src/uts/common/io/scsi/adapters/iscsi/iscsi_ioctl.c
934
kmem_zalloc(sizeof (*pp), KM_SLEEP);
usr/src/uts/common/io/scsi/adapters/iscsi/iscsi_ioctl.c
94
cl_tmp = (iscsi_conn_list_t *)kmem_zalloc(sizeof (*cl_tmp), KM_SLEEP);
usr/src/uts/common/io/scsi/adapters/iscsi/iscsi_ioctl.c
951
kmem_alloc(sizeof (*ilg), KM_SLEEP);
usr/src/uts/common/io/scsi/adapters/iscsi/iscsi_login.c
155
KM_SLEEP);
usr/src/uts/common/io/scsi/adapters/iscsi/iscsi_login.c
2296
rc = nvlist_alloc(&neg_nvl, NV_UNIQUE_NAME, KM_SLEEP);
usr/src/uts/common/io/scsi/adapters/iscsi/iscsi_lun.c
111
ADDR_EXT_SIZE + 1), KM_SLEEP);
usr/src/uts/common/io/scsi/adapters/iscsi/iscsi_lun.c
120
ilp = kmem_zalloc(sizeof (iscsi_lun_t), KM_SLEEP);
usr/src/uts/common/io/scsi/adapters/iscsi/iscsi_lun.c
144
ilp->lun_guid = kmem_zalloc(ilp->lun_guid_size, KM_SLEEP);
usr/src/uts/common/io/scsi/adapters/iscsi/iscsi_lun.c
670
if (nvlist_alloc(&attr_list, NV_UNIQUE_NAME_TYPE, KM_SLEEP) !=
usr/src/uts/common/io/scsi/adapters/iscsi/iscsi_lun.c
681
pathname = kmem_zalloc(MAXNAMELEN + 1, KM_SLEEP);
usr/src/uts/common/io/scsi/adapters/iscsi/iscsi_lun.c
735
pathname = kmem_zalloc(MAXNAMELEN + 1, KM_SLEEP);
usr/src/uts/common/io/scsi/adapters/iscsi/iscsi_lun.c
784
if (nvlist_alloc(&attr_list, NV_UNIQUE_NAME_TYPE, KM_SLEEP) !=
usr/src/uts/common/io/scsi/adapters/iscsi/iscsi_net.c
197
iscsi_net = kmem_zalloc(sizeof (*iscsi_net), KM_SLEEP);
usr/src/uts/common/io/scsi/adapters/iscsi/iscsi_sess.c
150
ISCSI_TH_MAX_NAME_LEN, KM_SLEEP);
usr/src/uts/common/io/scsi/adapters/iscsi/iscsi_sess.c
1798
buf = kmem_zalloc(buf_len, KM_SLEEP);
usr/src/uts/common/io/scsi/adapters/iscsi/iscsi_sess.c
1872
KM_SLEEP);
usr/src/uts/common/io/scsi/adapters/iscsi/iscsi_sess.c
197
isp = (iscsi_sess_t *)kmem_zalloc(sizeof (iscsi_sess_t), KM_SLEEP);
usr/src/uts/common/io/scsi/adapters/iscsi/iscsi_sess.c
2088
inq = kmem_zalloc(ISCSI_MAX_INQUIRY_BUF_SIZE, KM_SLEEP);
usr/src/uts/common/io/scsi/adapters/iscsi/iscsi_sess.c
2089
inq83 = kmem_zalloc(ISCSI_MAX_INQUIRY_BUF_SIZE, KM_SLEEP);
usr/src/uts/common/io/scsi/adapters/iscsi/iscsi_sess.c
2470
itp = kmem_zalloc(sizeof (iscsi_task_t), KM_SLEEP);
usr/src/uts/common/io/scsi/adapters/iscsi/iscsi_sess.c
284
tq_name = kmem_zalloc(ISCSI_TH_MAX_NAME_LEN, KM_SLEEP);
usr/src/uts/common/io/scsi/adapters/iscsi/iscsi_sess.c
307
th_name = kmem_zalloc(ISCSI_TH_MAX_NAME_LEN, KM_SLEEP);
usr/src/uts/common/io/scsi/adapters/iscsi/iscsi_sess.c
711
(sizeof (iscsi_auth_props_t), KM_SLEEP);
usr/src/uts/common/io/scsi/adapters/iscsi/iscsi_sess.c
734
(sizeof (iscsi_chap_props_t), KM_SLEEP);
usr/src/uts/common/io/scsi/adapters/iscsi/iscsi_targetparam.c
84
KM_SLEEP);
usr/src/uts/common/io/scsi/adapters/iscsi/iscsi_thread.c
39
thread = kmem_zalloc(sizeof (iscsi_thread_t), KM_SLEEP);
usr/src/uts/common/io/scsi/adapters/iscsi/iscsid.c
1122
ics = kmem_zalloc(size, KM_SLEEP);
usr/src/uts/common/io/scsi/adapters/iscsi/iscsid.c
1165
ics = kmem_zalloc(size, KM_SLEEP);
usr/src/uts/common/io/scsi/adapters/iscsi/iscsid.c
1399
sizeof (iscsi_sess_list_t), KM_SLEEP);
usr/src/uts/common/io/scsi/adapters/iscsi/iscsid.c
1406
sizeof (iscsi_sess_list_t), KM_SLEEP);
usr/src/uts/common/io/scsi/adapters/iscsi/iscsid.c
1482
initiatorName = kmem_zalloc(ISCSI_MAX_NAME_LEN, KM_SLEEP);
usr/src/uts/common/io/scsi/adapters/iscsi/iscsid.c
1557
name = kmem_zalloc(ISCSI_MAX_NAME_LEN, KM_SLEEP);
usr/src/uts/common/io/scsi/adapters/iscsi/iscsid.c
1621
name = kmem_zalloc(ISCSI_MAX_NAME_LEN, KM_SLEEP);
usr/src/uts/common/io/scsi/adapters/iscsi/iscsid.c
1632
iname = kmem_zalloc(ISCSI_MAX_NAME_LEN, KM_SLEEP);
usr/src/uts/common/io/scsi/adapters/iscsi/iscsid.c
2053
KM_SLEEP);
usr/src/uts/common/io/scsi/adapters/iscsi/iscsid.c
2079
pparam = (persistent_param_t *)kmem_zalloc(sizeof (*pparam), KM_SLEEP);
usr/src/uts/common/io/scsi/adapters/iscsi/iscsid.c
2085
ics = (iscsi_config_sess_t *)kmem_zalloc(sizeof (*ics), KM_SLEEP);
usr/src/uts/common/io/scsi/adapters/iscsi/iscsid.c
2228
ics = kmem_zalloc(size, KM_SLEEP);
usr/src/uts/common/io/scsi/adapters/iscsi/iscsid.c
2252
ics = kmem_zalloc(size, KM_SLEEP);
usr/src/uts/common/io/scsi/adapters/iscsi/iscsid.c
601
stl_hdr = kmem_zalloc(stl_sz, KM_SLEEP);
usr/src/uts/common/io/scsi/adapters/iscsi/iscsid.c
637
stl_hdr = kmem_zalloc(stl_sz, KM_SLEEP);
usr/src/uts/common/io/scsi/adapters/iscsi/iscsid.c
681
ap = (iscsi_addr_t *)kmem_zalloc(sizeof (iscsi_addr_t), KM_SLEEP);
usr/src/uts/common/io/scsi/adapters/iscsi/isns_client.c
1080
tmp_pg_lists_sz, KM_SLEEP);
usr/src/uts/common/io/scsi/adapters/iscsi/isns_client.c
1139
combined_pg_lst_sz, KM_SLEEP);
usr/src/uts/common/io/scsi/adapters/iscsi/isns_client.c
1303
combined_pdu_size, KM_SLEEP);
usr/src/uts/common/io/scsi/adapters/iscsi/isns_client.c
1348
combined_pdu_size, KM_SLEEP);
usr/src/uts/common/io/scsi/adapters/iscsi/isns_client.c
1591
tmp_pdu_hdr = (isns_pdu_t *)kmem_zalloc(ISNSP_HEADER_SIZE, KM_SLEEP);
usr/src/uts/common/io/scsi/adapters/iscsi/isns_client.c
1644
tmp_pdu_data = kmem_zalloc(payload_len, KM_SLEEP);
usr/src/uts/common/io/scsi/adapters/iscsi/isns_client.c
1690
(*pdu) = (isns_pdu_t *)kmem_zalloc((*pdu_size), KM_SLEEP);
usr/src/uts/common/io/scsi/adapters/iscsi/isns_client.c
2543
*pg_list = (isns_portal_group_list_t *)kmem_zalloc(pg_sz, KM_SLEEP);
usr/src/uts/common/io/scsi/adapters/iscsi/isns_client.c
2729
src_attr = (uint8_t *)kmem_zalloc(ISCSI_MAX_NAME_LEN, KM_SLEEP);
usr/src/uts/common/io/scsi/adapters/iscsi/isns_client.c
2772
KM_SLEEP);
usr/src/uts/common/io/scsi/adapters/iscsi/isns_client.c
2851
*pdu = (isns_pdu_t *)kmem_zalloc(pdu_size, KM_SLEEP);
usr/src/uts/common/io/scsi/adapters/iscsi/isns_client.c
2890
attr_tlv = (isns_tlv_t *)kmem_zalloc(attr_tlv_len, KM_SLEEP);
usr/src/uts/common/io/scsi/adapters/iscsi/isns_client.c
301
reg_args_p = kmem_zalloc(sizeof (isns_reg_arg_t), KM_SLEEP);
usr/src/uts/common/io/scsi/adapters/iscsi/isns_client.c
303
kmem_zalloc(sizeof (iscsi_addr_t), KM_SLEEP);
usr/src/uts/common/io/scsi/adapters/iscsi/isns_client.c
306
reg_args_p->node_name = kmem_zalloc(node_name_len, KM_SLEEP);
usr/src/uts/common/io/scsi/adapters/iscsi/isns_client.c
309
reg_args_p->node_alias = kmem_zalloc(node_alias_len, KM_SLEEP);
usr/src/uts/common/io/scsi/adapters/iscsi/isns_client.c
3188
KM_SLEEP);
usr/src/uts/common/io/scsi/adapters/iscsi/isns_client.c
347
ap = (iscsi_addr_t *)kmem_zalloc(sizeof (iscsi_addr_t), KM_SLEEP);
usr/src/uts/common/io/scsi/adapters/iscsi/isns_client.c
371
reg_args_p = kmem_zalloc(sizeof (isns_reg_arg_t), KM_SLEEP);
usr/src/uts/common/io/scsi/adapters/iscsi/isns_client.c
373
kmem_zalloc(sizeof (iscsi_addr_t), KM_SLEEP);
usr/src/uts/common/io/scsi/adapters/iscsi/isns_client.c
375
reg_args_p->node_name = kmem_zalloc(node_name_len, KM_SLEEP);
usr/src/uts/common/io/scsi/adapters/iscsi/isns_client.c
378
reg_args_p->node_alias = kmem_zalloc(node_alias_len, KM_SLEEP);
usr/src/uts/common/io/scsi/adapters/iscsi/isns_client.c
455
ap = (iscsi_addr_t *)kmem_zalloc(sizeof (iscsi_addr_t), KM_SLEEP);
usr/src/uts/common/io/scsi/adapters/iscsi/isns_client.c
576
KM_SLEEP);
usr/src/uts/common/io/scsi/adapters/iscsi/isns_client.c
657
larg = kmem_zalloc(sizeof (isns_async_thread_arg_t), KM_SLEEP);
usr/src/uts/common/io/scsi/adapters/iscsi/nvfile.c
1140
buf = kmem_alloc(hdr.nvfh_size, KM_SLEEP);
usr/src/uts/common/io/scsi/adapters/iscsi/nvfile.c
266
rval = nvlist_alloc(&nvf_list, NV_UNIQUE_NAME, KM_SLEEP);
usr/src/uts/common/io/scsi/adapters/iscsi/nvfile.c
608
rval = nvlist_alloc(&list, NV_UNIQUE_NAME, KM_SLEEP);
usr/src/uts/common/io/scsi/adapters/iscsi/nvfile.c
931
rval = nvlist_dup(nvf_list, &tmpnvl, KM_SLEEP);
usr/src/uts/common/io/scsi/adapters/iscsi/nvfile.c
956
nvfbuf = kmem_zalloc(nvflen, KM_SLEEP);
usr/src/uts/common/io/scsi/adapters/iscsi/persistent.c
1218
name = (char *)kmem_alloc(ISCSI_MAX_NAME_LEN, KM_SLEEP);
usr/src/uts/common/io/scsi/adapters/iscsi/persistent.c
1219
addr_buf = (char *)kmem_alloc(INET6_ADDRSTRLEN, KM_SLEEP);
usr/src/uts/common/io/scsi/adapters/iscsi/persistent.c
1220
bitbuf = (char *)kmem_alloc(BITBUF_LEN, KM_SLEEP);
usr/src/uts/common/io/scsi/adapters/iscsi/persistent.c
1241
KM_SLEEP);
usr/src/uts/common/io/scsi/adapters/iscsi/persistent.c
1256
entry = (entry_t *)kmem_alloc(sizeof (*entry), KM_SLEEP);
usr/src/uts/common/io/scsi/adapters/iscsi/persistent.c
1311
param = (persistent_param_t *)kmem_alloc(sizeof (*param), KM_SLEEP);
usr/src/uts/common/io/scsi/adapters/iscsi/persistent.c
1408
chap = (iscsi_chap_props_t *)kmem_alloc(sizeof (*chap), KM_SLEEP);
usr/src/uts/common/io/scsi/adapters/iscsi/persistent.c
1420
auth = (iscsi_auth_props_t *)kmem_alloc(sizeof (*auth), KM_SLEEP);
usr/src/uts/common/io/scsi/adapters/iscsi/persistent.c
171
target_name = kmem_alloc(MAX_KEY_SIZE, KM_SLEEP);
usr/src/uts/common/io/scsi/adapters/iscsi/persistent.c
224
target_name = kmem_zalloc(MAX_KEY_SIZE, KM_SLEEP);
usr/src/uts/common/io/scsi/adapters/iscsi/persistent.c
443
key = kmem_zalloc(MAX_KEY_SIZE, KM_SLEEP);
usr/src/uts/common/io/scsi/adapters/iscsi/persistent.c
444
ip_str = kmem_zalloc(INET6_ADDRSTRLEN, KM_SLEEP);
usr/src/uts/common/io/scsi/adapters/iscsi/persistent.c
490
key = kmem_zalloc(MAX_KEY_SIZE, KM_SLEEP);
usr/src/uts/common/io/scsi/adapters/iscsi/persistent.c
524
target_name = kmem_zalloc(MAX_KEY_SIZE, KM_SLEEP);
usr/src/uts/common/io/scsi/adapters/iscsi/persistent.c
535
ip_str = kmem_zalloc(INET6_ADDRSTRLEN, KM_SLEEP);
usr/src/uts/common/io/scsi/adapters/iscsi/persistent.c
536
key = kmem_zalloc(MAX_KEY_SIZE, KM_SLEEP);
usr/src/uts/common/io/scsi/adapters/iscsi/radius_packet.c
177
tmp_data = kmem_zalloc(MAX_RAD_PACKET_LEN, KM_SLEEP);
usr/src/uts/common/io/scsi/adapters/iscsi/radius_packet.c
66
data = kmem_zalloc(MAX_RAD_PACKET_LEN, KM_SLEEP);
usr/src/uts/common/io/scsi/adapters/lmrc/lmrc_ddi.c
1052
kmem_zalloc(ncmd * sizeof (lmrc_mfi_cmd_t *), KM_SLEEP);
usr/src/uts/common/io/scsi/adapters/lmrc/lmrc_ddi.c
1054
mfi = kmem_zalloc(sizeof (lmrc_mfi_cmd_t), KM_SLEEP);
usr/src/uts/common/io/scsi/adapters/lmrc/lmrc_ddi.c
319
lmrc->l_ctrl_info = kmem_zalloc(sizeof (mfi_ctrl_info_t), KM_SLEEP);
usr/src/uts/common/io/scsi/adapters/lmrc/lmrc_ddi.c
689
lmrc->l_intr_htable = kmem_zalloc(lmrc->l_intr_htable_size, KM_SLEEP);
usr/src/uts/common/io/scsi/adapters/lmrc/lmrc_ddi.c
786
kmem_zalloc(sizeof (uint16_t) * lmrc->l_max_reply_queues, KM_SLEEP);
usr/src/uts/common/io/scsi/adapters/lmrc/lmrc_ddi.c
952
kmem_zalloc(ncmd * sizeof (lmrc_mpt_cmd_t *), KM_SLEEP);
usr/src/uts/common/io/scsi/adapters/lmrc/lmrc_ddi.c
954
cmd = kmem_zalloc(sizeof (lmrc_mpt_cmd_t), KM_SLEEP);
usr/src/uts/common/io/scsi/adapters/lmrc/lmrc_ioctl.c
414
ioc = kmem_zalloc(sizeof (mfi_ioctl_t), KM_SLEEP);
usr/src/uts/common/io/scsi/adapters/lmrc/lmrc_phys.c
265
pdinfo = kmem_zalloc(sizeof (mfi_pd_info_t), KM_SLEEP);
usr/src/uts/common/io/scsi/adapters/lmrc/lmrc_phys.c
90
*pdmap = kmem_zalloc(pdmap_sz, KM_SLEEP);
usr/src/uts/common/io/scsi/adapters/lmrc/lmrc_raid.c
99
*raidmap = kmem_zalloc(rm->rm_raidmap_sz, KM_SLEEP);
usr/src/uts/common/io/scsi/adapters/mpt_sas/mptsas.c
11140
request_msg = kmem_zalloc(request_size, KM_SLEEP);
usr/src/uts/common/io/scsi/adapters/mpt_sas/mptsas.c
11281
ret = mptsas_cmdarqsize(mpt, cmd, sense_len, KM_SLEEP);
usr/src/uts/common/io/scsi/adapters/mpt_sas/mptsas.c
12819
di = kmem_zalloc(count * sizeof (mptsas_disk_info_t), KM_SLEEP);
usr/src/uts/common/io/scsi/adapters/mpt_sas/mptsas.c
1314
* mpt->m_doneq_thread_n, KM_SLEEP);
usr/src/uts/common/io/scsi/adapters/mpt_sas/mptsas.c
13240
if (mptsas_alloc_active_slots(mpt, KM_SLEEP)) {
usr/src/uts/common/io/scsi/adapters/mpt_sas/mptsas.c
13615
mpt->m_htable = kmem_alloc(mpt->m_intr_size, KM_SLEEP);
usr/src/uts/common/io/scsi/adapters/mpt_sas/mptsas.c
1394
offsetof(mptsas_target_t, m_addr), KM_SLEEP);
usr/src/uts/common/io/scsi/adapters/mpt_sas/mptsas.c
13982
inq83 = kmem_zalloc(inq83_len, KM_SLEEP);
usr/src/uts/common/io/scsi/adapters/mpt_sas/mptsas.c
1404
offsetof(mptsas_target_t, m_link), 0, KM_SLEEP);
usr/src/uts/common/io/scsi/adapters/mpt_sas/mptsas.c
14080
sizeof (scsi_hba_tran_t), KM_SLEEP);
usr/src/uts/common/io/scsi/adapters/mpt_sas/mptsas.c
14087
sizeof (mptsas_tgt_private_t), KM_SLEEP);
usr/src/uts/common/io/scsi/adapters/mpt_sas/mptsas.c
14146
wwid_str = kmem_zalloc(SCSI_MAXNAMELEN, KM_SLEEP);
usr/src/uts/common/io/scsi/adapters/mpt_sas/mptsas.c
14157
lun_str = kmem_zalloc(SCSI_MAXNAMELEN, KM_SLEEP);
usr/src/uts/common/io/scsi/adapters/mpt_sas/mptsas.c
14262
devnm = kmem_zalloc(SCSI_MAXNAMELEN, KM_SLEEP);
usr/src/uts/common/io/scsi/adapters/mpt_sas/mptsas.c
14337
sd_inq = (struct scsi_inquiry *)kmem_alloc(SUN_INQSIZE, KM_SLEEP);
usr/src/uts/common/io/scsi/adapters/mpt_sas/mptsas.c
14591
saved_repluns = kmem_zalloc(sizeof (uint16_t) * lun_total, KM_SLEEP);
usr/src/uts/common/io/scsi/adapters/mpt_sas/mptsas.c
14638
sd_inq = (struct scsi_inquiry *)kmem_alloc(SUN_INQSIZE, KM_SLEEP);
usr/src/uts/common/io/scsi/adapters/mpt_sas/mptsas.c
14815
KM_SLEEP);
usr/src/uts/common/io/scsi/adapters/mpt_sas/mptsas.c
14830
m = kmem_zalloc(sizeof (*m), KM_SLEEP);
usr/src/uts/common/io/scsi/adapters/mpt_sas/mptsas.c
14837
KM_SLEEP);
usr/src/uts/common/io/scsi/adapters/mpt_sas/mptsas.c
15145
devname = kmem_alloc(MAXNAMELEN + 1, KM_SLEEP);
usr/src/uts/common/io/scsi/adapters/mpt_sas/mptsas.c
15215
devname = kmem_alloc(MAXNAMELEN + 1, KM_SLEEP);
usr/src/uts/common/io/scsi/adapters/mpt_sas/mptsas.c
15235
rname = kmem_zalloc(SCSI_MAXNAMELEN, KM_SLEEP);
usr/src/uts/common/io/scsi/adapters/mpt_sas/mptsas.c
15266
name = kmem_zalloc(SCSI_MAXNAMELEN, KM_SLEEP);
usr/src/uts/common/io/scsi/adapters/mpt_sas/mptsas.c
15267
addr = kmem_zalloc(SCSI_MAXNAMELEN, KM_SLEEP);
usr/src/uts/common/io/scsi/adapters/mpt_sas/mptsas.c
15282
addr = kmem_zalloc(SCSI_MAXNAMELEN, KM_SLEEP);
usr/src/uts/common/io/scsi/adapters/mpt_sas/mptsas.c
15295
addr = kmem_zalloc(SCSI_MAXNAMELEN, KM_SLEEP);
usr/src/uts/common/io/scsi/adapters/mpt_sas/mptsas.c
15309
name = kmem_zalloc(SCSI_MAXNAMELEN, KM_SLEEP);
usr/src/uts/common/io/scsi/adapters/mpt_sas/mptsas.c
15310
addr = kmem_zalloc(SCSI_MAXNAMELEN, KM_SLEEP);
usr/src/uts/common/io/scsi/adapters/mpt_sas/mptsas.c
15353
inq83 = kmem_zalloc(inq83_len1, KM_SLEEP);
usr/src/uts/common/io/scsi/adapters/mpt_sas/mptsas.c
15567
wwn_str = kmem_zalloc(MPTSAS_WWN_STRLEN, KM_SLEEP);
usr/src/uts/common/io/scsi/adapters/mpt_sas/mptsas.c
15571
lun_addr = kmem_zalloc(SCSI_MAXNAMELEN, KM_SLEEP);
usr/src/uts/common/io/scsi/adapters/mpt_sas/mptsas.c
15735
component = kmem_zalloc(MAXPATHLEN, KM_SLEEP);
usr/src/uts/common/io/scsi/adapters/mpt_sas/mptsas.c
15901
wwn_str = kmem_zalloc(MPTSAS_WWN_STRLEN, KM_SLEEP);
usr/src/uts/common/io/scsi/adapters/mpt_sas/mptsas.c
16109
component = kmem_zalloc(MAXPATHLEN, KM_SLEEP);
usr/src/uts/common/io/scsi/adapters/mpt_sas/mptsas.c
16771
tmp_tgt = kmem_zalloc(sizeof (struct mptsas_target), KM_SLEEP);
usr/src/uts/common/io/scsi/adapters/mpt_sas/mptsas.c
16822
ret_data = kmem_alloc(sizeof (mptsas_smp_t), KM_SLEEP);
usr/src/uts/common/io/scsi/adapters/mpt_sas/mptsas.c
2285
KM_SLEEP);
usr/src/uts/common/io/scsi/adapters/mpt_sas/mptsas.c
2988
mpt->m_max_replies, KM_SLEEP);
usr/src/uts/common/io/scsi/adapters/mpt_sas/mptsas.c
3198
KM_SLEEP);
usr/src/uts/common/io/scsi/adapters/mpt_sas/mptsas.c
3227
inq89 = kmem_zalloc(inq89_len, KM_SLEEP);
usr/src/uts/common/io/scsi/adapters/mpt_sas/mptsas.c
3725
kf = (callback == SLEEP_FUNC)? KM_SLEEP: KM_NOSLEEP;
usr/src/uts/common/io/scsi/adapters/mpt_sas/mptsas.c
4146
callback = (kmflags == KM_SLEEP)? DDI_DMA_SLEEP: DDI_DMA_DONTWAIT;
usr/src/uts/common/io/scsi/adapters/mpt_sas/mptsas.c
4186
int (*callback)(caddr_t) = (kmflags == KM_SLEEP)
usr/src/uts/common/io/scsi/adapters/mpt_sas/mptsas.c
4267
i = (kf == KM_SLEEP ? rmalloc_wait : rmalloc)
usr/src/uts/common/io/scsi/adapters/mpt_sas/mptsas.c
6301
phy_mask_name = kmem_zalloc(MPTSAS_MAX_PHYS, KM_SLEEP);
usr/src/uts/common/io/scsi/adapters/mpt_sas/mptsas.c
6373
phy_mask_name = kmem_zalloc(MPTSAS_MAX_PHYS, KM_SLEEP);
usr/src/uts/common/io/scsi/adapters/mpt_sas/mptsas.c
6632
phy_mask_name = kmem_zalloc(MPTSAS_MAX_PHYS, KM_SLEEP);
usr/src/uts/common/io/scsi/adapters/mpt_sas/mptsas.c
6759
addr = kmem_zalloc(SCSI_MAXNAMELEN, KM_SLEEP);
usr/src/uts/common/io/scsi/adapters/mpt_sas/mptsas.c
7184
KM_SLEEP);
usr/src/uts/common/io/scsi/adapters/mpt_sas/mptsas.c
7208
KM_SLEEP);
usr/src/uts/common/io/scsi/adapters/mpt_sas/mptsas.c
7320
KM_SLEEP);
usr/src/uts/common/io/scsi/adapters/mpt_sas/mptsas.c
7384
KM_SLEEP);
usr/src/uts/common/io/scsi/adapters/mpt_sas/mptsas.c
7417
KM_SLEEP);
usr/src/uts/common/io/scsi/adapters/mpt_sas/mptsas.c
7630
KM_SLEEP);
usr/src/uts/common/io/scsi/adapters/mpt_sas/mptsas.c
7672
KM_SLEEP);
usr/src/uts/common/io/scsi/adapters/mpt_sas/mptsas.c
7707
KM_SLEEP);
usr/src/uts/common/io/scsi/adapters/mpt_sas/mptsas.c
7737
KM_SLEEP);
usr/src/uts/common/io/scsi/adapters/mpt_sas/mptsas_impl.c
1075
ioc_cmd = kmem_zalloc(M_EVENT_STRUCT_SIZE, KM_SLEEP);
usr/src/uts/common/io/scsi/adapters/mpt_sas/mptsas_smhba.c
130
(void) nvlist_alloc(phy_props, NV_UNIQUE_NAME, KM_SLEEP);
usr/src/uts/common/io/scsi/adapters/mpt_sas/mptsas_smhba.c
158
if (nvlist_alloc(&nvl, NV_UNIQUE_NAME, KM_SLEEP) != 0) {
usr/src/uts/common/io/scsi/adapters/mpt_sas/mptsas_smhba.c
171
packed_data = kmem_zalloc(packed_size, KM_SLEEP);
usr/src/uts/common/io/scsi/adapters/mpt_sas/mptsas_smhba.c
212
phy_props = kmem_zalloc(sizeof (nvlist_t *) * phy_nums, KM_SLEEP);
usr/src/uts/common/io/scsi/adapters/pmcs/pmcs_attach.c
1884
pchunk = kmem_zalloc(sizeof (pmcs_chunk_t), KM_SLEEP);
usr/src/uts/common/io/scsi/adapters/pmcs/pmcs_attach.c
1910
tmp = kmem_alloc(sizeof (pmcs_dmachunk_t), KM_SLEEP);
usr/src/uts/common/io/scsi/adapters/pmcs/pmcs_attach.c
2328
pwp->ih_table = kmem_alloc(pwp->ih_table_size, KM_SLEEP);
usr/src/uts/common/io/scsi/adapters/pmcs/pmcs_attach.c
2433
iv_table = kmem_alloc(iv_table_size, KM_SLEEP);
usr/src/uts/common/io/scsi/adapters/pmcs/pmcs_attach.c
366
init_port = kmem_zalloc(PMCS_MAX_UA_SIZE, KM_SLEEP);
usr/src/uts/common/io/scsi/adapters/pmcs/pmcs_attach.c
579
sizeof (pmcs_tbuf_t), KM_SLEEP);
usr/src/uts/common/io/scsi/adapters/pmcs/pmcs_attach.c
819
sizeof (pmcs_cq_thr_info_t) * pwp->cq_info.cq_threads, KM_SLEEP);
usr/src/uts/common/io/scsi/adapters/pmcs/pmcs_attach.c
912
pwp->root_phys = kmem_zalloc(pwp->nphy * sizeof (pmcs_phy_t), KM_SLEEP);
usr/src/uts/common/io/scsi/adapters/pmcs/pmcs_attach.c
929
pwp->work = kmem_zalloc(pwp->max_cmd * sizeof (pmcwork_t), KM_SLEEP);
usr/src/uts/common/io/scsi/adapters/pmcs/pmcs_attach.c
939
kmem_zalloc(pwp->max_dev * sizeof (pmcs_xscsi_t *), KM_SLEEP);
usr/src/uts/common/io/scsi/adapters/pmcs/pmcs_attach.c
942
kmem_zalloc(sizeof (pmcs_iqp_trace_t), KM_SLEEP);
usr/src/uts/common/io/scsi/adapters/pmcs/pmcs_attach.c
943
pwp->iqpt->head = kmem_zalloc(PMCS_IQP_TRACE_BUFFER_SIZE, KM_SLEEP);
usr/src/uts/common/io/scsi/adapters/pmcs/pmcs_smhba.c
136
paddr = kmem_zalloc(PMCS_MAX_UA_SIZE, KM_SLEEP);
usr/src/uts/common/io/scsi/adapters/pmcs/pmcs_smhba.c
140
addr = kmem_zalloc(PMCS_MAX_UA_SIZE, KM_SLEEP);
usr/src/uts/common/io/scsi/adapters/pmcs/pmcs_smhba.c
186
phy_props = kmem_zalloc(sizeof (nvlist_t *) * iport->nphy, KM_SLEEP);
usr/src/uts/common/io/scsi/adapters/pmcs/pmcs_smhba.c
215
packed_data = kmem_zalloc(packed_size, KM_SLEEP);
usr/src/uts/common/io/scsi/adapters/pmcs/pmcs_subr.c
2848
ap = kmem_zalloc(PMCS_MAX_UA_SIZE, KM_SLEEP);
usr/src/uts/common/io/scsi/adapters/pmcs/pmcs_subr.c
3557
ctmp = kmem_cache_alloc(pwp->phy_cache, KM_SLEEP);
usr/src/uts/common/io/scsi/adapters/pmcs/pmcs_subr.c
7566
local = kmem_cache_alloc(orig_phy->pwp->phy_cache, KM_SLEEP);
usr/src/uts/common/io/scsi/adapters/pvscsi/pvscsi.c
1276
if (!pvscsi_cmd_init(pvs, &cmd, KM_SLEEP)) {
usr/src/uts/common/io/scsi/adapters/pvscsi/pvscsi.c
1327
pd = kmem_zalloc(sizeof (*pd), KM_SLEEP);
usr/src/uts/common/io/scsi/adapters/pvscsi/pvscsi.c
1518
cb = sleep == KM_SLEEP ? DDI_DMA_SLEEP : DDI_DMA_DONTWAIT;
usr/src/uts/common/io/scsi/adapters/pvscsi/pvscsi.c
1732
pvs = kmem_zalloc(sizeof (*pvs), KM_SLEEP);
usr/src/uts/common/io/scsi/adapters/scsi_vhci/fops/sym_hds.c
194
KM_SLEEP);
usr/src/uts/common/io/scsi/adapters/scsi_vhci/mpapi_impl.c
1959
bp = getrbuf(KM_SLEEP);
usr/src/uts/common/io/scsi/adapters/scsi_vhci/mpapi_impl.c
1963
mp_uscmdp = kmem_zalloc((size_t)sizeof (mp_uscsi_cmd_t), KM_SLEEP);
usr/src/uts/common/io/scsi/adapters/scsi_vhci/mpapi_impl.c
2254
KM_SLEEP);
usr/src/uts/common/io/scsi/adapters/scsi_vhci/mpapi_impl.c
2266
output_data = kmem_zalloc(mpioc->mp_olen, KM_SLEEP);
usr/src/uts/common/io/scsi/adapters/scsi_vhci/mpapi_impl.c
2441
ilist = kmem_zalloc(sizeof (mpapi_item_list_t), KM_SLEEP);
usr/src/uts/common/io/scsi/adapters/scsi_vhci/mpapi_impl.c
2442
item = kmem_zalloc(sizeof (mpapi_item_t), KM_SLEEP);
usr/src/uts/common/io/scsi/adapters/scsi_vhci/mpapi_impl.c
2446
drv = kmem_zalloc(sizeof (mp_driver_prop_t), KM_SLEEP);
usr/src/uts/common/io/scsi/adapters/scsi_vhci/mpapi_impl.c
2486
dev_prod_list = kmem_zalloc(sizeof (mpapi_item_list_t), KM_SLEEP);
usr/src/uts/common/io/scsi/adapters/scsi_vhci/mpapi_impl.c
2487
dev_prod_item = kmem_zalloc(sizeof (mpapi_item_t), KM_SLEEP);
usr/src/uts/common/io/scsi/adapters/scsi_vhci/mpapi_impl.c
2491
dev_prod = kmem_zalloc(sizeof (mp_dev_prod_prop_t), KM_SLEEP);
usr/src/uts/common/io/scsi/adapters/scsi_vhci/mpapi_impl.c
2676
ilist = kmem_zalloc(sizeof (mpapi_item_list_t), KM_SLEEP);
usr/src/uts/common/io/scsi/adapters/scsi_vhci/mpapi_impl.c
2677
item = kmem_zalloc(sizeof (mpapi_item_t), KM_SLEEP);
usr/src/uts/common/io/scsi/adapters/scsi_vhci/mpapi_impl.c
2692
pname = kmem_zalloc(MAXPATHLEN, KM_SLEEP);
usr/src/uts/common/io/scsi/adapters/scsi_vhci/mpapi_impl.c
2705
init_port_res = kmem_zalloc(MAXPATHLEN, KM_SLEEP);
usr/src/uts/common/io/scsi/adapters/scsi_vhci/mpapi_impl.c
2716
interconnect = kmem_zalloc(len, KM_SLEEP);
usr/src/uts/common/io/scsi/adapters/scsi_vhci/mpapi_impl.c
2751
sizeof (mpapi_initiator_data_t), KM_SLEEP);
usr/src/uts/common/io/scsi/adapters/scsi_vhci/mpapi_impl.c
2786
KM_SLEEP);
usr/src/uts/common/io/scsi/adapters/scsi_vhci/mpapi_impl.c
2787
tgt_port_res = kmem_zalloc(strlen(res) + 1, KM_SLEEP);
usr/src/uts/common/io/scsi/adapters/scsi_vhci/mpapi_impl.c
2810
sizeof (mpapi_tpg_data_t), KM_SLEEP);
usr/src/uts/common/io/scsi/adapters/scsi_vhci/mpapi_impl.c
2811
tpg_res = kmem_zalloc(strlen(res) + 1, KM_SLEEP);
usr/src/uts/common/io/scsi/adapters/scsi_vhci/mpapi_impl.c
2841
lu = kmem_zalloc(sizeof (mpapi_lu_data_t), KM_SLEEP);
usr/src/uts/common/io/scsi/adapters/scsi_vhci/mpapi_impl.c
2912
sizeof (mpapi_path_data_t), KM_SLEEP);
usr/src/uts/common/io/scsi/adapters/scsi_vhci/mpapi_impl.c
2913
pname = kmem_zalloc(MAXPATHLEN, KM_SLEEP);
usr/src/uts/common/io/scsi/adapters/scsi_vhci/mpapi_impl.c
2915
iport = kmem_zalloc(MAXPATHLEN, KM_SLEEP);
usr/src/uts/common/io/scsi/adapters/scsi_vhci/mpapi_impl.c
2975
lh = kmem_zalloc(sizeof (mpapi_list_header_t), KM_SLEEP);
usr/src/uts/common/io/scsi/adapters/scsi_vhci/mpapi_impl.c
3040
path_class = kmem_zalloc(MPAPI_SCSI_MAXPCLASSLEN, KM_SLEEP);
usr/src/uts/common/io/scsi/adapters/scsi_vhci/mpapi_impl.c
3083
init = kmem_zalloc(MAXPATHLEN, KM_SLEEP);
usr/src/uts/common/io/scsi/adapters/scsi_vhci/mpapi_impl.c
3142
KM_SLEEP);
usr/src/uts/common/io/scsi/adapters/scsi_vhci/mpapi_impl.c
3151
KM_SLEEP);
usr/src/uts/common/io/scsi/adapters/scsi_vhci/mpapi_impl.c
3160
sizeof (mpapi_item_list_t), KM_SLEEP);
usr/src/uts/common/io/scsi/adapters/scsi_vhci/mpapi_impl.c
3422
path_class = kmem_zalloc(MPAPI_SCSI_MAXPCLASSLEN, KM_SLEEP);
usr/src/uts/common/io/scsi/adapters/scsi_vhci/mpapi_impl.c
3482
KM_SLEEP);
usr/src/uts/common/io/scsi/adapters/scsi_vhci/mpapi_impl.c
3496
KM_SLEEP);
usr/src/uts/common/io/scsi/adapters/scsi_vhci/mpapi_impl.c
3511
KM_SLEEP);
usr/src/uts/common/io/scsi/adapters/scsi_vhci/mpapi_impl.c
3684
init = kmem_zalloc(MAXPATHLEN, KM_SLEEP);
usr/src/uts/common/io/scsi/adapters/scsi_vhci/mpapi_impl.c
3716
KM_SLEEP);
usr/src/uts/common/io/scsi/adapters/scsi_vhci/mpapi_impl.c
3725
KM_SLEEP);
usr/src/uts/common/io/scsi/adapters/scsi_vhci/mpapi_impl.c
3778
KM_SLEEP);
usr/src/uts/common/io/scsi/adapters/scsi_vhci/mpapi_impl.c
3792
KM_SLEEP);
usr/src/uts/common/io/scsi/adapters/scsi_vhci/mpapi_impl.c
3835
KM_SLEEP);
usr/src/uts/common/io/scsi/adapters/scsi_vhci/mpapi_impl.c
3844
(sizeof (mpapi_item_list_t), KM_SLEEP);
usr/src/uts/common/io/scsi/adapters/scsi_vhci/mpapi_impl.c
3960
(sizeof (mp_iocdata32_t), KM_SLEEP);
usr/src/uts/common/io/scsi/adapters/scsi_vhci/mpapi_impl.c
4136
init = kmem_zalloc(MAXPATHLEN, KM_SLEEP);
usr/src/uts/common/io/scsi/adapters/scsi_vhci/mpapi_impl.c
4141
init_port_res = kmem_zalloc(MAXPATHLEN, KM_SLEEP);
usr/src/uts/common/io/scsi/adapters/scsi_vhci/mpapi_impl.c
4178
KM_SLEEP) != DDI_SUCCESS) {
usr/src/uts/common/io/scsi/adapters/scsi_vhci/mpapi_impl.c
4316
this_iport = kmem_zalloc(MAXPATHLEN, KM_SLEEP);
usr/src/uts/common/io/scsi/adapters/scsi_vhci/mpapi_impl.c
4330
pname = kmem_zalloc(MAXPATHLEN, KM_SLEEP);
usr/src/uts/common/io/scsi/adapters/scsi_vhci/scsi_vhci.c
1375
p_path = kmem_zalloc(MAXPATHLEN, KM_SLEEP);
usr/src/uts/common/io/scsi/adapters/scsi_vhci/scsi_vhci.c
2587
bp = getrbuf(KM_SLEEP);
usr/src/uts/common/io/scsi/adapters/scsi_vhci/scsi_vhci.c
3291
(void *)vlun, KM_SLEEP);
usr/src/uts/common/io/scsi/adapters/scsi_vhci/scsi_vhci.c
3381
vhci_run_cmd, pkt, KM_SLEEP);
usr/src/uts/common/io/scsi/adapters/scsi_vhci/scsi_vhci.c
3546
cpath = kmem_alloc(MAXPATHLEN, KM_SLEEP);
usr/src/uts/common/io/scsi/adapters/scsi_vhci/scsi_vhci.c
3614
vhci_update_pathstates, (void *)vlun, KM_SLEEP);
usr/src/uts/common/io/scsi/adapters/scsi_vhci/scsi_vhci.c
3616
path = kmem_alloc(MAXPATHLEN, KM_SLEEP);
usr/src/uts/common/io/scsi/adapters/scsi_vhci/scsi_vhci.c
3744
KM_SLEEP);
usr/src/uts/common/io/scsi/adapters/scsi_vhci/scsi_vhci.c
3755
vhci_efo_done, (void *)swarg, KM_SLEEP);
usr/src/uts/common/io/scsi/adapters/scsi_vhci/scsi_vhci.c
3877
cpath = kmem_alloc(MAXPATHLEN, KM_SLEEP);
usr/src/uts/common/io/scsi/adapters/scsi_vhci/scsi_vhci.c
3892
(opinfo.opinfo_path_attr) + 1, KM_SLEEP);
usr/src/uts/common/io/scsi/adapters/scsi_vhci/scsi_vhci.c
3918
1, KM_SLEEP);
usr/src/uts/common/io/scsi/adapters/scsi_vhci/scsi_vhci.c
3989
cpath = kmem_alloc(MAXPATHLEN, KM_SLEEP);
usr/src/uts/common/io/scsi/adapters/scsi_vhci/scsi_vhci.c
4109
svp = kmem_zalloc(sizeof (*svp), KM_SLEEP);
usr/src/uts/common/io/scsi/adapters/scsi_vhci/scsi_vhci.c
4124
psd = kmem_zalloc(sizeof (*psd), KM_SLEEP);
usr/src/uts/common/io/scsi/adapters/scsi_vhci/scsi_vhci.c
4143
kmem_alloc(sizeof (scsi_hba_tran_t), KM_SLEEP);
usr/src/uts/common/io/scsi/adapters/scsi_vhci/scsi_vhci.c
4435
(void *) vlun, KM_SLEEP);
usr/src/uts/common/io/scsi/adapters/scsi_vhci/scsi_vhci.c
464
KM_SLEEP);
usr/src/uts/common/io/scsi/adapters/scsi_vhci/scsi_vhci.c
4789
KM_SLEEP);
usr/src/uts/common/io/scsi/adapters/scsi_vhci/scsi_vhci.c
4861
tptr = kmem_alloc(strlen(pclass) + 1, KM_SLEEP);
usr/src/uts/common/io/scsi/adapters/scsi_vhci/scsi_vhci.c
4875
tptr = kmem_alloc(strlen(pclass) + 1, KM_SLEEP);
usr/src/uts/common/io/scsi/adapters/scsi_vhci/scsi_vhci.c
4924
KM_SLEEP);
usr/src/uts/common/io/scsi/adapters/scsi_vhci/scsi_vhci.c
4989
target_port_dup = i_ddi_strdup(target_port, KM_SLEEP);
usr/src/uts/common/io/scsi/adapters/scsi_vhci/scsi_vhci.c
5004
target_port_dup = i_ddi_strdup(guid, KM_SLEEP);
usr/src/uts/common/io/scsi/adapters/scsi_vhci/scsi_vhci.c
5446
phci_path = kmem_zalloc(MAXPATHLEN, KM_SLEEP);
usr/src/uts/common/io/scsi/adapters/scsi_vhci/scsi_vhci.c
5447
client_path = kmem_zalloc(MAXPATHLEN, KM_SLEEP);
usr/src/uts/common/io/scsi/adapters/scsi_vhci/scsi_vhci.c
5448
paddr = kmem_zalloc(MAXNAMELEN, KM_SLEEP);
usr/src/uts/common/io/scsi/adapters/scsi_vhci/scsi_vhci.c
6552
kmem_zalloc(sizeof (sv_path_info_t) * num_paths, KM_SLEEP);
usr/src/uts/common/io/scsi/adapters/scsi_vhci/scsi_vhci.c
6555
kmem_zalloc(sizeof (sv_path_info_t) * num_paths, KM_SLEEP);
usr/src/uts/common/io/scsi/adapters/scsi_vhci/scsi_vhci.c
6628
kmem_zalloc(bufsize, KM_SLEEP);
usr/src/uts/common/io/scsi/adapters/scsi_vhci/scsi_vhci.c
6637
sizeof (*pi->ret_prop.ret_buf_size), KM_SLEEP);
usr/src/uts/common/io/scsi/adapters/scsi_vhci/scsi_vhci.c
7152
ptr1 = kmem_alloc(strlen(pclass2) + 1, KM_SLEEP);
usr/src/uts/common/io/scsi/adapters/scsi_vhci/scsi_vhci.c
7309
svl = kmem_zalloc(sizeof (*svl), KM_SLEEP);
usr/src/uts/common/io/scsi/adapters/scsi_vhci/scsi_vhci.c
7310
svl->svl_lun_wwn = kmem_zalloc(strlen(guid) + 1, KM_SLEEP);
usr/src/uts/common/io/scsi/adapters/scsi_vhci/scsi_vhci.c
789
vhci->mp_priv = kmem_zalloc(sizeof (mpapi_priv_t), KM_SLEEP);
usr/src/uts/common/io/scsi/adapters/scsi_vhci/scsi_vhci.c
8681
KM_SLEEP);
usr/src/uts/common/io/scsi/adapters/scsi_vhci/scsi_vhci.c
8704
strlen(sfo->sfo_name) + 1, KM_SLEEP);
usr/src/uts/common/io/scsi/adapters/smartpqi/smartpqi_hba.c
418
callback = (flags == KM_SLEEP) ? DDI_DMA_SLEEP : DDI_DMA_DONTWAIT;
usr/src/uts/common/io/scsi/adapters/smartpqi/smartpqi_hba.c
456
int kf = (callback == SLEEP_FUNC) ? KM_SLEEP : KM_NOSLEEP;
usr/src/uts/common/io/scsi/adapters/smartpqi/smartpqi_hw.c
347
reset_closure_t r = kmem_alloc(sizeof (struct reset_closure), KM_SLEEP);
usr/src/uts/common/io/scsi/adapters/smartpqi/smartpqi_init.c
1415
c = kmem_zalloc(sizeof (*c), KM_SLEEP);
usr/src/uts/common/io/scsi/adapters/smartpqi/smartpqi_init.c
1662
data = kmem_zalloc(data_len, KM_SLEEP);
usr/src/uts/common/io/scsi/adapters/smartpqi/smartpqi_init.c
1726
sizeof (report_log_lun_extended_entry_t), KM_SLEEP);
usr/src/uts/common/io/scsi/adapters/smartpqi/smartpqi_init.c
1744
inq = kmem_zalloc(sizeof (*inq), KM_SLEEP);
usr/src/uts/common/io/scsi/adapters/smartpqi/smartpqi_init.c
1809
inq = kmem_alloc(sizeof (struct scsi_inquiry), KM_SLEEP);
usr/src/uts/common/io/scsi/adapters/smartpqi/smartpqi_init.c
1815
inq83 = kmem_zalloc(len, KM_SLEEP);
usr/src/uts/common/io/scsi/adapters/smartpqi/smartpqi_init.c
1840
dev = kmem_zalloc(sizeof (*dev), KM_SLEEP);
usr/src/uts/common/io/scsi/adapters/smartpqi/smartpqi_init.c
1866
id_phys = kmem_zalloc(sizeof (*id_phys), KM_SLEEP);
usr/src/uts/common/io/scsi/adapters/smartpqi/smartpqi_init.c
1899
dev = kmem_zalloc(sizeof (*dev), KM_SLEEP);
usr/src/uts/common/io/scsi/adapters/smartpqi/smartpqi_init.c
2034
ht = kmem_zalloc(sizeof (*ht), KM_SLEEP);
usr/src/uts/common/io/scsi/adapters/smartpqi/smartpqi_init.c
333
c_table = kmem_zalloc(s->s_config_table_len, KM_SLEEP);
usr/src/uts/common/io/scsi/adapters/smartpqi/smartpqi_init.c
575
KM_SLEEP);
usr/src/uts/common/io/scsi/adapters/smartpqi/smartpqi_init.c
580
io->io_iu = kmem_zalloc(s->s_max_inbound_iu_length, KM_SLEEP);
usr/src/uts/common/io/scsi/adapters/smartpqi/smartpqi_init.c
916
ident = kmem_zalloc(sizeof (*ident), KM_SLEEP);
usr/src/uts/common/io/scsi/adapters/smartpqi/smartpqi_init.c
942
b = kmem_zalloc(sizeof (*b), KM_SLEEP);
usr/src/uts/common/io/scsi/adapters/smartpqi/smartpqi_intr.c
235
s->s_itable = kmem_zalloc(s->s_intr_size, KM_SLEEP);
usr/src/uts/common/io/scsi/adapters/smartpqi/smartpqi_util.c
492
d = kmem_zalloc(sizeof (*d), KM_SLEEP);
usr/src/uts/common/io/scsi/adapters/smartpqi/smartpqi_util.c
655
m.mem = kmem_alloc(m.len, KM_SLEEP);
usr/src/uts/common/io/scsi/adapters/smartpqi/smartpqi_util.c
908
scratch = kmem_alloc(len, KM_SLEEP);
usr/src/uts/common/io/scsi/adapters/smartpqi/smartpqi_util.c
969
scratch = kmem_alloc(len, KM_SLEEP);
usr/src/uts/common/io/scsi/adapters/smrt/smrt_ciss.c
1213
if ((smcm = smrt_command_alloc_preinit(smrt, sz, KM_SLEEP)) == NULL) {
usr/src/uts/common/io/scsi/adapters/smrt/smrt_commands.c
157
VERIFY(kmflags == KM_SLEEP || kmflags == KM_NOSLEEP);
usr/src/uts/common/io/scsi/adapters/smrt/smrt_commands.c
258
VERIFY(kmflags == KM_SLEEP || kmflags == KM_NOSLEEP);
usr/src/uts/common/io/scsi/adapters/smrt/smrt_commands.c
76
int (*dma_wait)(caddr_t) = (kmflags == KM_SLEEP) ? DDI_DMA_SLEEP :
usr/src/uts/common/io/scsi/adapters/smrt/smrt_commands.c
79
VERIFY(kmflags == KM_SLEEP || kmflags == KM_NOSLEEP);
usr/src/uts/common/io/scsi/adapters/smrt/smrt_hba.c
300
int kmflags = callback == SLEEP_FUNC ? KM_SLEEP : KM_NOSLEEP;
usr/src/uts/common/io/scsi/conf/scsi_confsubr.c
1101
KM_SLEEP : KM_NOSLEEP));
usr/src/uts/common/io/scsi/conf/scsi_confsubr.c
1580
data_string = kmem_zalloc(ilen + 1, KM_SLEEP);
usr/src/uts/common/io/scsi/conf/scsi_confsubr.c
2022
((callback == SLEEP_FUNC) ? KM_SLEEP : KM_NOSLEEP));
usr/src/uts/common/io/scsi/conf/scsi_confsubr.c
2045
((callback == SLEEP_FUNC) ? KM_SLEEP : KM_NOSLEEP));
usr/src/uts/common/io/scsi/conf/scsi_confsubr.c
2103
((callback == SLEEP_FUNC) ? KM_SLEEP : KM_NOSLEEP));
usr/src/uts/common/io/scsi/conf/scsi_confsubr.c
272
scsi_pkt_bad_alloc_bitmap = kmem_zalloc(BT_SIZEOFMAP(devcnt), KM_SLEEP);
usr/src/uts/common/io/scsi/conf/scsi_confsubr.c
810
pathbuf = kmem_alloc(MAXPATHLEN, KM_SLEEP);
usr/src/uts/common/io/scsi/impl/scsi_hba.c
10097
phymap = kmem_zalloc(sizeof (*phymap), KM_SLEEP);
usr/src/uts/common/io/scsi/impl/scsi_hba.c
10257
physet = kmem_zalloc(sizeof (*physet), KM_SLEEP);
usr/src/uts/common/io/scsi/impl/scsi_hba.c
10467
cphys = kmem_alloc(sizeof (*cphys), KM_SLEEP);
usr/src/uts/common/io/scsi/impl/scsi_hba.c
1445
return (kmem_zalloc(sizeof (smp_hba_tran_t), KM_SLEEP));
usr/src/uts/common/io/scsi/impl/scsi_hba.c
1595
smp_sd = kmem_zalloc(sizeof (struct smp_device), KM_SLEEP);
usr/src/uts/common/io/scsi/impl/scsi_hba.c
1952
sd = kmem_zalloc(sizeof (struct scsi_device), KM_SLEEP);
usr/src/uts/common/io/scsi/impl/scsi_hba.c
1999
sizeof (scsi_hba_tran_t), KM_SLEEP);
usr/src/uts/common/io/scsi/impl/scsi_hba.c
2624
(callback == SLEEP_FUNC) ? KM_SLEEP : KM_NOSLEEP);
usr/src/uts/common/io/scsi/impl/scsi_hba.c
3839
compatp = kmem_alloc((NCOMPAT * sizeof (char *)) + tlen, KM_SLEEP);
usr/src/uts/common/io/scsi/impl/scsi_hba.c
4140
*nodenamep = kmem_alloc(strlen(nname) + 1, KM_SLEEP);
usr/src/uts/common/io/scsi/impl/scsi_hba.c
4159
*drivernamep = kmem_alloc(strlen(dname) + 1, KM_SLEEP);
usr/src/uts/common/io/scsi/impl/scsi_hba.c
4826
tgt_port = kmem_alloc(tgt_port_len, KM_SLEEP);
usr/src/uts/common/io/scsi/impl/scsi_hba.c
4862
tgt_port = kmem_alloc(tgt_port_len, KM_SLEEP);
usr/src/uts/common/io/scsi/impl/scsi_hba.c
5714
nb = kmem_alloc(sizeof (struct scsi_hba_barrier), KM_SLEEP);
usr/src/uts/common/io/scsi/impl/scsi_hba.c
5954
lunchg2 = kmem_alloc(sizeof (*lunchg2), KM_SLEEP);
usr/src/uts/common/io/scsi/impl/scsi_hba.c
6872
h = kmem_zalloc(sizeof (*h), KM_SLEEP);
usr/src/uts/common/io/scsi/impl/scsi_hba.c
6880
td = kmem_alloc(sizeof (*td), KM_SLEEP);
usr/src/uts/common/io/scsi/impl/scsi_hba.c
7103
nluns * sizeof (scsi_lun_t), KM_SLEEP);
usr/src/uts/common/io/scsi/impl/scsi_hba.c
7213
h = kmem_zalloc(sizeof (*h), KM_SLEEP);
usr/src/uts/common/io/scsi/impl/scsi_hba.c
7246
ld = kmem_alloc(sizeof (*ld), KM_SLEEP);
usr/src/uts/common/io/scsi/impl/scsi_hba.c
7310
ld = kmem_alloc(sizeof (*ld), KM_SLEEP);
usr/src/uts/common/io/scsi/impl/scsi_hba.c
7357
ld = kmem_alloc(sizeof (*ld), KM_SLEEP);
usr/src/uts/common/io/scsi/impl/scsi_hba.c
7535
taddrs = kmem_zalloc(sizeof (char *) * (ntargets + 1), KM_SLEEP);
usr/src/uts/common/io/scsi/impl/scsi_hba.c
7542
tbuf = kmem_alloc(((tgt/16) + 1) + 1, KM_SLEEP);
usr/src/uts/common/io/scsi/impl/scsi_hba.c
804
kmflag == KM_SLEEP ? SLEEP_FUNC: NULL_FUNC, NULL,
usr/src/uts/common/io/scsi/impl/scsi_hba.c
8646
tgtmap = kmem_zalloc(sizeof (*tgtmap), KM_SLEEP);
usr/src/uts/common/io/scsi/impl/scsi_hba.c
8942
lunchg2 = kmem_alloc(sizeof (*lunchg2), KM_SLEEP);
usr/src/uts/common/io/scsi/impl/scsi_hba.c
9073
newiports = kmem_alloc((sizeof (char *) * (ports + 1)), KM_SLEEP);
usr/src/uts/common/io/scsi/impl/scsi_hba.c
912
(flags & SCSI_HBA_CANSLEEP) ? KM_SLEEP : KM_NOSLEEP);
usr/src/uts/common/io/scsi/impl/scsi_hba.c
9160
addr = kmem_zalloc(SCSI_MAXNAMELEN, KM_SLEEP);
usr/src/uts/common/io/scsi/impl/scsi_hba.c
9295
addr = kmem_zalloc(SCSI_MAXNAMELEN, KM_SLEEP);
usr/src/uts/common/io/scsi/impl/scsi_hba.c
9396
addr = kmem_zalloc(SCSI_MAXNAMELEN, KM_SLEEP);
usr/src/uts/common/io/scsi/impl/scsi_hba.c
954
(flags & SCSI_HBA_CANSLEEP) ? KM_SLEEP : KM_NOSLEEP);
usr/src/uts/common/io/scsi/impl/scsi_hba.c
9551
iportmap = kmem_zalloc(sizeof (*iportmap), KM_SLEEP);
usr/src/uts/common/io/scsi/impl/scsi_reset_notify.c
68
KM_SLEEP);
usr/src/uts/common/io/scsi/impl/scsi_resource.c
284
kf = KM_SLEEP;
usr/src/uts/common/io/scsi/impl/scsi_resource.c
56
kmflag = (callback == SLEEP_FUNC) ? KM_SLEEP : KM_NOSLEEP;
usr/src/uts/common/io/scsi/impl/scsi_subr.c
1399
trs = i_ddi_strdup(trs, KM_SLEEP);
usr/src/uts/common/io/scsi/impl/scsi_subr.c
2119
kmem_zalloc(sizeof (struct uscsi_i_cmd), KM_SLEEP);
usr/src/uts/common/io/scsi/impl/scsi_subr.c
2257
uscmd->uscsi_cdb = kmem_zalloc((size_t)uscmd->uscsi_cdblen, KM_SLEEP);
usr/src/uts/common/io/scsi/impl/scsi_subr.c
2300
KM_SLEEP);
usr/src/uts/common/io/scsi/impl/scsi_subr.c
2304
KM_SLEEP);
usr/src/uts/common/io/scsi/impl/scsi_subr.c
2403
bp = getrbuf(KM_SLEEP);
usr/src/uts/common/io/scsi/impl/scsi_watch.c
270
swr = kmem_zalloc(sizeof (struct scsi_watch_request), KM_SLEEP);
usr/src/uts/common/io/scsi/impl/smp_transport.c
123
component = kmem_zalloc(clen, KM_SLEEP);
usr/src/uts/common/io/scsi/impl/smp_transport.c
44
data_string = kmem_zalloc(ilen + 1, KM_SLEEP);
usr/src/uts/common/io/scsi/targets/sd.c
10983
MAX_SENSE_LENGTH, KM_SLEEP);
usr/src/uts/common/io/scsi/targets/sd.c
10985
xp = kmem_zalloc(sizeof (struct sd_xbuf), KM_SLEEP);
usr/src/uts/common/io/scsi/targets/sd.c
11126
ssc = kmem_zalloc(sizeof (sd_ssc_t), KM_SLEEP);
usr/src/uts/common/io/scsi/targets/sd.c
11136
uip = kmem_zalloc(sizeof (struct sd_uscsi_info), KM_SLEEP);
usr/src/uts/common/io/scsi/targets/sd.c
12164
bsp = kmem_zalloc(sizeof (struct sd_mapblocksize_info), KM_SLEEP);
usr/src/uts/common/io/scsi/targets/sd.c
12262
kmem_zalloc(sizeof (struct sd_mapblocksize_info), KM_SLEEP);
usr/src/uts/common/io/scsi/targets/sd.c
13592
NULL, KM_SLEEP);
usr/src/uts/common/io/scsi/targets/sd.c
13600
new_xp = kmem_alloc(sizeof (struct sd_xbuf), KM_SLEEP);
usr/src/uts/common/io/scsi/targets/sd.c
13656
new_bp = getrbuf(KM_SLEEP);
usr/src/uts/common/io/scsi/targets/sd.c
13657
new_bp->b_un.b_addr = kmem_zalloc(datalen, KM_SLEEP);
usr/src/uts/common/io/scsi/targets/sd.c
13682
new_xp = kmem_alloc(sizeof (struct sd_xbuf), KM_SLEEP);
usr/src/uts/common/io/scsi/targets/sd.c
15695
xp = kmem_alloc(sizeof (struct sd_xbuf), KM_SLEEP);
usr/src/uts/common/io/scsi/targets/sd.c
17108
local_buf = kmem_zalloc(SD_DUMP_MEMORY_BUF_SIZE, KM_SLEEP);
usr/src/uts/common/io/scsi/targets/sd.c
18789
sd_log_lun_expansion_event(un, KM_SLEEP);
usr/src/uts/common/io/scsi/targets/sd.c
19215
capacity_buf = kmem_zalloc(SD_CAPACITY_SIZE, KM_SLEEP);
usr/src/uts/common/io/scsi/targets/sd.c
19433
capacity16_buf = kmem_zalloc(SD_CAPACITY_16_SIZE, KM_SLEEP);
usr/src/uts/common/io/scsi/targets/sd.c
20078
data_bufp = kmem_zalloc(MHIOC_RESV_KEY_SIZE, KM_SLEEP);
usr/src/uts/common/io/scsi/targets/sd.c
20186
prp = kmem_zalloc(data_len, KM_SLEEP);
usr/src/uts/common/io/scsi/targets/sd.c
20367
cdb = kmem_zalloc(CDB_GROUP1, KM_SLEEP);
usr/src/uts/common/io/scsi/targets/sd.c
20385
uscmd = kmem_zalloc(sizeof (struct uscsi_cmd), KM_SLEEP);
usr/src/uts/common/io/scsi/targets/sd.c
20390
uscmd->uscsi_rqbuf = kmem_zalloc(SENSE_LENGTH, KM_SLEEP);
usr/src/uts/common/io/scsi/targets/sd.c
20404
uip = kmem_zalloc(sizeof (struct sd_uscsi_info), KM_SLEEP);
usr/src/uts/common/io/scsi/targets/sd.c
20408
bp = getrbuf(KM_SLEEP);
usr/src/uts/common/io/scsi/targets/sd.c
20659
uph = kmem_zalloc(SD_UNMAP_PARAM_LIST_MAXSZ, KM_SLEEP);
usr/src/uts/common/io/scsi/targets/sd.c
20769
int err = dfl_copyin(dfl, &dfl, flag, KM_SLEEP);
usr/src/uts/common/io/scsi/targets/sd.c
22771
kmem_zalloc(sizeof (struct dk_cinfo), KM_SLEEP);
usr/src/uts/common/io/scsi/targets/sd.c
22861
out_data = kmem_zalloc(SD_PROFILE_HEADER_LEN, KM_SLEEP);
usr/src/uts/common/io/scsi/targets/sd.c
22862
rqbuf = kmem_zalloc(SENSE_LENGTH, KM_SLEEP);
usr/src/uts/common/io/scsi/targets/sd.c
23595
dktemp = kmem_zalloc(sizeof (struct dk_temperature), KM_SLEEP);
usr/src/uts/common/io/scsi/targets/sd.c
23641
temperature_page = kmem_zalloc(TEMPERATURE_PAGE_SIZE, KM_SLEEP);
usr/src/uts/common/io/scsi/targets/sd.c
23733
log_page_data = kmem_zalloc(0xFF, KM_SLEEP);
usr/src/uts/common/io/scsi/targets/sd.c
23868
kmem_zalloc(sizeof (struct mhioctkown), KM_SLEEP);
usr/src/uts/common/io/scsi/targets/sd.c
25125
com = kmem_zalloc(sizeof (*com), KM_SLEEP);
usr/src/uts/common/io/scsi/targets/sd.c
2546
KM_SLEEP);
usr/src/uts/common/io/scsi/targets/sd.c
26048
data_bufp = kmem_zalloc(data_len, KM_SLEEP);
usr/src/uts/common/io/scsi/targets/sd.c
26210
data_bufp = kmem_zalloc(data_len, KM_SLEEP);
usr/src/uts/common/io/scsi/targets/sd.c
26347
sense = kmem_zalloc(BUFLEN_CHG_BLK_MODE, KM_SLEEP);
usr/src/uts/common/io/scsi/targets/sd.c
26414
select = kmem_zalloc(BUFLEN_CHG_BLK_MODE, KM_SLEEP);
usr/src/uts/common/io/scsi/targets/sd.c
26530
sense = kmem_zalloc(BUFLEN_MODE_CDROM_SPEED, KM_SLEEP);
usr/src/uts/common/io/scsi/targets/sd.c
26599
select = kmem_zalloc(BUFLEN_MODE_CDROM_SPEED, KM_SLEEP);
usr/src/uts/common/io/scsi/targets/sd.c
26697
sense = kmem_zalloc(BUFLEN_MODE_CDROM_CAP, KM_SLEEP);
usr/src/uts/common/io/scsi/targets/sd.c
26781
com = kmem_zalloc(sizeof (*com), KM_SLEEP);
usr/src/uts/common/io/scsi/targets/sd.c
26833
com = kmem_zalloc(sizeof (*com), KM_SLEEP);
usr/src/uts/common/io/scsi/targets/sd.c
26906
com = kmem_zalloc(sizeof (*com), KM_SLEEP);
usr/src/uts/common/io/scsi/targets/sd.c
2692
KM_SLEEP);
usr/src/uts/common/io/scsi/targets/sd.c
26972
com = kmem_zalloc(sizeof (*com), KM_SLEEP);
usr/src/uts/common/io/scsi/targets/sd.c
27031
subcode = kmem_zalloc(sizeof (struct cdrom_subcode), KM_SLEEP);
usr/src/uts/common/io/scsi/targets/sd.c
27078
com = kmem_zalloc(sizeof (*com), KM_SLEEP);
usr/src/uts/common/io/scsi/targets/sd.c
27160
buffer = kmem_zalloc((size_t)16, KM_SLEEP);
usr/src/uts/common/io/scsi/targets/sd.c
27176
com = kmem_zalloc(sizeof (*com), KM_SLEEP);
usr/src/uts/common/io/scsi/targets/sd.c
27288
buffer = kmem_zalloc((size_t)12, KM_SLEEP);
usr/src/uts/common/io/scsi/targets/sd.c
27289
com = kmem_zalloc(sizeof (*com), KM_SLEEP);
usr/src/uts/common/io/scsi/targets/sd.c
27450
buffer = kmem_zalloc(4, KM_SLEEP);
usr/src/uts/common/io/scsi/targets/sd.c
27463
com = kmem_zalloc(sizeof (*com), KM_SLEEP);
usr/src/uts/common/io/scsi/targets/sd.c
2767
bufaddr = kmem_zalloc(SUN_INQSIZE, KM_SLEEP);
usr/src/uts/common/io/scsi/targets/sd.c
27677
com = kmem_zalloc(sizeof (*com), KM_SLEEP);
usr/src/uts/common/io/scsi/targets/sd.c
27807
com = kmem_zalloc(sizeof (*com), KM_SLEEP);
usr/src/uts/common/io/scsi/targets/sd.c
27880
sense = kmem_zalloc(20, KM_SLEEP);
usr/src/uts/common/io/scsi/targets/sd.c
27893
select = kmem_zalloc(20, KM_SLEEP);
usr/src/uts/common/io/scsi/targets/sd.c
27974
cdda = kmem_zalloc(sizeof (struct cdrom_cdda), KM_SLEEP);
usr/src/uts/common/io/scsi/targets/sd.c
28040
com = kmem_zalloc(sizeof (*com), KM_SLEEP);
usr/src/uts/common/io/scsi/targets/sd.c
28143
cdxa = kmem_zalloc(sizeof (struct cdrom_cdxa), KM_SLEEP);
usr/src/uts/common/io/scsi/targets/sd.c
28205
com = kmem_zalloc(sizeof (*com), KM_SLEEP);
usr/src/uts/common/io/scsi/targets/sd.c
2834
header = kmem_zalloc(buflen, KM_SLEEP);
usr/src/uts/common/io/scsi/targets/sd.c
28393
sense = kmem_zalloc(hdrlen, KM_SLEEP);
usr/src/uts/common/io/scsi/targets/sd.c
28404
sense = kmem_zalloc(hdrlen, KM_SLEEP);
usr/src/uts/common/io/scsi/targets/sd.c
28484
sense = kmem_zalloc(sense_buflen, KM_SLEEP);
usr/src/uts/common/io/scsi/targets/sd.c
28485
select = kmem_zalloc(select_buflen, KM_SLEEP);
usr/src/uts/common/io/scsi/targets/sd.c
28523
sense = kmem_zalloc(sense_buflen, KM_SLEEP);
usr/src/uts/common/io/scsi/targets/sd.c
28524
select = kmem_zalloc(select_buflen, KM_SLEEP);
usr/src/uts/common/io/scsi/targets/sd.c
28640
buffer = kmem_zalloc((size_t)SONY_SESSION_OFFSET_LEN, KM_SLEEP);
usr/src/uts/common/io/scsi/targets/sd.c
28650
com = kmem_zalloc(sizeof (*com), KM_SLEEP);
usr/src/uts/common/io/scsi/targets/sd.c
28820
KM_SLEEP);
usr/src/uts/common/io/scsi/targets/sd.c
2963
buf = kmem_zalloc(BUFLEN_MODE_CDROM_CAP, KM_SLEEP);
usr/src/uts/common/io/scsi/targets/sd.c
2983
out_data_gesn = kmem_zalloc(gesn_len, KM_SLEEP);
usr/src/uts/common/io/scsi/targets/sd.c
30497
dkl = kmem_zalloc(buffer_size, KM_SLEEP);
usr/src/uts/common/io/scsi/targets/sd.c
3050
out_data_rw = kmem_zalloc(SD_CURRENT_FEATURE_LEN, KM_SLEEP);
usr/src/uts/common/io/scsi/targets/sd.c
3051
rqbuf_rw = kmem_zalloc(SENSE_LENGTH, KM_SLEEP);
usr/src/uts/common/io/scsi/targets/sd.c
3065
out_data_hd = kmem_zalloc(SD_CURRENT_FEATURE_LEN, KM_SLEEP);
usr/src/uts/common/io/scsi/targets/sd.c
3066
rqbuf_hd = kmem_zalloc(SENSE_LENGTH, KM_SLEEP);
usr/src/uts/common/io/scsi/targets/sd.c
31163
inqb1 = kmem_zalloc(inqb1_len, KM_SLEEP);
usr/src/uts/common/io/scsi/targets/sd.c
3136
out_data = kmem_zalloc(SD_PROFILE_HEADER_LEN, KM_SLEEP);
usr/src/uts/common/io/scsi/targets/sd.c
3137
rqbuf = kmem_zalloc(SENSE_LENGTH, KM_SLEEP);
usr/src/uts/common/io/scsi/targets/sd.c
3165
buf = kmem_zalloc(BUFLEN_MODE_CDROM_CAP, KM_SLEEP);
usr/src/uts/common/io/scsi/targets/sd.c
3211
out_data_rw = kmem_zalloc(SD_CURRENT_FEATURE_LEN, KM_SLEEP);
usr/src/uts/common/io/scsi/targets/sd.c
3212
rqbuf_rw = kmem_zalloc(SENSE_LENGTH, KM_SLEEP);
usr/src/uts/common/io/scsi/targets/sd.c
3226
out_data_hd = kmem_zalloc(SD_CURRENT_FEATURE_LEN, KM_SLEEP);
usr/src/uts/common/io/scsi/targets/sd.c
3227
rqbuf_hd = kmem_zalloc(SENSE_LENGTH, KM_SLEEP);
usr/src/uts/common/io/scsi/targets/sd.c
4433
p3bufp = kmem_zalloc(SD_MODE_SENSE_PAGE3_LENGTH, KM_SLEEP);
usr/src/uts/common/io/scsi/targets/sd.c
4512
p4bufp = kmem_zalloc(SD_MODE_SENSE_PAGE4_LENGTH, KM_SLEEP);
usr/src/uts/common/io/scsi/targets/sd.c
4835
inqB0 = kmem_zalloc(MAX_INQUIRY_SIZE, KM_SLEEP);
usr/src/uts/common/io/scsi/targets/sd.c
4899
inq80 = kmem_zalloc(inq80_len, KM_SLEEP);
usr/src/uts/common/io/scsi/targets/sd.c
4944
inq83 = kmem_zalloc(inq83_len, KM_SLEEP);
usr/src/uts/common/io/scsi/targets/sd.c
5115
dkdevid = kmem_alloc(buffer_size, KM_SLEEP);
usr/src/uts/common/io/scsi/targets/sd.c
5155
tmpid = kmem_alloc(sz, KM_SLEEP);
usr/src/uts/common/io/scsi/targets/sd.c
5251
buf = kmem_zalloc(un->un_sys_blocksize, KM_SLEEP);
usr/src/uts/common/io/scsi/targets/sd.c
5327
page_list = kmem_zalloc(page_length, KM_SLEEP);
usr/src/uts/common/io/scsi/targets/sd.c
5572
log_page_data = kmem_zalloc(log_page_size, KM_SLEEP);
usr/src/uts/common/io/scsi/targets/sd.c
6223
log_page_data = kmem_zalloc(log_page_size, KM_SLEEP);
usr/src/uts/common/io/scsi/targets/sd.c
7381
kmem_zalloc(sizeof (struct sd_fm_internal), KM_SLEEP);
usr/src/uts/common/io/scsi/targets/sd.c
8712
*header = kmem_zalloc(buflen, KM_SLEEP);
usr/src/uts/common/io/scsi/targets/sd.c
9073
inq86 = kmem_zalloc(inq86_len, KM_SLEEP);
usr/src/uts/common/io/scsi/targets/sd.c
9112
dkc = kmem_zalloc(sizeof (struct dk_callback), KM_SLEEP);
usr/src/uts/common/io/scsi/targets/sd.c
9614
(nodelay ? KM_NOSLEEP : KM_SLEEP));
usr/src/uts/common/io/scsi/targets/sd_xbuf.c
114
xap = kmem_zalloc(sizeof (struct __ddi_xbuf_attr), KM_SLEEP);
usr/src/uts/common/io/scsi/targets/sd_xbuf.c
232
brkp = kmem_zalloc(sizeof (struct xbuf_brk), KM_SLEEP);
usr/src/uts/common/io/scsi/targets/sd_xbuf.c
509
NULL, KM_SLEEP);
usr/src/uts/common/io/scsi/targets/sd_xbuf.c
518
brkp->blkno, xbuf_brk_done, NULL, KM_SLEEP);
usr/src/uts/common/io/scsi/targets/ses.c
1690
inq00 = kmem_zalloc(SES_VPD_SIZE, KM_SLEEP);
usr/src/uts/common/io/scsi/targets/ses.c
1691
inq80 = kmem_zalloc(SES_VPD_SIZE, KM_SLEEP);
usr/src/uts/common/io/scsi/targets/ses.c
1692
inq83 = kmem_zalloc(SES_VPD_SIZE, KM_SLEEP);
usr/src/uts/common/io/scsi/targets/ses.c
499
ssc->ses_sbufp = getrbuf(KM_SLEEP);
usr/src/uts/common/io/scsi/targets/ses.c
760
rv = (*ssc->ses_vec.get_encstat)(ssc, KM_SLEEP);
usr/src/uts/common/io/scsi/targets/ses.c
784
rv = (*ssc->ses_vec.set_encstat)(ssc, t, KM_SLEEP);
usr/src/uts/common/io/scsi/targets/ses.c
799
if ((rv = (*ssc->ses_vec.get_objstat)(ssc, &x, KM_SLEEP)) != 0)
usr/src/uts/common/io/scsi/targets/ses.c
826
rv = (*ssc->ses_vec.set_objstat)(ssc, &x, KM_SLEEP);
usr/src/uts/common/io/scsi/targets/ses_safte.c
112
sdata = kmem_alloc(SCRATCH, KM_SLEEP);
usr/src/uts/common/io/scsi/targets/ses_safte.c
180
ssc->ses_private = kmem_zalloc(SAFTE_PRIVATE, KM_SLEEP);
usr/src/uts/common/io/scsi/targets/ses_safte.c
205
kmem_zalloc(ssc->ses_nobjects * sizeof (encobj), KM_SLEEP);
usr/src/uts/common/io/scsi/targets/ses_safte.c
246
sdata = kmem_alloc(SCRATCH, KM_SLEEP);
usr/src/uts/common/io/scsi/targets/ses_sen.c
85
kmem_zalloc(NOBJECTS * sizeof (encobj), KM_SLEEP);
usr/src/uts/common/io/scsi/targets/ses_ses.c
238
sdata = kmem_alloc(SCSZ, KM_SLEEP);
usr/src/uts/common/io/scsi/targets/ses_ses.c
336
kmem_zalloc(nobj * sizeof (encobj), KM_SLEEP);
usr/src/uts/common/io/scsi/targets/ses_ses.c
339
kmem_zalloc(nobj * sizeof (struct typidx), KM_SLEEP);
usr/src/uts/common/io/scsi/targets/ses_ses.c
341
cc->ses_eltmap = kmem_zalloc(ntype, KM_SLEEP);
usr/src/uts/common/io/scsi/targets/ses_ses.c
421
ssc->ses_private = kmem_zalloc(sizeof (struct sscfg), KM_SLEEP);
usr/src/uts/common/io/scsi/targets/sgen.c
2070
buf = kmem_alloc(nbytes, KM_SLEEP);
usr/src/uts/common/io/scsi/targets/sgen.c
2105
buf = kmem_alloc(nbytes, KM_SLEEP);
usr/src/uts/common/io/scsi/targets/sgen.c
317
KM_SLEEP);
usr/src/uts/common/io/scsi/targets/sgen.c
370
KM_SLEEP);
usr/src/uts/common/io/scsi/targets/sgen.c
371
nodep->node_vendor = kmem_alloc(vcplen + 1, KM_SLEEP);
usr/src/uts/common/io/scsi/targets/sgen.c
373
nodep->node_product = kmem_alloc(pcplen + 1, KM_SLEEP);
usr/src/uts/common/io/scsi/targets/sgen.c
648
sg_state->sgen_cmdbuf = getrbuf(KM_SLEEP);
usr/src/uts/common/io/scsi/targets/smp.c
442
KM_SLEEP);
usr/src/uts/common/io/scsi/targets/smp.c
446
KM_SLEEP);
usr/src/uts/common/io/scsi/targets/st.c
10419
err_entry_tmp = kmem_alloc(MTERROR_LINK_ENTRY_SIZE, KM_SLEEP);
usr/src/uts/common/io/scsi/targets/st.c
10423
kmem_alloc(cdblen, KM_SLEEP);
usr/src/uts/common/io/scsi/targets/st.c
10427
kmem_alloc(SECMDS_STATUS_SIZE, KM_SLEEP);
usr/src/uts/common/io/scsi/targets/st.c
12423
com = kmem_zalloc(sizeof (*com), KM_SLEEP);
usr/src/uts/common/io/scsi/targets/st.c
12424
sensep = kmem_zalloc(TAPE_SENSE_LENGTH, KM_SLEEP);
usr/src/uts/common/io/scsi/targets/st.c
12551
com = kmem_zalloc(sizeof (*com), KM_SLEEP);
usr/src/uts/common/io/scsi/targets/st.c
12552
sensep = kmem_zalloc(LOG_SENSE_LENGTH, KM_SLEEP);
usr/src/uts/common/io/scsi/targets/st.c
13344
com = kmem_zalloc(sizeof (struct uscsi_cmd), KM_SLEEP);
usr/src/uts/common/io/scsi/targets/st.c
13345
sensep = kmem_zalloc(LOG_SENSE_LENGTH, KM_SLEEP);
usr/src/uts/common/io/scsi/targets/st.c
13518
cmd = kmem_zalloc(sizeof (struct uscsi_cmd), KM_SLEEP);
usr/src/uts/common/io/scsi/targets/st.c
13519
sp = kmem_zalloc(sizeof (struct log_sequential_page), KM_SLEEP);
usr/src/uts/common/io/scsi/targets/st.c
13598
com = kmem_zalloc(sizeof (struct uscsi_cmd), KM_SLEEP);
usr/src/uts/common/io/scsi/targets/st.c
13599
ta = kmem_zalloc(sizeof (struct st_tape_alert), KM_SLEEP);
usr/src/uts/common/io/scsi/targets/st.c
13734
com = kmem_zalloc(sizeof (struct uscsi_cmd), KM_SLEEP);
usr/src/uts/common/io/scsi/targets/st.c
13735
sensep = kmem_zalloc(length, KM_SLEEP);
usr/src/uts/common/io/scsi/targets/st.c
13902
buf = kmem_zalloc(HP_DAT_INQUIRY, KM_SLEEP);
usr/src/uts/common/io/scsi/targets/st.c
13996
buf = kmem_zalloc(LTO_REQ_INQUIRY, KM_SLEEP);
usr/src/uts/common/io/scsi/targets/st.c
14055
buf = kmem_zalloc(6, KM_SLEEP);
usr/src/uts/common/io/scsi/targets/st.c
14099
cmd = kmem_zalloc(sizeof (struct uscsi_cmd), KM_SLEEP);
usr/src/uts/common/io/scsi/targets/st.c
14100
buf = kmem_alloc(STK_REQ_SENSE, KM_SLEEP);
usr/src/uts/common/io/scsi/targets/st.c
14152
buf = kmem_alloc(DLT_INQ_SZ, KM_SLEEP);
usr/src/uts/common/io/scsi/targets/st.c
14205
buf = kmem_alloc(DLT_INQ_SZ, KM_SLEEP);
usr/src/uts/common/io/scsi/targets/st.c
14287
ait_conf = kmem_zalloc(sizeof (ait_dev_con), KM_SLEEP);
usr/src/uts/common/io/scsi/targets/st.c
14417
cmd = kmem_zalloc(sizeof (struct uscsi_cmd), KM_SLEEP);
usr/src/uts/common/io/scsi/targets/st.c
14500
cmd = kmem_zalloc(sizeof (struct uscsi_cmd), KM_SLEEP);
usr/src/uts/common/io/scsi/targets/st.c
14501
sense = kmem_alloc(sizeof (struct scsi_extended_sense), KM_SLEEP);
usr/src/uts/common/io/scsi/targets/st.c
15122
cmd = kmem_zalloc(sizeof (struct uscsi_cmd), KM_SLEEP);
usr/src/uts/common/io/scsi/targets/st.c
1605
int km_flags = (canwait != NULL_FUNC) ? KM_SLEEP : KM_NOSLEEP;
usr/src/uts/common/io/scsi/targets/st.c
16112
int (*dma_alloc_cb)() = (alloc_flags == KM_SLEEP) ?
usr/src/uts/common/io/scsi/targets/st.c
16146
if (alloc_flags == KM_SLEEP) {
usr/src/uts/common/io/scsi/targets/st.c
16196
(alloc_flags != KM_SLEEP)) {
usr/src/uts/common/io/scsi/targets/st.c
16296
cp = st_get_contig_mem(un, bp->b_bcount, KM_SLEEP);
usr/src/uts/common/io/scsi/targets/st.c
16423
un->un_media_id = kmem_zalloc(size, KM_SLEEP);
usr/src/uts/common/io/scsi/targets/st.c
16437
un->un_media_id = kmem_zalloc(size, KM_SLEEP);
usr/src/uts/common/io/scsi/targets/st.c
16495
char *buf = kmem_alloc(newsize, KM_SLEEP);
usr/src/uts/common/io/scsi/targets/st.c
16527
buffer = kmem_zalloc(size, KM_SLEEP);
usr/src/uts/common/io/scsi/targets/st.c
16582
ucmd = kmem_zalloc(sizeof (struct uscsi_cmd), KM_SLEEP);
usr/src/uts/common/io/scsi/targets/st.c
16584
buf = kmem_alloc(size, KM_SLEEP);
usr/src/uts/common/io/scsi/targets/st.c
16765
errinfo = kmem_zalloc(ST_ERR_INFO_SIZE, KM_SLEEP);
usr/src/uts/common/io/scsi/targets/st.c
1689
un->un_uscsi_rqs_buf = kmem_alloc(SENSE_LENGTH, KM_SLEEP);
usr/src/uts/common/io/scsi/targets/st.c
1696
sizeof (struct seq_mode), ((km_flags == KM_SLEEP) ? 1 : 0), 0,
usr/src/uts/common/io/scsi/targets/st.c
1700
sizeof (read_pos_data_t), ((km_flags == KM_SLEEP) ? 1 : 0), 0,
usr/src/uts/common/io/scsi/targets/st.c
17571
current = kmem_zalloc(sizeof (struct seq_mode), KM_SLEEP);
usr/src/uts/common/io/scsi/targets/st.c
17759
readp_datap = kmem_zalloc(sizeof (read_pos_data_t), KM_SLEEP);
usr/src/uts/common/io/scsi/targets/st.c
18522
mode_data = kmem_zalloc(SAS_TLR_MOD_LEN, KM_SLEEP);
usr/src/uts/common/io/scsi/targets/st.c
1868
dp = kmem_zalloc((size_t)un->un_dp_size, KM_SLEEP);
usr/src/uts/common/io/scsi/targets/st.c
2292
tem_dp = kmem_zalloc(sizeof (struct st_drivetype), KM_SLEEP);
usr/src/uts/common/io/scsi/targets/st.c
2371
blklim = kmem_zalloc(sizeof (struct read_blklim), KM_SLEEP);
usr/src/uts/common/io/scsi/targets/st.c
2391
buf = kmem_zalloc(6, KM_SLEEP);
usr/src/uts/common/io/scsi/targets/st.c
2462
den_header = kmem_zalloc(buflen, KM_SLEEP);
usr/src/uts/common/io/scsi/targets/st.c
2477
den_header = kmem_zalloc(buflen, KM_SLEEP);
usr/src/uts/common/io/scsi/targets/st.c
2696
oper = kmem_zalloc(buflen, KM_SLEEP);
usr/src/uts/common/io/scsi/targets/st.c
3058
un->un_rbl = kmem_zalloc(RBLSIZE, KM_SLEEP);
usr/src/uts/common/io/scsi/targets/st.c
7332
un->un_tmpbuf = kmem_alloc(size, KM_SLEEP);
usr/src/uts/common/io/scsi/targets/st.c
7501
un->un_tmpbuf = kmem_alloc((unsigned)bp->b_bcount, KM_SLEEP);
usr/src/uts/common/io/scsi/targets/st.c
8328
com = kmem_zalloc(sizeof (*com), KM_SLEEP);
usr/src/uts/common/io/scsi/targets/st.c
8379
com = kmem_zalloc(sizeof (*com), KM_SLEEP);
usr/src/uts/common/io/scsi/targets/st.c
8414
com = kmem_zalloc(sizeof (*com), KM_SLEEP);
usr/src/uts/common/io/scsi/targets/st.c
8448
com = kmem_zalloc(sizeof (*com), KM_SLEEP);
usr/src/uts/common/io/scsi/targets/st.c
8487
com = kmem_zalloc(sizeof (*com), KM_SLEEP);
usr/src/uts/common/io/scsi/targets/st.c
8537
current = kmem_zalloc(MSIZE, KM_SLEEP);
usr/src/uts/common/io/sdcard/adapters/sdhost/sdhost.c
297
shp = kmem_zalloc(sizeof (*shp), KM_SLEEP);
usr/src/uts/common/io/sdcard/impl/sda_host.c
63
h = kmem_zalloc(sizeof (*h), KM_SLEEP);
usr/src/uts/common/io/sdcard/impl/sda_host.c
65
h->h_slots = kmem_zalloc(sizeof (sda_slot_t) * nslot, KM_SLEEP);
usr/src/uts/common/io/sdcard/impl/sda_init.c
597
cmdp = sda_cmd_alloc(slot, CMD_SWITCH_FUNC, arg, R1, NULL, KM_SLEEP);
usr/src/uts/common/io/sdcard/impl/sda_init.c
67
cmdp = sda_cmd_alloc(slot, cmd, arg, rtype, NULL, KM_SLEEP);
usr/src/uts/common/io/sdcard/impl/sda_init.c
85
cmdp = sda_cmd_alloc_acmd(slot, cmd, arg, rtype, NULL, KM_SLEEP);
usr/src/uts/common/io/sdcard/impl/sda_slot.c
513
slot->s_bdh = bd_alloc_handle(slot, &sda_bd_ops, h->h_dma, KM_SLEEP);
usr/src/uts/common/io/sfe/sfe.c
2084
gcp = kmem_zalloc(sizeof (*gcp), KM_SLEEP);
usr/src/uts/common/io/sfe/sfe.c
2206
lp = kmem_zalloc(sizeof (*lp), KM_SLEEP);
usr/src/uts/common/io/sfe/sfe_util.c
3759
kmem_zalloc(sizeof (struct gem_nd_arg) * PARAM_COUNT, KM_SLEEP);
usr/src/uts/common/io/sfe/sfe_util.c
4754
dp = kmem_zalloc(GEM_LOCAL_DATA_SIZE(gc), KM_SLEEP);
usr/src/uts/common/io/sfe/sfe_util.c
512
rbp = kmem_zalloc(sizeof (*rbp), cansleep ? KM_SLEEP : KM_NOSLEEP);
usr/src/uts/common/io/sfxge/sfxge.c
1152
sfxge_cpu = kmem_zalloc(sizeof (unsigned int) * NCPU, KM_SLEEP);
usr/src/uts/common/io/sfxge/sfxge.c
87
sp = kmem_zalloc(sizeof (*sp), KM_SLEEP);
usr/src/uts/common/io/sfxge/sfxge_ev.c
738
sep = kmem_cache_alloc(index ? sp->s_eqXc : sp->s_eq0c, KM_SLEEP);
usr/src/uts/common/io/sfxge/sfxge_ev.c
94
dma_attr.sdba_callback = (kmflags == KM_SLEEP) ?
usr/src/uts/common/io/sfxge/sfxge_gld_v3.c
691
KM_SLEEP);
usr/src/uts/common/io/sfxge/sfxge_gld_v3.c
700
*mac_priv_props = kmem_zalloc(MAXLINKPROPNAME, KM_SLEEP);
usr/src/uts/common/io/sfxge/sfxge_gld_v3.c
706
*mac_priv_props = kmem_zalloc(MAXLINKPROPNAME, KM_SLEEP);
usr/src/uts/common/io/sfxge/sfxge_gld_v3.c
712
*mac_priv_props = kmem_zalloc(MAXLINKPROPNAME, KM_SLEEP);
usr/src/uts/common/io/sfxge/sfxge_gld_v3.c
719
*mac_priv_props = kmem_zalloc(MAXLINKPROPNAME, KM_SLEEP);
usr/src/uts/common/io/sfxge/sfxge_hash.c
123
sizeof (uint32_t), KM_SLEEP);
usr/src/uts/common/io/sfxge/sfxge_intr.c
589
sip->si_table = kmem_zalloc(sip->si_table_size, KM_SLEEP);
usr/src/uts/common/io/sfxge/sfxge_rx.c
1220
if ((srp = kmem_cache_alloc(sp->s_rqc, KM_SLEEP)) == NULL) {
usr/src/uts/common/io/sfxge/sfxge_rx.c
132
(kmflags == KM_SLEEP) ? DDI_DMA_SLEEP : DDI_DMA_DONTWAIT,
usr/src/uts/common/io/sfxge/sfxge_rx.c
2214
srsp->srs_cpu = kmem_zalloc(sizeof (unsigned int) * NCPU, KM_SLEEP);
usr/src/uts/common/io/sfxge/sfxge_tx.c
1098
if ((stp = kmem_cache_alloc(sp->s_tqc, KM_SLEEP)) == NULL) {
usr/src/uts/common/io/sfxge/sfxge_tx.c
169
dma_attr.sdba_callback = ((kmflags == KM_SLEEP) ?
usr/src/uts/common/io/sfxge/sfxge_tx.c
217
(kmflags == KM_SLEEP) ? DDI_DMA_SLEEP : DDI_DMA_DONTWAIT,
usr/src/uts/common/io/signalfd.c
303
pstate = kmem_zalloc(sizeof (*pstate), KM_SLEEP);
usr/src/uts/common/io/signalfd.c
356
sp = kmem_zalloc(sizeof (*sp), KM_SLEEP);
usr/src/uts/common/io/simnet/simnet.c
1217
wls = kmem_zalloc(sizeof (wl_ess_conf_t), KM_SLEEP);
usr/src/uts/common/io/skd/skd.c
3184
KM_SLEEP);
usr/src/uts/common/io/skd/skd.c
3244
KM_SLEEP);
usr/src/uts/common/io/skd/skd.c
4163
skdev->htable = kmem_zalloc(skdev->hsize, KM_SLEEP);
usr/src/uts/common/io/skd/skd.c
4609
&skd_64bit_io_dma_attr, KM_SLEEP);
usr/src/uts/common/io/skd/skd.c
4748
skdev->pathname = kmem_zalloc(strlen(name) + 1, KM_SLEEP);
usr/src/uts/common/io/smbios.c
126
smbios_entry_t *ep = kmem_zalloc(cp->c_eplen, KM_SLEEP);
usr/src/uts/common/io/smbios.c
316
smb_clones = kmem_zalloc(sizeof (smb_clone_t) * smb_nclones, KM_SLEEP);
usr/src/uts/common/io/sock_conf.c
177
smodp = kmem_zalloc(sizeof (*smodp), KM_SLEEP);
usr/src/uts/common/io/sock_conf.c
179
smodp->smod_name = kmem_alloc(len, KM_SLEEP);
usr/src/uts/common/io/softmac/softmac_main.c
167
mod_hash_bystr, NULL, mod_hash_strkey_cmp, KM_SLEEP);
usr/src/uts/common/io/softmac/softmac_main.c
386
softmac = kmem_cache_alloc(softmac_cachep, KM_SLEEP);
usr/src/uts/common/io/softmac/softmac_main.c
443
softmac_dev = kmem_zalloc(sizeof (softmac_dev_t), KM_SLEEP);
usr/src/uts/common/io/stream.c
1003
frp, freebs_enqueue, KM_SLEEP));
usr/src/uts/common/io/stream.c
1219
mp = allocb_oversize(size, KM_SLEEP);
usr/src/uts/common/io/stream.c
1227
dbp = kmem_cache_alloc(dblk_cache[index], KM_SLEEP);
usr/src/uts/common/io/stream.c
4086
cip = kmem_cache_alloc(ciputctrl_cache, KM_SLEEP);
usr/src/uts/common/io/stream.c
4164
cip = kmem_cache_alloc(ciputctrl_cache, KM_SLEEP);
usr/src/uts/common/io/stream.c
923
frp, freebs_enqueue, KM_SLEEP);
usr/src/uts/common/io/stream.c
930
frp, freebs_enqueue, KM_SLEEP));
usr/src/uts/common/io/stream.c
996
frp, freebs_enqueue, KM_SLEEP);
usr/src/uts/common/io/strplumb.c
581
dhcack = kmem_alloc(bootp_len, KM_SLEEP);
usr/src/uts/common/io/strplumb.c
645
*devpathp = kmem_alloc(MAXPATHLEN, KM_SLEEP);
usr/src/uts/common/io/strplumb.c
688
clonepath = kmem_alloc(MAXPATHLEN, KM_SLEEP);
usr/src/uts/common/io/strplumb.c
717
macaddr = kmem_alloc(ETHERADDRL, KM_SLEEP);
usr/src/uts/common/io/suntpi.c
112
key = kmem_alloc((nstrpush + 1) * sizeof (uintptr_t), KM_SLEEP);
usr/src/uts/common/io/suntpi.c
178
*tpp = kmem_zalloc(sizeof (tpi_provinfo_t), KM_SLEEP);
usr/src/uts/common/io/suntpi.c
179
(*tpp)->tpi_key = kmem_alloc(keylen, KM_SLEEP);
usr/src/uts/common/io/sysevent.c
222
chan_name = kmem_alloc(uargs.chan_name.len, KM_SLEEP);
usr/src/uts/common/io/sysevent.c
307
sid = kmem_alloc(uargs.sid.len, KM_SLEEP);
usr/src/uts/common/io/sysevent.c
320
class_info = kmem_alloc(uargs.class_info.len, KM_SLEEP);
usr/src/uts/common/io/sysevent.c
371
sid = kmem_alloc(uargs.sid.len, KM_SLEEP);
usr/src/uts/common/io/sysevent.c
401
buf = kmem_alloc(uargs.out_data.len, KM_SLEEP);
usr/src/uts/common/io/sysevent.c
437
channel = kmem_alloc(uargs.in_data.len, KM_SLEEP);
usr/src/uts/common/io/sysevent.c
450
buf = kmem_alloc(uargs.out_data.len, KM_SLEEP);
usr/src/uts/common/io/sysevent.c
499
buf = kmem_alloc(bufsz, KM_SLEEP);
usr/src/uts/common/io/sysevent.c
503
nvlist_unpack(buf, bufsz, &nvl, KM_SLEEP) != 0) {
usr/src/uts/common/io/sysevent.c
554
char *buf = kmem_alloc(reqsz, KM_SLEEP);
usr/src/uts/common/io/sysevent.c
94
BT_SIZEOFMAP(sysevent_minor_bits + BT_NBIPUL), KM_SLEEP);
usr/src/uts/common/io/sysmsg.c
349
buf = kmem_alloc(size, KM_SLEEP);
usr/src/uts/common/io/sysmsg.c
573
infop = kmem_alloc(size, KM_SLEEP);
usr/src/uts/common/io/telmod.c
223
tmip = kmem_zalloc(sizeof (*tmip), KM_SLEEP);
usr/src/uts/common/io/tem.c
222
kmem_alloc(ptem->tvs_pix_data_size, KM_SLEEP);
usr/src/uts/common/io/tem.c
229
ptem->tvs_outbuf = kmem_alloc(ptem->tvs_outbuf_size, KM_SLEEP);
usr/src/uts/common/io/tem.c
237
ptem->tvs_screen_buf = kmem_alloc(ptem->tvs_screen_buf_size, KM_SLEEP);
usr/src/uts/common/io/tem.c
239
sizeof (term_char_t *), KM_SLEEP);
usr/src/uts/common/io/tem.c
243
KM_SLEEP);
usr/src/uts/common/io/tem.c
285
ptem = kmem_zalloc(sizeof (struct tem_vt_state), KM_SLEEP);
usr/src/uts/common/io/tem.c
419
pathbuf = kmem_alloc(MAXPATHLEN, KM_SLEEP);
usr/src/uts/common/io/tem.c
631
sizeof (*tems.ts_blank_line), KM_SLEEP);
usr/src/uts/common/io/timod.c
371
tp = kmem_zalloc(sizeof (struct tim_tim), KM_SLEEP);
usr/src/uts/common/io/tirdwr.c
174
trwptr = kmem_alloc(sizeof (struct trw_trw), KM_SLEEP);
usr/src/uts/common/io/tl.c
1111
tl_hash_by_addr, NULL, tl_hash_cmp_addr, KM_SLEEP);
usr/src/uts/common/io/tl.c
1116
t->tr_serializer = tl_serializer_alloc(KM_SLEEP);
usr/src/uts/common/io/tl.c
1517
tep = kmem_cache_alloc(tl_cache, KM_SLEEP);
usr/src/uts/common/io/tl.c
1536
tep->te_ser = tl_serializer_alloc(KM_SLEEP);
usr/src/uts/common/io/tphci.c
504
devnm = i_ddi_strdup((char *)arg, KM_SLEEP);
usr/src/uts/common/io/tpm/tpm.c
1525
tpm->iobuf = kmem_zalloc((sizeof (uint8_t))*(tpm->bufsize), KM_SLEEP);
usr/src/uts/common/io/tpm/tpm.c
2095
rngmech = kmem_zalloc(strlen("random") + 1, KM_SLEEP);
usr/src/uts/common/io/tpm/tpm.c
2224
cmdbuf = kmem_zalloc(buflen, KM_SLEEP);
usr/src/uts/common/io/trill.c
1180
tnode = kmem_zalloc(sizeof (trill_node_t), KM_SLEEP);
usr/src/uts/common/io/trill.c
1181
tnode->tn_ni = kmem_zalloc(size, KM_SLEEP);
usr/src/uts/common/io/trill.c
980
int kmflag = ((flags & SOCKET_NOSLEEP)) ? KM_NOSLEEP:KM_SLEEP;
usr/src/uts/common/io/ttcompat.c
185
tp = kmem_zalloc(sizeof (ttcompat_state_t), KM_SLEEP);
usr/src/uts/common/io/tty_ptyconf.c
61
kmem_zalloc(npty * sizeof (struct pty), KM_SLEEP);
usr/src/uts/common/io/tvhci.c
517
addr = kmem_alloc(MAXNAMELEN, KM_SLEEP);
usr/src/uts/common/io/uath/uath.c
783
fw_image = (char *)kmem_alloc(fw_size, KM_SLEEP);
usr/src/uts/common/io/udmf/udmf_usbgem.c
773
ugcp = kmem_zalloc(sizeof (*ugcp), KM_SLEEP);
usr/src/uts/common/io/udmf/udmf_usbgem.c
852
lp = kmem_zalloc(sizeof (struct udmf_dev), KM_SLEEP);
usr/src/uts/common/io/upf/upf_usbgem.c
1029
lp = kmem_zalloc(sizeof (struct upf_dev), KM_SLEEP);
usr/src/uts/common/io/upf/upf_usbgem.c
963
ugcp = kmem_zalloc(sizeof (*ugcp), KM_SLEEP);
usr/src/uts/common/io/urf/urf_usbgem.c
787
ugcp = kmem_zalloc(sizeof (*ugcp), KM_SLEEP);
usr/src/uts/common/io/urf/urf_usbgem.c
860
lp = kmem_zalloc(sizeof (struct urf_dev), KM_SLEEP);
usr/src/uts/common/io/usb/clients/audio/usb_ac/usb_ac.c
1006
uacpm = kmem_zalloc(sizeof (usb_ac_power_t), KM_SLEEP);
usr/src/uts/common/io/usb/clients/audio/usb_ac/usb_ac.c
1235
KM_SLEEP);
usr/src/uts/common/io/usb/clients/audio/usb_ac/usb_ac.c
1238
KM_SLEEP);
usr/src/uts/common/io/usb/clients/audio/usb_ac/usb_ac.c
1246
a = kmem_zalloc(a_len, KM_SLEEP);
usr/src/uts/common/io/usb/clients/audio/usb_ac/usb_ac.c
1247
p = kmem_zalloc(p_len, KM_SLEEP);
usr/src/uts/common/io/usb/clients/audio/usb_ac/usb_ac.c
1413
buf = kmem_alloc(l, KM_SLEEP);
usr/src/uts/common/io/usb/clients/audio/usb_ac/usb_ac.c
1483
descr = kmem_zalloc(len, KM_SLEEP);
usr/src/uts/common/io/usb/clients/audio/usb_ac/usb_ac.c
1722
sizeof (usb_ac_unit_list_t), KM_SLEEP);
usr/src/uts/common/io/usb/clients/audio/usb_ac/usb_ac.c
5043
pc = kmem_zalloc(sizeof (usb_audio_ctrl_t), KM_SLEEP);
usr/src/uts/common/io/usb/clients/audio/usb_ac/usb_ac.c
5459
engp->bufp = kmem_zalloc(engp->bufsz, KM_SLEEP);
usr/src/uts/common/io/usb/clients/audio/usb_ah/usb_ah.c
220
usb_ahd = kmem_zalloc(sizeof (usb_ah_state_t), KM_SLEEP);
usr/src/uts/common/io/usb/clients/audio/usb_as/usb_as.c
1718
uaspm = kmem_zalloc(sizeof (usb_as_power_t), KM_SLEEP);
usr/src/uts/common/io/usb/clients/audio/usb_as/usb_as.c
1963
sizeof (usb_as_alt_descr_t), KM_SLEEP);
usr/src/uts/common/io/usb/clients/audio/usb_as/usb_as.c
1972
kmem_zalloc(sizeof (usb_if_descr_t), KM_SLEEP);
usr/src/uts/common/io/usb/clients/audio/usb_as/usb_as.c
1996
general = kmem_zalloc(sizeof (*general), KM_SLEEP);
usr/src/uts/common/io/usb/clients/audio/usb_as/usb_as.c
2033
format = kmem_zalloc(len, KM_SLEEP);
usr/src/uts/common/io/usb/clients/audio/usb_as/usb_as.c
2071
kmem_zalloc(n_srs * (sizeof (uint_t)), KM_SLEEP);
usr/src/uts/common/io/usb/clients/audio/usb_as/usb_as.c
2125
kmem_zalloc(sizeof (usb_ep_descr_t), KM_SLEEP);
usr/src/uts/common/io/usb/clients/audio/usb_as/usb_as.c
2149
cs_ep = kmem_zalloc(sizeof (*cs_ep), KM_SLEEP);
usr/src/uts/common/io/usb/clients/ccid/ccid.c
1636
kmflag = KM_SLEEP;
usr/src/uts/common/io/usb/clients/ccid/ccid.c
2920
KM_SLEEP);
usr/src/uts/common/io/usb/clients/ccid/ccid.c
3473
cmp = kmem_zalloc(sizeof (ccid_minor_t), KM_SLEEP);
usr/src/uts/common/io/usb/clients/hid/hid.c
2831
hidpm = kmem_zalloc(sizeof (hid_power_t), KM_SLEEP);
usr/src/uts/common/io/usb/clients/hidparser/hidparser.c
1459
scan_ifp = kmem_zalloc(sizeof (hidparser_tok_t), KM_SLEEP);
usr/src/uts/common/io/usb/clients/hidparser/hidparser.c
1461
kmem_zalloc(HIDPARSER_TEXT_LENGTH, KM_SLEEP);
usr/src/uts/common/io/usb/clients/hidparser/hidparser.c
1919
KM_SLEEP);
usr/src/uts/common/io/usb/clients/hidparser/hidparser.c
2058
entity = kmem_zalloc(sizeof (entity_item_t), KM_SLEEP);
usr/src/uts/common/io/usb/clients/hidparser/hidparser.c
2063
entity->entity_item_params = kmem_zalloc(len, KM_SLEEP);
usr/src/uts/common/io/usb/clients/hidparser/hidparser.c
2151
newattrib->entity_attribute_value = kmem_zalloc(len, KM_SLEEP);
usr/src/uts/common/io/usb/clients/hidparser/hidparser.c
2175
head = kmem_zalloc(sizeof (entity_attribute_t), KM_SLEEP);
usr/src/uts/common/io/usb/clients/hidparser/hidparser.c
2180
sizeof (entity_attribute_t), KM_SLEEP);
usr/src/uts/common/io/usb/clients/hidparser/hidparser.c
2215
current_dst->entity_attribute_length, KM_SLEEP);
usr/src/uts/common/io/usb/clients/hidparser/hidparser.c
233
sizeof (hidparser_handle), KM_SLEEP);
usr/src/uts/common/io/usb/clients/printer/usbprn.c
2642
KM_SLEEP);
usr/src/uts/common/io/usb/clients/printer/usbprn.c
858
ptr = kmem_zalloc(len + 1, KM_SLEEP);
usr/src/uts/common/io/usb/clients/usbecm/usbecm.c
1884
(usbecm_pm_t *)kmem_zalloc(sizeof (usbecm_pm_t), KM_SLEEP);
usr/src/uts/common/io/usb/clients/usbinput/usbwcm/usbwcm.c
1388
featr = kmem_zalloc(sizeof (hid_req_t), KM_SLEEP);
usr/src/uts/common/io/usb/clients/usbinput/usbwcm/usbwcm.c
1441
usbwcmp = kmem_zalloc(sizeof (usbwcm_state_t), KM_SLEEP);
usr/src/uts/common/io/usb/clients/usbinput/usbwcm/usbwcm.c
691
sc->sc_bm[i] = kmem_zalloc(bm_size[i], KM_SLEEP);
usr/src/uts/common/io/usb/clients/usbinput/usbwcm/usbwcm.c
693
sc->sc_btn = kmem_zalloc(BTN_USED * sizeof (int), KM_SLEEP);
usr/src/uts/common/io/usb/clients/usbinput/usbwcm/usbwcm.c
695
KM_SLEEP);
usr/src/uts/common/io/usb/clients/usbinput/usbwcm/usbwcm.c
822
featr = kmem_zalloc(sizeof (hid_req_t), KM_SLEEP);
usr/src/uts/common/io/usb/clients/usbkbm/usbkbm.c
1994
kb_rpt = kmem_zalloc(sizeof (hidparser_rpt_t), KM_SLEEP);
usr/src/uts/common/io/usb/clients/usbkbm/usbkbm.c
245
sp = kmem_alloc(sizeof (usbkbm_save_state_t), KM_SLEEP);
usr/src/uts/common/io/usb/clients/usbkbm/usbkbm.c
287
kmem_alloc(USB_KEYTABLE_SIZE, KM_SLEEP);
usr/src/uts/common/io/usb/clients/usbkbm/usbkbm.c
289
kmem_alloc(USB_KEYTABLE_SIZE, KM_SLEEP);
usr/src/uts/common/io/usb/clients/usbkbm/usbkbm.c
291
kmem_alloc(USB_KEYTABLE_SIZE, KM_SLEEP);
usr/src/uts/common/io/usb/clients/usbkbm/usbkbm.c
293
kmem_alloc(USB_KEYTABLE_SIZE, KM_SLEEP);
usr/src/uts/common/io/usb/clients/usbkbm/usbkbm.c
295
kmem_alloc(USB_KEYTABLE_SIZE, KM_SLEEP);
usr/src/uts/common/io/usb/clients/usbkbm/usbkbm.c
297
kmem_alloc(USB_KEYTABLE_SIZE, KM_SLEEP);
usr/src/uts/common/io/usb/clients/usbkbm/usbkbm.c
299
kmem_alloc(USB_KEYTABLE_SIZE, KM_SLEEP);
usr/src/uts/common/io/usb/clients/usbkbm/usbkbm.c
412
usbkbmd = kmem_zalloc(sizeof (usbkbm_state_t), KM_SLEEP);
usr/src/uts/common/io/usb/clients/usbms/usbms.c
2198
ms_rpt = kmem_zalloc(sizeof (hidparser_rpt_t), KM_SLEEP);
usr/src/uts/common/io/usb/clients/usbms/usbms.c
236
usbmsp = kmem_zalloc(sizeof (usbms_state_t), KM_SLEEP);
usr/src/uts/common/io/usb/clients/usbms/usbms.c
267
mousebufp = kmem_zalloc(msd_soft->ms_bufbytes, KM_SLEEP);
usr/src/uts/common/io/usb/clients/usbser/usbftdi/uftdi_dsd.c
1280
pm = uf->uf_pm = kmem_zalloc(sizeof (*pm), KM_SLEEP);
usr/src/uts/common/io/usb/clients/usbser/usbftdi/uftdi_dsd.c
190
uf = kmem_zalloc(sizeof (*uf), KM_SLEEP);
usr/src/uts/common/io/usb/clients/usbser/usbsacm/usbsacm.c
1635
sizeof (usbsacm_port_t), KM_SLEEP);
usr/src/uts/common/io/usb/clients/usbser/usbsacm/usbsacm.c
2766
(usbsacm_pm_t *)kmem_zalloc(sizeof (usbsacm_pm_t), KM_SLEEP);
usr/src/uts/common/io/usb/clients/usbser/usbsacm/usbsacm.c
581
KM_SLEEP);
usr/src/uts/common/io/usb/clients/usbser/usbser.c
823
sizeof (usbser_port_t), KM_SLEEP);
usr/src/uts/common/io/usb/clients/usbser/usbser_keyspan/keyspan_dsd.c
1659
sizeof (keyspan_port_t), KM_SLEEP);
usr/src/uts/common/io/usb/clients/usbser/usbser_keyspan/keyspan_dsd.c
2053
pm = ksp->ks_pm = kmem_zalloc(sizeof (keyspan_pm_t), KM_SLEEP);
usr/src/uts/common/io/usb/clients/usbser/usbser_keyspan/keyspan_dsd.c
305
KM_SLEEP);
usr/src/uts/common/io/usb/clients/usbser/usbsprl/pl2303_dsd.c
1220
pm = plp->pl_pm = kmem_zalloc(sizeof (pl2303_pm_t), KM_SLEEP);
usr/src/uts/common/io/usb/clients/usbser/usbsprl/pl2303_dsd.c
221
plp = (pl2303_state_t *)kmem_zalloc(sizeof (pl2303_state_t), KM_SLEEP);
usr/src/uts/common/io/usb/clients/usbskel/usbskel.c
1420
usbskelpm = kmem_zalloc(sizeof (usbskel_power_t), KM_SLEEP);
usr/src/uts/common/io/usb/clients/usbskel/usbskel.c
1617
buf = kmem_alloc(USB_MAXSTRINGLEN, KM_SLEEP);
usr/src/uts/common/io/usb/clients/usbskel/usbskel.c
1673
format = kmem_zalloc(formatlen, KM_SLEEP);
usr/src/uts/common/io/usb/clients/usbskel/usbskel.c
332
devinst = kmem_zalloc(USB_MAXSTRINGLEN, KM_SLEEP);
usr/src/uts/common/io/usb/clients/usbskel/usbskel.c
336
usbskelp->usbskel_devinst = kmem_zalloc(devinstlen + 1, KM_SLEEP);
usr/src/uts/common/io/usb/clients/video/usbvc/usbvc.c
1177
usbvcpm = kmem_zalloc(sizeof (usbvc_power_t), KM_SLEEP);
usr/src/uts/common/io/usb/clients/video/usbvc/usbvc.c
2034
sizeof (usbvc_vc_header_t), KM_SLEEP);
usr/src/uts/common/io/usb/clients/video/usbvc/usbvc.c
2069
kmem_zalloc(sizeof (usbvc_terms_t), KM_SLEEP);
usr/src/uts/common/io/usb/clients/video/usbvc/usbvc.c
2099
kmem_zalloc(sizeof (usbvc_terms_t), KM_SLEEP);
usr/src/uts/common/io/usb/clients/video/usbvc/usbvc.c
2131
kmem_zalloc(sizeof (usbvc_units_t), KM_SLEEP);
usr/src/uts/common/io/usb/clients/video/usbvc/usbvc.c
2171
kmem_zalloc(sizeof (usbvc_units_t), KM_SLEEP);
usr/src/uts/common/io/usb/clients/video/usbvc/usbvc.c
2216
kmem_zalloc(sizeof (usbvc_units_t), KM_SLEEP);
usr/src/uts/common/io/usb/clients/video/usbvc/usbvc.c
2269
KM_SLEEP);
usr/src/uts/common/io/usb/clients/video/usbvc/usbvc.c
2441
KM_SLEEP);
usr/src/uts/common/io/usb/clients/video/usbvc/usbvc.c
2493
kmem_zalloc(sizeof (usbvc_frames_t) * frame_cnt, KM_SLEEP);
usr/src/uts/common/io/usb/clients/video/usbvc/usbvc.c
2639
kmem_zalloc(sizeof (usbvc_format_group_t) * fmtgrp_cnt, KM_SLEEP);
usr/src/uts/common/io/usb/clients/video/usbvc/usbvc.c
2741
KM_SLEEP);
usr/src/uts/common/io/usb/clients/video/usbvc/usbvc.c
2758
KM_SLEEP);
usr/src/uts/common/io/usb/clients/video/usbvc/usbvc.c
2800
KM_SLEEP);
usr/src/uts/common/io/usb/clients/video/usbvc/usbvc.c
2801
data = (uchar_t *)kmem_zalloc(len, KM_SLEEP);
usr/src/uts/common/io/usb/clients/video/usbvc/usbvc.c
2939
KM_SLEEP);
usr/src/uts/common/io/usb/hcd/ehci/ehci.c
801
KM_SLEEP : KM_NOSLEEP;
usr/src/uts/common/io/usb/hcd/ehci/ehci_polled.c
175
(uchar_t *)kmem_zalloc(POLLED_RAW_BUF_SIZE, KM_SLEEP);
usr/src/uts/common/io/usb/hcd/ehci/ehci_polled.c
706
kmem_zalloc(sizeof (ehci_polled_t), KM_SLEEP);
usr/src/uts/common/io/usb/hcd/ehci/ehci_polled.c
729
kmem_zalloc(sizeof (usba_pipe_handle_data_t), KM_SLEEP);
usr/src/uts/common/io/usb/hcd/ehci/ehci_polled.c
749
kmem_zalloc(sizeof (ehci_pipe_private_t), KM_SLEEP);
usr/src/uts/common/io/usb/hcd/ehci/ehci_util.c
1671
kmem_zalloc(EHCI_NUM_PERIODIC_FRAME_LISTS * 2, KM_SLEEP);
usr/src/uts/common/io/usb/hcd/ehci/ehci_util.c
874
ehcip->ehci_htable = kmem_zalloc(intr_size, KM_SLEEP);
usr/src/uts/common/io/usb/hcd/ehci/ehci_xfer.c
1018
char *path = kmem_alloc(MAXPATHLEN, KM_SLEEP);
usr/src/uts/common/io/usb/hcd/openhci/ohci.c
1373
ohcip->ohci_htable = kmem_zalloc(intr_size, KM_SLEEP);
usr/src/uts/common/io/usb/hcd/openhci/ohci.c
2458
KM_SLEEP : KM_NOSLEEP;
usr/src/uts/common/io/usb/hcd/openhci/ohci.c
7032
kmem_flag = KM_SLEEP;
usr/src/uts/common/io/usb/hcd/openhci/ohci_polled.c
166
(uchar_t *)kmem_zalloc(POLLED_RAW_BUF_SIZE, KM_SLEEP);
usr/src/uts/common/io/usb/hcd/openhci/ohci_polled.c
611
kmem_zalloc(sizeof (ohci_polled_t), KM_SLEEP);
usr/src/uts/common/io/usb/hcd/openhci/ohci_polled.c
636
kmem_zalloc(sizeof (usba_pipe_handle_data_t), KM_SLEEP);
usr/src/uts/common/io/usb/hcd/openhci/ohci_polled.c
654
kmem_zalloc(sizeof (ohci_pipe_private_t), KM_SLEEP);
usr/src/uts/common/io/usb/hcd/uhci/uhci.c
160
temp = kmem_zalloc(NUM_FRAME_LST_ENTRIES * 2, KM_SLEEP);
usr/src/uts/common/io/usb/hcd/uhci/uhci.c
521
uhcip->uhci_htable = kmem_zalloc(intr_size, KM_SLEEP);
usr/src/uts/common/io/usb/hcd/uhci/uhcipolled.c
106
(uchar_t *)kmem_zalloc(POLLED_RAW_BUF_SIZE, KM_SLEEP);
usr/src/uts/common/io/usb/hcd/uhci/uhcipolled.c
497
KM_SLEEP);
usr/src/uts/common/io/usb/hcd/uhci/uhcitgt.c
185
(flags & USB_FLAGS_SLEEP) ? KM_SLEEP : KM_NOSLEEP);
usr/src/uts/common/io/usb/hcd/uhci/uhciutil.c
3129
KM_SLEEP)) == NULL) {
usr/src/uts/common/io/usb/hcd/uhci/uhciutil.c
3811
kmem_flag = KM_SLEEP;
usr/src/uts/common/io/usb/hcd/xhci/xhci_context.c
88
KM_SLEEP);
usr/src/uts/common/io/usb/hcd/xhci/xhci_dma.c
301
kmflags = KM_SLEEP;
usr/src/uts/common/io/usb/hcd/xhci/xhci_endpoint.c
731
xep = kmem_zalloc(sizeof (xhci_endpoint_t), KM_SLEEP);
usr/src/uts/common/io/usb/hcd/xhci/xhci_polled.c
91
xhci_polledp = kmem_zalloc(sizeof (xhci_polled_t), KM_SLEEP);
usr/src/uts/common/io/usb/hcd/xhci/xhci_usba.c
1666
xd = kmem_zalloc(sizeof (xhci_device_t), KM_SLEEP);
usr/src/uts/common/io/usb/hcd/xhci/xhci_usba.c
64
int kmflags = usb_flags & USB_FLAGS_SLEEP ? KM_SLEEP : KM_NOSLEEP;
usr/src/uts/common/io/usb/scsa2usb/scsa2usb.c
1506
override_str_cpy = kmem_zalloc(override_str_cpy_len, KM_SLEEP);
usr/src/uts/common/io/usb/scsa2usb/scsa2usb.c
2002
kmem_zalloc(sizeof (scsa2usb_cpr_t), KM_SLEEP);
usr/src/uts/common/io/usb/scsa2usb/scsa2usb.c
5570
pm = kmem_zalloc(sizeof (scsa2usb_power_t), KM_SLEEP);
usr/src/uts/common/io/usb/scsa2usb/usb_ms_bulkonly.c
441
buf = kmem_zalloc(512, KM_SLEEP);
usr/src/uts/common/io/usb/usb_ia/usb_ia.c
1171
iapm = kmem_zalloc(sizeof (usb_common_power_t), KM_SLEEP);
usr/src/uts/common/io/usb/usb_ia/usb_ia.c
609
usb_ia->ia_children_dips = kmem_zalloc(size, KM_SLEEP);
usr/src/uts/common/io/usb/usb_ia/usb_ia.c
611
KM_SLEEP);
usr/src/uts/common/io/usb/usb_mid/usb_mid.c
1378
midpm = kmem_zalloc(sizeof (usb_common_power_t), KM_SLEEP);
usr/src/uts/common/io/usb/usb_mid/usb_mid.c
659
usb_mid->mi_children_dips = kmem_zalloc(size, KM_SLEEP);
usr/src/uts/common/io/usb/usb_mid/usb_mid.c
661
KM_SLEEP);
usr/src/uts/common/io/usb/usb_mid/usb_mid.c
663
KM_SLEEP);
usr/src/uts/common/io/usb/usba/genconsole.c
262
KM_SLEEP);
usr/src/uts/common/io/usb/usba/genconsole.c
63
sizeof (struct usb_console_info_impl), KM_SLEEP);
usr/src/uts/common/io/usb/usba/hcdi.c
111
usba_hcdi_t *hcdi = kmem_zalloc(sizeof (usba_hcdi_t), KM_SLEEP);
usr/src/uts/common/io/usb/usba/hcdi.c
263
usba_hcdi_ops = kmem_zalloc(sizeof (usba_hcdi_ops_t), KM_SLEEP);
usr/src/uts/common/io/usb/usba/hubdi.c
197
usba_hubdi_t *hubdi = kmem_zalloc(sizeof (usba_hubdi_t), KM_SLEEP);
usr/src/uts/common/io/usb/usba/hubdi.c
2061
hubd->h_ancestry_str = (char *)kmem_zalloc(HUBD_APID_NAMELEN, KM_SLEEP);
usr/src/uts/common/io/usb/usba/hubdi.c
2127
char *pathname = kmem_alloc(MAXPATHLEN, KM_SLEEP);
usr/src/uts/common/io/usb/usba/hubdi.c
288
root_hubd = kmem_zalloc(sizeof (hubd_t), KM_SLEEP);
usr/src/uts/common/io/usb/usba/hubdi.c
304
KM_SLEEP);
usr/src/uts/common/io/usb/usba/hubdi.c
3075
hubd->h_cd_list_length, KM_SLEEP);
usr/src/uts/common/io/usb/usba/hubdi.c
3077
hubd->h_cd_list_length, KM_SLEEP);
usr/src/uts/common/io/usb/usba/hubdi.c
308
KM_SLEEP);
usr/src/uts/common/io/usb/usba/hubdi.c
3083
sizeof (hubd_hotplug_arg_t), KM_SLEEP);
usr/src/uts/common/io/usb/usba/hubdi.c
316
KM_SLEEP);
usr/src/uts/common/io/usb/usba/hubdi.c
322
usba_device->usb_n_ifs * USBA_CLIENT_FLAG_SIZE, KM_SLEEP);
usr/src/uts/common/io/usb/usba/hubdi.c
326
sizeof (*usba_device->usb_client_attach_list), KM_SLEEP);
usr/src/uts/common/io/usb/usba/hubdi.c
330
sizeof (*usba_device->usb_client_ev_cb_list), KM_SLEEP);
usr/src/uts/common/io/usb/usba/hubdi.c
3683
sizeof (hubd_hotplug_arg_t), KM_SLEEP);
usr/src/uts/common/io/usb/usba/hubdi.c
5680
tmp_path = kmem_zalloc(MAXPATHLEN, KM_SLEEP);
usr/src/uts/common/io/usb/usba/hubdi.c
5684
pathname = kmem_zalloc(pathlen, KM_SLEEP);
usr/src/uts/common/io/usb/usba/hubdi.c
5759
KM_SLEEP);
usr/src/uts/common/io/usb/usba/hubdi.c
5762
tmpbuf = kmem_zalloc(USB_MAXSTRINGLEN, KM_SLEEP);
usr/src/uts/common/io/usb/usba/hubdi.c
5851
kmem_alloc(confdescr->wTotalLength, KM_SLEEP);
usr/src/uts/common/io/usb/usba/hubdi.c
5883
KM_SLEEP);
usr/src/uts/common/io/usb/usba/hubdi.c
5948
cfg_array = kmem_zalloc(size, KM_SLEEP);
usr/src/uts/common/io/usb/usba/hubdi.c
5949
cfg_array_len = kmem_zalloc(ncfgs * sizeof (uint16_t), KM_SLEEP);
usr/src/uts/common/io/usb/usba/hubdi.c
5950
str_descr = kmem_zalloc(size, KM_SLEEP);
usr/src/uts/common/io/usb/usba/hubdi.c
6023
child_ud->usb_n_ifs * USBA_CLIENT_FLAG_SIZE, KM_SLEEP);
usr/src/uts/common/io/usb/usba/hubdi.c
6027
sizeof (*child_ud->usb_client_attach_list), KM_SLEEP);
usr/src/uts/common/io/usb/usba/hubdi.c
6031
sizeof (*child_ud->usb_client_ev_cb_list), KM_SLEEP);
usr/src/uts/common/io/usb/usba/hubdi.c
6144
KM_SLEEP);
usr/src/uts/common/io/usb/usba/hubdi.c
7509
(hubd_cpr_t *)kmem_zalloc(sizeof (hubd_cpr_t), KM_SLEEP);
usr/src/uts/common/io/usb/usba/hubdi.c
7551
hubpm = kmem_zalloc(sizeof (hub_power_t), KM_SLEEP);
usr/src/uts/common/io/usb/usba/hubdi.c
7562
kmem_zalloc(MAX_PORTS + 1, KM_SLEEP);
usr/src/uts/common/io/usb/usba/hubdi.c
8225
path = kmem_alloc(MAXPATHLEN, KM_SLEEP);
usr/src/uts/common/io/usb/usba/hubdi.c
9314
sizeof (hubd_reset_arg_t), KM_SLEEP);
usr/src/uts/common/io/usb/usba/usba.c
1358
kmem_zalloc(sizeof (usba_root_hub_ent_t), KM_SLEEP);
usr/src/uts/common/io/usb/usba/usba.c
1901
USBA_MAX_COMPAT_NAME_LEN, KM_SLEEP);
usr/src/uts/common/io/usb/usba/usba.c
1920
char *pathname = kmem_alloc(MAXPATHLEN, KM_SLEEP);
usr/src/uts/common/io/usb/usba/usba.c
2212
devprop_str = kmem_zalloc(USB_MAXSTRINGLEN, KM_SLEEP);
usr/src/uts/common/io/usb/usba/usba.c
2423
USBA_MAX_COMPAT_NAME_LEN, KM_SLEEP);
usr/src/uts/common/io/usb/usba/usba.c
2667
USBA_MAX_COMPAT_NAME_LEN, KM_SLEEP);
usr/src/uts/common/io/usb/usba/usba.c
269
name = kmem_alloc(MAXNAMELEN, KM_SLEEP);
usr/src/uts/common/io/usb/usba/usba.c
2817
tmpbuf = kmem_zalloc(USB_MAXSTRINGLEN, KM_SLEEP);
usr/src/uts/common/io/usb/usba/usba.c
2827
str = kmem_zalloc(l + 1, KM_SLEEP);
usr/src/uts/common/io/usb/usba/usba.c
2843
str = kmem_zalloc(l + 1, KM_SLEEP);
usr/src/uts/common/io/usb/usba/usba.c
2859
str = kmem_zalloc(l + 1, KM_SLEEP);
usr/src/uts/common/io/usb/usba/usba.c
3034
name = kmem_zalloc(MAXNAMELEN, KM_SLEEP);
usr/src/uts/common/io/usb/usba/usba.c
571
evdata = kmem_zalloc(sizeof (usba_evdata_t), KM_SLEEP);
usr/src/uts/common/io/usb/usba/usba.c
595
usba_device = kmem_zalloc(sizeof (usba_device_t), KM_SLEEP);
usr/src/uts/common/io/usb/usba/usba.c
977
char *devnm = kmem_alloc(MAXNAMELEN + 1, KM_SLEEP);
usr/src/uts/common/io/usb/usba/usba_bos.c
155
bos = kmem_zalloc(sizeof (usb_bos_t) * nalloc, KM_SLEEP);
usr/src/uts/common/io/usb/usba/usba_devdb.c
153
sizeof (usba_configrec_t), KM_SLEEP);
usr/src/uts/common/io/usb/usba/usba_devdb.c
509
sizeof (usba_devdb_info_t), KM_SLEEP);
usr/src/uts/common/io/usb/usba/usba_devdb.c
585
req_rec = kmem_zalloc(sizeof (usba_configrec_t), KM_SLEEP);
usr/src/uts/common/io/usb/usba/usba_devdb.c
586
req_node = kmem_zalloc(sizeof (usba_devdb_info_t), KM_SLEEP);
usr/src/uts/common/io/usb/usba/usba_ugen.c
176
usb_ugen_hdl_impl_t *hdl = kmem_zalloc(sizeof (*hdl), KM_SLEEP);
usr/src/uts/common/io/usb/usba/usba_ugen.c
178
KM_SLEEP);
usr/src/uts/common/io/usb/usba/usba_ugen.c
216
name = kmem_alloc(len, KM_SLEEP);
usr/src/uts/common/io/usb/usba/usba_ugen.c
4360
ugenp->ug_minor_node_table = kmem_zalloc(size, KM_SLEEP);
usr/src/uts/common/io/usb/usba/usba_ugen.c
4373
ugen_minor_t *buf = kmem_zalloc(newsize, KM_SLEEP);
usr/src/uts/common/io/usb/usba/usba_ugen.c
4436
ugenpm = kmem_zalloc(sizeof (ugen_power_t), KM_SLEEP);
usr/src/uts/common/io/usb/usba/usba_ugen.c
4724
sizeof (ugen_devt_list_entry_t), KM_SLEEP);
usr/src/uts/common/io/usb/usba/usbai.c
127
hdl = kmem_zalloc(sizeof (*hdl), KM_SLEEP);
usr/src/uts/common/io/usb/usba/usbai.c
294
KM_SLEEP);
usr/src/uts/common/io/usb/usba/usbai.c
832
pm_comp[n_prop] = kmem_zalloc(strlen(str) + 1, KM_SLEEP);
usr/src/uts/common/io/usb/usba/usbai.c
902
KM_SLEEP);
usr/src/uts/common/io/usb/usba/usbai_pipe_mgmt.c
335
request = kmem_zalloc(sizeof (usba_pipe_async_req_t), KM_SLEEP);
usr/src/uts/common/io/usb/usba/usbai_pipe_mgmt.c
903
kmflag = (usb_flags & USB_FLAGS_SLEEP) ? KM_SLEEP : KM_NOSLEEP;
usr/src/uts/common/io/usb/usba/usbai_register.c
1007
string = kmem_zalloc(USB_MAXSTRINGLEN, KM_SLEEP);
usr/src/uts/common/io/usb/usba/usbai_register.c
1018
state->st_curr_alt->altif_strsize, KM_SLEEP);
usr/src/uts/common/io/usb/usba/usbai_register.c
1162
kmem_zalloc(state->st_curr_raw_descr_len, KM_SLEEP);
usr/src/uts/common/io/usb/usba/usbai_register.c
1265
new_mem = kmem_zalloc(new_size, KM_SLEEP);
usr/src/uts/common/io/usb/usba/usbai_register.c
1366
(n_repl_elements * sizeof (usb_alt_if_data_t)), KM_SLEEP);
usr/src/uts/common/io/usb/usba/usbai_register.c
1655
string = kmem_zalloc(USB_MAXSTRINGLEN, KM_SLEEP);
usr/src/uts/common/io/usb/usba/usbai_register.c
1669
name_string = kmem_zalloc(name_string_size, KM_SLEEP);
usr/src/uts/common/io/usb/usba/usbai_register.c
422
usb_reg = kmem_zalloc(sizeof (usb_client_dev_data_t), KM_SLEEP);
usr/src/uts/common/io/usb/usba/usbai_register.c
438
tmpbuf = (char *)kmem_zalloc(USB_MAXSTRINGLEN, KM_SLEEP);
usr/src/uts/common/io/usb/usba/usbai_register.c
442
strlen(usba_device->usb_mfg_str) + 1, KM_SLEEP);
usr/src/uts/common/io/usb/usba/usbai_register.c
449
KM_SLEEP);
usr/src/uts/common/io/usb/usba/usbai_register.c
457
KM_SLEEP);
usr/src/uts/common/io/usb/usba/usbai_register.c
517
sizeof (*entry), KM_SLEEP);
usr/src/uts/common/io/usb/usba/usbai_register.c
700
KM_SLEEP);
usr/src/uts/common/io/usb/usba/usbai_register.c
908
KM_SLEEP);
usr/src/uts/common/io/usb/usba/usbai_register.c
914
sizeof (usb_if_data_t)), KM_SLEEP);
usr/src/uts/common/io/usb/usba/usbai_register.c
960
new_if_descr = kmem_zalloc(sizeof (usb_if_descr_t), KM_SLEEP);
usr/src/uts/common/io/usb/usba/usbai_req.c
1311
char *buf = kmem_alloc(BUFSIZE, KM_SLEEP);
usr/src/uts/common/io/usb/usba/usbai_req.c
651
kmflag = (flags & USB_FLAGS_SLEEP) ? KM_SLEEP : KM_NOSLEEP;
usr/src/uts/common/io/usb/usba/usbai_util.c
1205
buf = kmem_alloc(USB_MAXSTRINGLEN, KM_SLEEP);
usr/src/uts/common/io/usb/usba/usbai_util.c
1963
sizeof (usba_serialization_impl_t), KM_SLEEP);
usr/src/uts/common/io/usbgem/usbgem.c
4386
dp = kmem_zalloc(USBGEM_LOCAL_DATA_SIZE(gc), KM_SLEEP);
usr/src/uts/common/io/vcons.c
1310
KM_SLEEP);
usr/src/uts/common/io/vio9p/vio9p.c
451
if ((vnr = vio9p_req_alloc_impl(vin, KM_SLEEP)) == NULL) {
usr/src/uts/common/io/vioblk/vioblk.c
1087
&vib->vib_bd_dma_attr, KM_SLEEP);
usr/src/uts/common/io/vioblk/vioblk.c
368
DDI_DMA_CONSISTENT | DDI_DMA_WRITE, KM_SLEEP);
usr/src/uts/common/io/vioblk/vioblk.c
590
KM_SLEEP)) == NULL) {
usr/src/uts/common/io/vioblk/vioblk.c
825
sizeof (struct vioblk_req) * vib->vib_reqs_capacity, KM_SLEEP);
usr/src/uts/common/io/vioblk/vioblk.c
837
KM_SLEEP)) == NULL) {
usr/src/uts/common/io/vioblk/vioblk.c
840
vbr->vbr_chain = virtio_chain_alloc(vib->vib_vq, KM_SLEEP);
usr/src/uts/common/io/vioblk/vioblk.c
919
vib = kmem_zalloc(sizeof (*vib), KM_SLEEP);
usr/src/uts/common/io/vioif/vioif.c
1174
&vioif_dma_attr_external, KM_SLEEP)) == NULL) {
usr/src/uts/common/io/vioif/vioif.c
1184
DDI_DMA_WRITE | DDI_DMA_STREAMING, KM_SLEEP) !=
usr/src/uts/common/io/vioif/vioif.c
2096
vif = kmem_zalloc(sizeof (*vif), KM_SLEEP);
usr/src/uts/common/io/vioif/vioif.c
493
sizeof (vioif_txbuf_t) * vif->vif_txbufs_capacity, KM_SLEEP);
usr/src/uts/common/io/vioif/vioif.c
500
sizeof (vioif_rxbuf_t) * vif->vif_rxbufs_capacity, KM_SLEEP);
usr/src/uts/common/io/vioif/vioif.c
509
KM_SLEEP);
usr/src/uts/common/io/vioif/vioif.c
551
DDI_DMA_STREAMING | DDI_DMA_WRITE, KM_SLEEP)) == NULL) {
usr/src/uts/common/io/vioif/vioif.c
557
KM_SLEEP)) == NULL) {
usr/src/uts/common/io/vioif/vioif.c
565
KM_SLEEP);
usr/src/uts/common/io/vioif/vioif.c
576
DDI_DMA_STREAMING | DDI_DMA_RDWR, KM_SLEEP)) == NULL) {
usr/src/uts/common/io/vioif/vioif.c
582
KM_SLEEP)) == NULL) {
usr/src/uts/common/io/vioif/vioif.c
599
KM_SLEEP)) == NULL) {
usr/src/uts/common/io/vioif/vioif.c
604
KM_SLEEP)) == NULL) {
usr/src/uts/common/io/vioscsi/vioscsi.c
1134
if (vioscsi_req_init(sc, &req, sc->vs_cmd_vq, KM_SLEEP) != 0) {
usr/src/uts/common/io/vioscsi/vioscsi.c
1374
ve->ve_vic = virtio_chain_alloc(sc->vs_evt_vq, KM_SLEEP);
usr/src/uts/common/io/vioscsi/vioscsi.c
1377
DDI_DMA_STREAMING | DDI_DMA_READ, KM_SLEEP);
usr/src/uts/common/io/vioscsi/vioscsi.c
972
vd = kmem_zalloc(sizeof (*vd), KM_SLEEP);
usr/src/uts/common/io/virtio/virtio_dma.c
50
case KM_SLEEP:
usr/src/uts/common/io/virtio/virtio_main.c
1569
sizeof (ddi_intr_handle_t) * nrequired, KM_SLEEP);
usr/src/uts/common/io/virtio/virtio_main.c
243
virtio_t *vio = kmem_zalloc(sizeof (*vio), KM_SLEEP);
usr/src/uts/common/io/virtio/virtio_main.c
870
virtio_queue_t *viq = kmem_zalloc(sizeof (*viq), KM_SLEEP);
usr/src/uts/common/io/virtio/virtio_main.c
933
KM_SLEEP) != DDI_SUCCESS) {
usr/src/uts/common/io/vr/vr.c
310
vrp = kmem_zalloc(sizeof (vr_t), KM_SLEEP);
usr/src/uts/common/io/vr/vr.c
584
vrp->regset = kmem_zalloc(nsets * sizeof (vr_acc_t), KM_SLEEP);
usr/src/uts/common/io/vr/vr.c
896
(vr_desc_t *)kmem_zalloc(n * sizeof (vr_desc_t), KM_SLEEP);
usr/src/uts/common/io/vscan/vscan_drv.c
239
vscan_drv_inst_state = kmem_zalloc(vscan_drv_inst_state_sz, KM_SLEEP);
usr/src/uts/common/io/vscan/vscan_svc.c
1325
req = kmem_zalloc(sizeof (vscan_req_t), KM_SLEEP);
usr/src/uts/common/io/vscan/vscan_svc.c
301
vscan_svc_nodes = kmem_zalloc(vscan_svc_nodes_sz, KM_SLEEP);
usr/src/uts/common/io/vscan/vscan_svc.c
697
scan_req = kmem_zalloc(sizeof (vs_scan_req_t), KM_SLEEP);
usr/src/uts/common/io/vuidmice/vuidmice.c
197
qp->q_ptr = kmem_zalloc(sizeof (struct MouseStateInfo), KM_SLEEP);
usr/src/uts/common/io/wpi/wpi.c
1219
amrr = kmem_zalloc(sizeof (wpi_amrr_t), KM_SLEEP);
usr/src/uts/common/io/xge/drv/xge.c
1103
xgell_config = kmem_zalloc(sizeof (xgell_config_t), KM_SLEEP);
usr/src/uts/common/io/xge/drv/xge.c
1104
device_config = kmem_zalloc(sizeof (xge_hal_device_config_t), KM_SLEEP);
usr/src/uts/common/io/xge/drv/xge.c
1144
hldev = kmem_zalloc(sizeof (xge_hal_device_t), KM_SLEEP);
usr/src/uts/common/io/xge/drv/xge.c
804
lldev->intr_table = kmem_alloc(lldev->intr_table_size, KM_SLEEP);
usr/src/uts/common/io/xge/drv/xge_osdep.h
231
void *vaddr = kmem_alloc(size, KM_SLEEP);
usr/src/uts/common/io/xge/drv/xgell.c
2334
lldev = kmem_zalloc(sizeof (xgelldev_t), KM_SLEEP);
usr/src/uts/common/io/xge/drv/xgell.c
2499
buf = kmem_alloc(XGELL_STATS_BUFSIZE, KM_SLEEP);
usr/src/uts/common/io/xge/drv/xgell.c
2565
buf = kmem_alloc(XGELL_PCICONF_BUFSIZE, KM_SLEEP);
usr/src/uts/common/io/xge/drv/xgell.c
2591
buf = kmem_alloc(XGELL_ABOUT_BUFSIZE, KM_SLEEP);
usr/src/uts/common/io/xge/drv/xgell.c
2619
buf = kmem_alloc(XGELL_IOCTL_BUFSIZE, KM_SLEEP);
usr/src/uts/common/io/xge/drv/xgell.c
2664
buf = kmem_alloc(XGELL_IOCTL_BUFSIZE, KM_SLEEP);
usr/src/uts/common/io/xge/drv/xgell.c
2696
buf = kmem_alloc(XGELL_IOCTL_BUFSIZE, KM_SLEEP);
usr/src/uts/common/io/xge/drv/xgell.c
2737
buf = kmem_alloc(XGELL_DEVCONF_BUFSIZE, KM_SLEEP);
usr/src/uts/common/io/yge/yge.c
1017
dev->d_intrh = kmem_zalloc(dev->d_intrsize, KM_SLEEP);
usr/src/uts/common/io/yge/yge.c
3435
dev = kmem_zalloc(sizeof (*dev), KM_SLEEP);
usr/src/uts/common/io/yge/yge.c
3436
dev->d_port[0] = kmem_zalloc(sizeof (yge_port_t), KM_SLEEP);
usr/src/uts/common/io/yge/yge.c
3437
dev->d_port[1] = kmem_zalloc(sizeof (yge_port_t), KM_SLEEP);
usr/src/uts/common/io/yge/yge.c
919
KM_SLEEP);
usr/src/uts/common/io/yge/yge.c
921
KM_SLEEP);
usr/src/uts/common/ipp/ipgpc/classifierddi.c
242
filter = kmem_zalloc(sizeof (ipgpc_filter_t), KM_SLEEP);
usr/src/uts/common/ipp/ipgpc/classifierddi.c
264
aclass = kmem_zalloc(sizeof (ipgpc_class_t), KM_SLEEP);
usr/src/uts/common/ipp/ipgpc/filters.c
1631
filter = kmem_zalloc(sizeof (ipgpc_filter_t), KM_SLEEP);
usr/src/uts/common/ipp/ipgpc/filters.c
1670
kmem_alloc((strlen(s) + 1), KM_SLEEP);
usr/src/uts/common/ipp/ipgpc/filters.c
1680
kmem_alloc((strlen(s) + 1), KM_SLEEP);
usr/src/uts/common/ipp/ipgpc/filters.c
1690
kmem_alloc((strlen(s) + 1), KM_SLEEP);
usr/src/uts/common/ipp/ipgpc/filters.c
1859
*listpp = kmem_cache_alloc(element_node_cache, KM_SLEEP);
usr/src/uts/common/ipp/ipgpc/filters.c
1875
kmem_cache_alloc(element_node_cache, KM_SLEEP);
usr/src/uts/common/ipp/ipgpc/filters.c
760
filter->filter_comment = kmem_alloc((strlen(s) + 1), KM_SLEEP);
usr/src/uts/common/ipp/ipgpc/filters.c
831
filter->saddr_hostname = kmem_alloc((strlen(s) + 1), KM_SLEEP);
usr/src/uts/common/ipp/ipgpc/filters.c
902
filter->daddr_hostname = kmem_alloc((strlen(s) + 1), KM_SLEEP);
usr/src/uts/common/ipp/ipgpc/table.c
100
p = kmem_cache_alloc(ht_node_cache, KM_SLEEP);
usr/src/uts/common/ipp/ipgpc/table.c
79
table[x].next = kmem_cache_alloc(ht_node_cache, KM_SLEEP);
usr/src/uts/common/ipp/ipgpc/trie.c
132
nodep->one = create_node(KM_SLEEP);
usr/src/uts/common/ipp/ipgpc/trie.c
133
nodep->zero = create_node(KM_SLEEP);
usr/src/uts/common/ipp/ipgpc/trie.c
142
nodep->one = create_node(KM_SLEEP);
usr/src/uts/common/ipp/ipgpc/trie.c
143
nodep->zero = create_node(KM_SLEEP);
usr/src/uts/common/ipp/ipgpc/trie.c
145
tnodep = create_node(KM_SLEEP);
usr/src/uts/common/ipp/ipgpc/trie.c
149
nodep->one = create_node(KM_SLEEP);
usr/src/uts/common/ipp/ipgpc/trie.c
169
nodep->one = create_node(KM_SLEEP);
usr/src/uts/common/ipp/ipgpc/trie.c
170
nodep->zero = create_node(KM_SLEEP);
usr/src/uts/common/ipp/ipgpc/trie.c
172
tnodep = create_node(KM_SLEEP);
usr/src/uts/common/ipp/ipgpc/trie.c
176
nodep->zero = create_node(KM_SLEEP);
usr/src/uts/common/ipp/ipgpc/trie.c
360
c_node->zero = create_node(KM_SLEEP);
usr/src/uts/common/ipp/ipgpc/trie.c
365
c_node->one = create_node(KM_SLEEP);
usr/src/uts/common/ipp/ippconf.c
3279
KM_SLEEP);
usr/src/uts/common/ipp/ippconf.c
3310
(ipp_max_action + 1), KM_SLEEP);
usr/src/uts/common/ipp/ippctl.c
1342
if ((rc = nvlist_alloc(&nvlp, NV_UNIQUE_NAME, KM_SLEEP)) != 0)
usr/src/uts/common/ipp/ippctl.c
1394
modname_array = kmem_zalloc(length, KM_SLEEP);
usr/src/uts/common/ipp/ippctl.c
1410
KM_SLEEP)) != 0) {
usr/src/uts/common/ipp/ippctl.c
1488
aname_array = kmem_zalloc(length, KM_SLEEP);
usr/src/uts/common/ipp/ippctl.c
1504
KM_SLEEP)) != 0) {
usr/src/uts/common/ipp/ippctl.c
1646
KM_SLEEP)) != 0) {
usr/src/uts/common/ipp/ippctl.c
1714
if ((rc = nvlist_alloc(&nvlp, NV_UNIQUE_NAME, KM_SLEEP)) != 0)
usr/src/uts/common/ipp/ippctl.c
1742
ippctl_array = kmem_zalloc(limit * sizeof (ippctl_buf_t), KM_SLEEP);
usr/src/uts/common/ipp/ippctl.c
1763
array = kmem_zalloc(limit * sizeof (ippctl_buf_t), KM_SLEEP);
usr/src/uts/common/ipp/ippctl.c
665
kbuf = kmem_zalloc(ubuflen, KM_SLEEP);
usr/src/uts/common/ipp/ippctl.c
796
*valp = kmem_alloc(strlen(ptr) + 1, KM_SLEEP);
usr/src/uts/common/ipp/ippctl.c
820
*valp = kmem_alloc(strlen(ptr) + 1, KM_SLEEP);
usr/src/uts/common/ipp/ippctl.c
923
if ((rc = nvlist_unpack(cbuf, cbuflen, &nvlp, KM_SLEEP)) != 0)
usr/src/uts/common/kiconv/kiconv_emea/kiconv_emea.c
109
s = (kiconv_state_t)kmem_alloc(sizeof (kiconv_state_data_t), KM_SLEEP);
usr/src/uts/common/kiconv/kiconv_emea/kiconv_emea.c
121
s = (kiconv_state_t)kmem_alloc(sizeof (kiconv_state_data_t), KM_SLEEP);
usr/src/uts/common/kiconv/kiconv_emea/kiconv_emea.c
133
s = (kiconv_state_t)kmem_alloc(sizeof (kiconv_state_data_t), KM_SLEEP);
usr/src/uts/common/kiconv/kiconv_emea/kiconv_emea.c
145
s = (kiconv_state_t)kmem_alloc(sizeof (kiconv_state_data_t), KM_SLEEP);
usr/src/uts/common/kiconv/kiconv_emea/kiconv_emea.c
157
s = (kiconv_state_t)kmem_alloc(sizeof (kiconv_state_data_t), KM_SLEEP);
usr/src/uts/common/kiconv/kiconv_emea/kiconv_emea.c
169
s = (kiconv_state_t)kmem_alloc(sizeof (kiconv_state_data_t), KM_SLEEP);
usr/src/uts/common/kiconv/kiconv_emea/kiconv_emea.c
181
s = (kiconv_state_t)kmem_alloc(sizeof (kiconv_state_data_t), KM_SLEEP);
usr/src/uts/common/kiconv/kiconv_emea/kiconv_emea.c
193
s = (kiconv_state_t)kmem_alloc(sizeof (kiconv_state_data_t), KM_SLEEP);
usr/src/uts/common/kiconv/kiconv_emea/kiconv_emea.c
205
s = (kiconv_state_t)kmem_alloc(sizeof (kiconv_state_data_t), KM_SLEEP);
usr/src/uts/common/kiconv/kiconv_emea/kiconv_emea.c
217
s = (kiconv_state_t)kmem_alloc(sizeof (kiconv_state_data_t), KM_SLEEP);
usr/src/uts/common/kiconv/kiconv_emea/kiconv_emea.c
229
s = (kiconv_state_t)kmem_alloc(sizeof (kiconv_state_data_t), KM_SLEEP);
usr/src/uts/common/kiconv/kiconv_emea/kiconv_emea.c
241
s = (kiconv_state_t)kmem_alloc(sizeof (kiconv_state_data_t), KM_SLEEP);
usr/src/uts/common/kiconv/kiconv_emea/kiconv_emea.c
253
s = (kiconv_state_t)kmem_alloc(sizeof (kiconv_state_data_t), KM_SLEEP);
usr/src/uts/common/kiconv/kiconv_emea/kiconv_emea.c
265
s = (kiconv_state_t)kmem_alloc(sizeof (kiconv_state_data_t), KM_SLEEP);
usr/src/uts/common/kiconv/kiconv_emea/kiconv_emea.c
277
s = (kiconv_state_t)kmem_alloc(sizeof (kiconv_state_data_t), KM_SLEEP);
usr/src/uts/common/kiconv/kiconv_emea/kiconv_emea.c
289
s = (kiconv_state_t)kmem_alloc(sizeof (kiconv_state_data_t), KM_SLEEP);
usr/src/uts/common/kiconv/kiconv_emea/kiconv_emea.c
301
s = (kiconv_state_t)kmem_alloc(sizeof (kiconv_state_data_t), KM_SLEEP);
usr/src/uts/common/kiconv/kiconv_emea/kiconv_emea.c
313
s = (kiconv_state_t)kmem_alloc(sizeof (kiconv_state_data_t), KM_SLEEP);
usr/src/uts/common/kiconv/kiconv_emea/kiconv_emea.c
325
s = (kiconv_state_t)kmem_alloc(sizeof (kiconv_state_data_t), KM_SLEEP);
usr/src/uts/common/kiconv/kiconv_emea/kiconv_emea.c
337
s = (kiconv_state_t)kmem_alloc(sizeof (kiconv_state_data_t), KM_SLEEP);
usr/src/uts/common/kiconv/kiconv_emea/kiconv_emea.c
349
s = (kiconv_state_t)kmem_alloc(sizeof (kiconv_state_data_t), KM_SLEEP);
usr/src/uts/common/kiconv/kiconv_emea/kiconv_emea.c
361
s = (kiconv_state_t)kmem_alloc(sizeof (kiconv_state_data_t), KM_SLEEP);
usr/src/uts/common/kiconv/kiconv_emea/kiconv_emea.c
373
s = (kiconv_state_t)kmem_alloc(sizeof (kiconv_state_data_t), KM_SLEEP);
usr/src/uts/common/kiconv/kiconv_emea/kiconv_emea.c
385
s = (kiconv_state_t)kmem_alloc(sizeof (kiconv_state_data_t), KM_SLEEP);
usr/src/uts/common/kiconv/kiconv_emea/kiconv_emea.c
397
s = (kiconv_state_t)kmem_alloc(sizeof (kiconv_state_data_t), KM_SLEEP);
usr/src/uts/common/kiconv/kiconv_ja/kiconv_ja.c
281
KM_SLEEP);
usr/src/uts/common/kiconv/kiconv_sc/kiconv_cck_common.c
47
st = (kiconv_state_t)kmem_alloc(sizeof (kiconv_state_data_t), KM_SLEEP);
usr/src/uts/common/klm/klmmod.c
75
g = kmem_zalloc(sizeof (*g), KM_SLEEP);
usr/src/uts/common/klm/nlm_impl.c
1015
new_nvp = kmem_cache_alloc(nlm_vhold_cache, KM_SLEEP);
usr/src/uts/common/klm/nlm_impl.c
1180
dst->buf = kmem_zalloc(src->maxlen, KM_SLEEP);
usr/src/uts/common/klm/nlm_impl.c
1392
host = kmem_cache_alloc(nlm_hosts_cache, KM_SLEEP);
usr/src/uts/common/klm/nlm_impl.c
1979
nslp = kmem_zalloc(sizeof (*nslp), KM_SLEEP);
usr/src/uts/common/klm/nlm_impl.c
2131
new_slr = kmem_zalloc(sizeof (*slr), KM_SLEEP);
usr/src/uts/common/klm/nlm_impl.c
2340
nsp = kmem_alloc(sizeof (*nsp), KM_SLEEP);
usr/src/uts/common/klm/nlm_impl.c
2341
nsp->ns_shr = kmem_alloc(sizeof (*shrp), KM_SLEEP);
usr/src/uts/common/klm/nlm_impl.c
2343
nsp->ns_shr->s_owner = kmem_alloc(shrp->s_own_len, KM_SLEEP);
usr/src/uts/common/klm/nlm_impl.c
536
dst->n_bytes = kmem_alloc(src->n_len, KM_SLEEP);
usr/src/uts/common/klm/nlm_rpc_handle.c
124
kmem_zalloc(sizeof (struct netbuf), KM_SLEEP);
usr/src/uts/common/klm/nlm_rpc_handle.c
163
kmem_zalloc(sizeof (struct netbuf), KM_SLEEP);
usr/src/uts/common/klm/nlm_rpc_handle.c
328
rpcp = kmem_cache_alloc(nlm_rpch_cache, KM_SLEEP);
usr/src/uts/common/klm/nlm_service.c
423
oh = kmem_zalloc(sizeof (*oh), KM_SLEEP);
usr/src/uts/common/kmdb/kdrv.c
109
cfg = kmem_alloc(KDRV_CFG_MAXLEN, KM_SLEEP);
usr/src/uts/common/krtld/kobj.c
3740
struct kobjopen_tctl *ltp = kmem_zalloc(sizeof (*ltp), KM_SLEEP);
usr/src/uts/common/krtld/kobj.c
3744
ltp->name = kmem_alloc(strlen(filename) + 1, KM_SLEEP);
usr/src/uts/common/krtld/kobj.c
4186
return (kmem_alloc(size, (flag & KM_NOWAIT) ? KM_NOSLEEP : KM_SLEEP));
usr/src/uts/common/krtld/kobj.c
4355
buf = kmem_alloc(MAXBSIZE, KM_SLEEP);
usr/src/uts/common/ktli/t_kalloc.c
112
p.opt = kmem_zalloc(sizeof (struct t_optmgmt), KM_SLEEP);
usr/src/uts/common/ktli/t_kalloc.c
119
p.dis = kmem_zalloc(sizeof (struct t_discon), KM_SLEEP);
usr/src/uts/common/ktli/t_kalloc.c
126
p.udata = kmem_zalloc(sizeof (struct t_kunitdata), KM_SLEEP);
usr/src/uts/common/ktli/t_kalloc.c
149
p.uderr = kmem_zalloc(sizeof (struct t_uderr), KM_SLEEP);
usr/src/uts/common/ktli/t_kalloc.c
158
p.info = kmem_zalloc(sizeof (struct t_info), KM_SLEEP);
usr/src/uts/common/ktli/t_kalloc.c
173
buf->buf = kmem_zalloc(1024, KM_SLEEP);
usr/src/uts/common/ktli/t_kalloc.c
186
buf->buf = kmem_zalloc(n, KM_SLEEP);
usr/src/uts/common/ktli/t_kalloc.c
91
p.bind = kmem_zalloc(sizeof (struct t_bind), KM_SLEEP);
usr/src/uts/common/ktli/t_kalloc.c
98
p.call = kmem_zalloc(sizeof (struct t_call), KM_SLEEP);
usr/src/uts/common/ktli/t_kbind.c
90
buf = kmem_alloc(bindsz, KM_SLEEP);
usr/src/uts/common/ktli/t_kopen.c
162
ntiptr = kmem_alloc(TIUSERSZ, KM_SLEEP);
usr/src/uts/common/ktli/t_koptmgmt.c
96
ctlbuf = kmem_alloc(ctlsize, KM_SLEEP);
usr/src/uts/common/ktli/t_kunbind.c
90
buf = kmem_alloc(unbindsz, KM_SLEEP);
usr/src/uts/common/net/radix.h
180
#define R_ZallocSleep(p, t, n) p = (t) kmem_zalloc(n, KM_SLEEP)
usr/src/uts/common/os/acct.c
106
ag = kmem_alloc(sizeof (*ag), KM_SLEEP);
usr/src/uts/common/os/aio.c
1231
cbplist = kmem_alloc(ssize, KM_SLEEP);
usr/src/uts/common/os/aio.c
1582
cbplist = kmem_alloc(ssize, KM_SLEEP);
usr/src/uts/common/os/aio.c
2929
cbplist = kmem_alloc(ssize, KM_SLEEP);
usr/src/uts/common/os/aio.c
3414
cbplist = kmem_alloc(ssize, KM_SLEEP);
usr/src/uts/common/os/audit_core.c
217
pad = kmem_cache_alloc(au_pad_cache, KM_SLEEP);
usr/src/uts/common/os/audit_core.c
324
tad = kmem_zalloc(sizeof (struct t_audit_data), KM_SLEEP);
usr/src/uts/common/os/audit_core.c
399
fad = kmem_zalloc(sizeof (struct f_audit_data), KM_SLEEP);
usr/src/uts/common/os/audit_core.c
82
tad0 = kmem_zalloc(sizeof (struct t_audit_data), KM_SLEEP);
usr/src/uts/common/os/audit_core.c
85
pad0 = kmem_cache_alloc(au_pad_cache, KM_SLEEP);
usr/src/uts/common/os/audit_memory.c
76
newapp = kmem_alloc(alloc_size, KM_SLEEP);
usr/src/uts/common/os/audit_zone.c
45
au_kcontext_t *kctx = kmem_zalloc(sizeof (au_kcontext_t), KM_SLEEP);
usr/src/uts/common/os/audit_zone.c
80
kmem_alloc(AU_DBUF_HEADER + kctx->auk_queue.bufsz, KM_SLEEP);
usr/src/uts/common/os/autoconf.c
158
rootname = kmem_zalloc(size, KM_SLEEP);
usr/src/uts/common/os/autoconf.c
206
bootpath_prop = kmem_zalloc(size, KM_SLEEP);
usr/src/uts/common/os/autoconf.c
213
fstype_prop = kmem_zalloc(size, KM_SLEEP);
usr/src/uts/common/os/autoconf.c
346
buf = kmem_alloc(OBP_MAXPROPNAME, KM_SLEEP);
usr/src/uts/common/os/autoconf.c
382
nodeid, -1, NULL, KM_SLEEP);
usr/src/uts/common/os/bio.c
1183
hbuf = kmem_zalloc(v.v_hbuf * sizeof (struct hbuf), KM_SLEEP);
usr/src/uts/common/os/bio.c
1185
dwbuf = kmem_zalloc(v.v_hbuf * sizeof (struct dwbuf), KM_SLEEP);
usr/src/uts/common/os/bio.c
1344
bp = kmem_zalloc(sizeof (struct buf), KM_SLEEP);
usr/src/uts/common/os/bio.c
1549
bp->b_un.b_addr = kmem_alloc(bsize, KM_SLEEP);
usr/src/uts/common/os/bio.c
757
bp = kmem_alloc(sizeof (struct buf), KM_SLEEP);
usr/src/uts/common/os/bio.c
760
bp->b_un.b_addr = kmem_alloc(bsize, KM_SLEEP);
usr/src/uts/common/os/bitset.c
85
bset_new = kmem_zalloc(nwords * sizeof (ulong_t), KM_SLEEP);
usr/src/uts/common/os/brand.c
114
list = kmem_alloc(sizeof (struct brand_list), KM_SLEEP);
usr/src/uts/common/os/brand.c
1148
p->p_brand_data = kmem_zalloc(sizeof (brand_proc_data_t), KM_SLEEP);
usr/src/uts/common/os/brand.c
254
modname = kmem_alloc(MAXPATHLEN, KM_SLEEP);
usr/src/uts/common/os/brand.c
585
spd = kmem_alloc(sizeof (brand_proc_data_t), KM_SLEEP);
usr/src/uts/common/os/callb.c
123
cp = (callb_t *)kmem_zalloc(sizeof (callb_t), KM_SLEEP);
usr/src/uts/common/os/callout.c
1822
ct->ct_idhash = kmem_zalloc(size, KM_SLEEP);
usr/src/uts/common/os/callout.c
1823
ct->ct_clhash = kmem_zalloc(size, KM_SLEEP);
usr/src/uts/common/os/callout.c
1975
cache = kmem_alloc(sizeof (callout_cache_t), KM_SLEEP);
usr/src/uts/common/os/callout.c
2137
buf = (uintptr_t)kmem_zalloc(size, KM_SLEEP);
usr/src/uts/common/os/callout.c
2172
ct->ct_kstat_data = kmem_zalloc(size, KM_SLEEP);
usr/src/uts/common/os/callout.c
526
ct->ct_heap = kmem_alloc(size, KM_SLEEP);
usr/src/uts/common/os/cap_util.c
389
cu_cpc_reqs = kcpc_reqs_init(cpc_ncounters, KM_SLEEP);
usr/src/uts/common/os/clock.c
985
buf = (intptr_t)kmem_zalloc(sz, KM_SLEEP);
usr/src/uts/common/os/clock.c
997
buf = (intptr_t)kmem_zalloc(sz, KM_SLEEP);
usr/src/uts/common/os/clock_highres.c
74
it->it_arg = kmem_zalloc(sizeof (cyclic_id_t), KM_SLEEP);
usr/src/uts/common/os/clock_realtime.c
177
it->it_arg = kmem_zalloc(sizeof (timeout_id_t), KM_SLEEP);
usr/src/uts/common/os/clock_tick.c
181
abuf = (uintptr_t)kmem_zalloc(size * NCPU + _CACHE_LINE_SIZE, KM_SLEEP);
usr/src/uts/common/os/clock_tick.c
217
clock_tick_set = kmem_zalloc(sizeof (clock_tick_set_t) * n, KM_SLEEP);
usr/src/uts/common/os/contract.c
1104
result = kmem_alloc(sizeof (ct_type_t), KM_SLEEP);
usr/src/uts/common/os/contract.c
1393
ct_equeue_t **qa = kmem_zalloc(size, KM_SLEEP);
usr/src/uts/common/os/contract.c
1408
ct_equeue_t *q = kmem_zalloc(sizeof (ct_equeue_t), KM_SLEEP);
usr/src/uts/common/os/contract.c
1450
kparam->ctpm_kbuf = kmem_alloc(size, KM_SLEEP);
usr/src/uts/common/os/contract.c
2600
char *buf = kmem_alloc(len, KM_SLEEP);
usr/src/uts/common/os/contract.c
2604
NV_ENCODE_NATIVE, KM_SLEEP) == 0);
usr/src/uts/common/os/contract.c
2609
&gsize, NV_ENCODE_NATIVE, KM_SLEEP) == 0);
usr/src/uts/common/os/core.c
592
fp = kmem_alloc(MAXPATHLEN, KM_SLEEP);
usr/src/uts/common/os/core.c
736
fp_process = kmem_alloc(MAXPATHLEN, KM_SLEEP);
usr/src/uts/common/os/cpu.c
1729
tbl = kmem_zalloc(sizeof (struct cpu *) * max_ncpus, KM_SLEEP);
usr/src/uts/common/os/cpu.c
3114
cp->cpu_supp_freqs = kmem_alloc(len, KM_SLEEP);
usr/src/uts/common/os/cpu_event.c
310
buf = (intptr_t)kmem_zalloc(sz, KM_SLEEP);
usr/src/uts/common/os/cpu_event.c
385
sizeof (cpu_idle_cb_item_t), KM_SLEEP);
usr/src/uts/common/os/cpu_event.c
547
cip = kmem_zalloc(sizeof (*cip), KM_SLEEP);
usr/src/uts/common/os/cpu_event.c
833
KM_SLEEP);
usr/src/uts/common/os/cpu_event.c
836
buf = (intptr_t)kmem_zalloc(sz, KM_SLEEP);
usr/src/uts/common/os/cpu_pm.c
276
dom = kmem_zalloc(sizeof (cpupm_domain_t), KM_SLEEP);
usr/src/uts/common/os/cpu_pm.c
311
kmem_zalloc(dom->cpd_nstates * sizeof (cpupm_state_t), KM_SLEEP);
usr/src/uts/common/os/cpupm.c
48
hzspeeds = kmem_zalloc(nspeeds * sizeof (uint64_t), KM_SLEEP);
usr/src/uts/common/os/cpupm.c
54
supp_freqs = kmem_zalloc((UINT64_MAX_STRING * nspeeds), KM_SLEEP);
usr/src/uts/common/os/cred.c
122
eph_zsd = kmem_zalloc(sizeof (ephemeral_zsd_t), KM_SLEEP);
usr/src/uts/common/os/cred.c
1441
mem = kmem_alloc(sz, KM_SLEEP);
usr/src/uts/common/os/cred.c
268
return (cralloc_flags(KM_SLEEP));
usr/src/uts/common/os/cred.c
290
cred_t *cr = kmem_cache_alloc(cred_cache, KM_SLEEP);
usr/src/uts/common/os/cred.c
467
return (crdup_flags(cr, KM_SLEEP));
usr/src/uts/common/os/cred.c
844
cr->cr_grps = kmem_alloc(CREDGRPSZ(n), KM_SLEEP);
usr/src/uts/common/os/cred.c
950
uc = kmem_zalloc(realsz, KM_SLEEP);
usr/src/uts/common/os/cyclic.c
1474
new_heap = kmem_alloc(sizeof (cyc_index_t) * new_size, KM_SLEEP);
usr/src/uts/common/os/cyclic.c
1475
new_cyclics = kmem_zalloc(sizeof (cyclic_t) * new_size, KM_SLEEP);
usr/src/uts/common/os/cyclic.c
1493
kmem_alloc(sizeof (cyc_index_t) * new_size, KM_SLEEP);
usr/src/uts/common/os/cyclic.c
2313
cyc_cpu_t *cpu = kmem_zalloc(sizeof (cyc_cpu_t), KM_SLEEP);
usr/src/uts/common/os/cyclic.c
2314
cyc_backend_t *nbe = kmem_zalloc(sizeof (cyc_backend_t), KM_SLEEP);
usr/src/uts/common/os/cyclic.c
2329
cpu->cyp_heap = kmem_zalloc(sizeof (cyc_index_t), KM_SLEEP);
usr/src/uts/common/os/cyclic.c
2330
cpu->cyp_cyclics = kmem_zalloc(sizeof (cyclic_t), KM_SLEEP);
usr/src/uts/common/os/cyclic.c
2339
kmem_alloc(sizeof (cyc_index_t), KM_SLEEP);
usr/src/uts/common/os/cyclic.c
2515
cyc_omni_cpu_t *ocpu = kmem_alloc(sizeof (cyc_omni_cpu_t), KM_SLEEP);
usr/src/uts/common/os/cyclic.c
2646
idp = kmem_cache_alloc(cyclic_id_cache, KM_SLEEP);
usr/src/uts/common/os/dacf.c
242
KM_SLEEP);
usr/src/uts/common/os/dacf.c
370
rule = kmem_alloc(sizeof (dacf_rule_t), KM_SLEEP);
usr/src/uts/common/os/dacf.c
375
rule->r_devspec_data = kmem_alloc(strlen(device_spec) + 1, KM_SLEEP);
usr/src/uts/common/os/dacf.c
386
rule->r_module = kmem_alloc(strlen(module) + 1, KM_SLEEP);
usr/src/uts/common/os/dacf.c
389
rule->r_opset = kmem_alloc(strlen(opset) + 1, KM_SLEEP);
usr/src/uts/common/os/dacf.c
609
arg = kmem_alloc(sizeof (dacf_arg_t), KM_SLEEP);
usr/src/uts/common/os/dacf.c
610
arg->arg_name = kmem_alloc(strlen(name) + 1, KM_SLEEP);
usr/src/uts/common/os/dacf.c
612
arg->arg_val = kmem_alloc(strlen(val) + 1, KM_SLEEP);
usr/src/uts/common/os/dacf.c
728
module = kmem_zalloc(sizeof (dacf_module_t), KM_SLEEP);
usr/src/uts/common/os/dacf.c
729
str = kmem_alloc(strlen(mod_name) + 1, KM_SLEEP);
usr/src/uts/common/os/dacf.c
753
opsarray = kmem_zalloc(sizeof (dacf_opset_t) * (nelems + 1), KM_SLEEP);
usr/src/uts/common/os/dacf.c
874
dst->opset_name = kmem_alloc(strlen(src->opset_name) + 1, KM_SLEEP);
usr/src/uts/common/os/dacf.c
889
KM_SLEEP);
usr/src/uts/common/os/dacf_clnt.c
101
drv_mname = kmem_alloc(MAXPATHLEN, KM_SLEEP);
usr/src/uts/common/os/dacf_clnt.c
246
path = kmem_alloc(MAXPATHLEN, KM_SLEEP);
usr/src/uts/common/os/dacf_clnt.c
300
path = kmem_alloc(MAXPATHLEN, KM_SLEEP);
usr/src/uts/common/os/dacf_clnt.c
311
path = kmem_alloc(MAXPATHLEN, KM_SLEEP);
usr/src/uts/common/os/dacf_clnt.c
92
dev_path = kmem_alloc(MAXPATHLEN, KM_SLEEP);
usr/src/uts/common/os/dacf_clnt.c
94
pa_rsrv = kmem_alloc(sizeof (dacf_rsrvlist_t), KM_SLEEP);
usr/src/uts/common/os/dacf_clnt.c
95
pd_rsrv = kmem_alloc(sizeof (dacf_rsrvlist_t), KM_SLEEP);
usr/src/uts/common/os/damap.c
1182
tqd = kmem_alloc(sizeof (*tqd), KM_SLEEP);
usr/src/uts/common/os/damap.c
1227
tqd = kmem_alloc(sizeof (*tqd), KM_SLEEP);
usr/src/uts/common/os/damap.c
134
mapp = kmem_zalloc(sizeof (*mapp), KM_SLEEP);
usr/src/uts/common/os/damap.c
145
mapp->dam_name = i_ddi_strdup(name, KM_SLEEP);
usr/src/uts/common/os/damap.c
441
(void) nvlist_dup(nvl, &passp->da_nvl_rpt, KM_SLEEP);
usr/src/uts/common/os/damap.c
658
(void) nvlist_dup(nvl, &passp->da_nvl_rpt, KM_SLEEP);
usr/src/uts/common/os/damap.c
962
bsp = kmem_alloc(sizeof (*bsp), KM_SLEEP);
usr/src/uts/common/os/ddi_hp_impl.c
811
((kmflag == KM_SLEEP) ? DDI_SLEEP : DDI_NOSLEEP));
usr/src/uts/common/os/ddi_hp_impl.c
919
SE_NO_HINT, KM_SLEEP);
usr/src/uts/common/os/ddi_hp_ndi.c
106
hdlp->cn_info.cn_name = ddi_strdup(info_p->cn_name, KM_SLEEP);
usr/src/uts/common/os/ddi_hp_ndi.c
99
(sizeof (ddi_hp_cn_handle_t)), KM_SLEEP);
usr/src/uts/common/os/ddi_intr.c
1063
sizeof (ddi_softint_hdl_impl_t), KM_SLEEP);
usr/src/uts/common/os/ddi_intr.c
1220
hdl_p = kmem_zalloc(hdl_sz, KM_SLEEP);
usr/src/uts/common/os/ddi_intr.c
1294
hdl_p = kmem_zalloc(hdl_sz, KM_SLEEP);
usr/src/uts/common/os/ddi_intr.c
1344
hdl_p = kmem_zalloc(hdl_sz, KM_SLEEP);
usr/src/uts/common/os/ddi_intr.c
1497
hdl_p = kmem_zalloc(sizeof (ddi_softint_handle_t), KM_SLEEP);
usr/src/uts/common/os/ddi_intr.c
317
(sizeof (ddi_intr_handle_impl_t)), KM_SLEEP);
usr/src/uts/common/os/ddi_intr.c
679
kmem_alloc(sizeof (ddi_intr_handle_impl_t), KM_SLEEP);
usr/src/uts/common/os/ddi_intr_impl.c
365
intr_p->devi_intr_sup_nintrs, KM_SLEEP);
usr/src/uts/common/os/ddi_intr_impl.c
59
DEVI(dip)->devi_intr_p = kmem_zalloc(sizeof (devinfo_intr_t), KM_SLEEP);
usr/src/uts/common/os/ddi_intr_irm.c
178
pool_p = kmem_zalloc(sizeof (ddi_irm_pool_t), KM_SLEEP);
usr/src/uts/common/os/ddi_intr_irm.c
394
req_p = kmem_zalloc(sizeof (ddi_irm_req_t), KM_SLEEP);
usr/src/uts/common/os/ddi_nodeid.c
177
np = np_alloc(KM_SLEEP);
usr/src/uts/common/os/ddi_nodeid.c
232
fp = np_alloc(KM_SLEEP);
usr/src/uts/common/os/ddi_periodic.c
363
dpr = kmem_cache_alloc(periodic_cache, KM_SLEEP);
usr/src/uts/common/os/ddi_ufm.c
224
KM_SLEEP);
usr/src/uts/common/os/ddi_ufm.c
237
KM_SLEEP);
usr/src/uts/common/os/ddi_ufm.c
299
buf = kmem_zalloc(UFM_READ_STRIDE, KM_SLEEP);
usr/src/uts/common/os/ddi_ufm.c
419
*ufmh = kmem_zalloc(sizeof (ddi_ufm_handle_t), KM_SLEEP);
usr/src/uts/common/os/ddi_ufm.c
486
uip->ufmi_desc = ddi_strdup(desc, KM_SLEEP);
usr/src/uts/common/os/ddi_ufm.c
511
usp->ufms_version = ddi_strdup(version, KM_SLEEP);
usr/src/uts/common/os/ddifm.c
237
stkpp = (char **)kmem_alloc(depth * sizeof (char *), KM_SLEEP);
usr/src/uts/common/os/ddifm.c
243
buf = kmem_alloc(depth * DDI_FM_SYM_SZ, KM_SLEEP);
usr/src/uts/common/os/ddifm.c
588
new_eh = kmem_zalloc(sizeof (struct i_ddi_errhdl), KM_SLEEP);
usr/src/uts/common/os/ddifm.c
593
tgt = kmem_alloc(sizeof (struct i_ddi_fmtgt), KM_SLEEP);
usr/src/uts/common/os/ddifm.c
720
fmhdl = kmem_zalloc(sizeof (struct i_ddi_fmhdl), KM_SLEEP);
usr/src/uts/common/os/devcache.c
292
nvfdp = kmem_zalloc(sizeof (*nvfdp), KM_SLEEP);
usr/src/uts/common/os/devcache.c
434
buf = kmem_alloc(hdr.nvpf_size, KM_SLEEP);
usr/src/uts/common/os/devcache.c
488
fp = kmem_alloc(sizeof (kfile_t), KM_SLEEP);
usr/src/uts/common/os/devcache.c
683
buf = kmem_alloc(sizeof (nvpf_hdr_t) + buflen, KM_SLEEP);
usr/src/uts/common/os/devcache.c
698
newname = kmem_alloc(len, KM_SLEEP);
usr/src/uts/common/os/devcfg.c
1034
i_ddi_strdup(path, KM_SLEEP);
usr/src/uts/common/os/devcfg.c
1133
addr = i_ddi_strdup(addr, KM_SLEEP);
usr/src/uts/common/os/devcfg.c
1824
dip = i_ddi_alloc_node(pdip, name, nodeid, (int)unit, NULL, KM_SLEEP);
usr/src/uts/common/os/devcfg.c
2169
KM_SLEEP);
usr/src/uts/common/os/devcfg.c
2324
buf = kmem_alloc(MAXNAMELEN, KM_SLEEP);
usr/src/uts/common/os/devcfg.c
2552
ddi_prop_list_t *list = kmem_alloc(sizeof (*list), KM_SLEEP);
usr/src/uts/common/os/devcfg.c
2621
*classes = buf = kmem_alloc(nclass * sizeof (char *), KM_SLEEP);
usr/src/uts/common/os/devcfg.c
2741
char *buf = kmem_alloc(MAXNAMELEN, KM_SLEEP);
usr/src/uts/common/os/devcfg.c
2761
buf = kmem_alloc(MAXNAMELEN, KM_SLEEP);
usr/src/uts/common/os/devcfg.c
2778
buf = kmem_alloc(MAXNAMELEN, KM_SLEEP);
usr/src/uts/common/os/devcfg.c
2853
i_ddi_prop_list_dup(DEVI(dip)->devi_sys_prop_ptr, KM_SLEEP);
usr/src/uts/common/os/devcfg.c
2855
i_ddi_prop_list_dup(DEVI(dip)->devi_drv_prop_ptr, KM_SLEEP);
usr/src/uts/common/os/devcfg.c
2919
(void) lookup_compatible(dip, KM_SLEEP);
usr/src/uts/common/os/devcfg.c
3269
buf = kmem_alloc(MAXNAMELEN, KM_SLEEP);
usr/src/uts/common/os/devcfg.c
3391
dh = kmem_alloc(logsize * PAGESIZE, KM_SLEEP);
usr/src/uts/common/os/devcfg.c
3557
struct walk_elem *elem = kmem_alloc(sizeof (*elem), KM_SLEEP);
usr/src/uts/common/os/devcfg.c
3920
p = kmem_zalloc(MAXPATHLEN, KM_SLEEP);
usr/src/uts/common/os/devcfg.c
4037
component = kmem_alloc(MAXNAMELEN, KM_SLEEP);
usr/src/uts/common/os/devcfg.c
4038
config_name = kmem_alloc(MAXNAMELEN, KM_SLEEP);
usr/src/uts/common/os/devcfg.c
4043
prev_minor = i_ddi_strdup(minorname, KM_SLEEP);
usr/src/uts/common/os/devcfg.c
4518
path = kmem_alloc(MAXPATHLEN, KM_SLEEP);
usr/src/uts/common/os/devcfg.c
4624
ub = kmem_zalloc(sizeof (*ub), KM_SLEEP);
usr/src/uts/common/os/devcfg.c
4718
-1, specp->hwc_devi_sys_prop_ptr, KM_SLEEP);
usr/src/uts/common/os/devcfg.c
4817
path = kmem_alloc(MAXPATHLEN, KM_SLEEP);
usr/src/uts/common/os/devcfg.c
4860
pathname = kmem_alloc(MAXPATHLEN, KM_SLEEP);
usr/src/uts/common/os/devcfg.c
5049
path = kmem_alloc(MAXPATHLEN, KM_SLEEP);
usr/src/uts/common/os/devcfg.c
5129
node_path = kmem_alloc(MAXPATHLEN, KM_SLEEP);
usr/src/uts/common/os/devcfg.c
5156
deviname = kmem_alloc(MAXNAMELEN, KM_SLEEP);
usr/src/uts/common/os/devcfg.c
5159
brn = kmem_zalloc(sizeof (*brn), KM_SLEEP);
usr/src/uts/common/os/devcfg.c
5160
brn->brn_deviname = i_ddi_strdup(deviname, KM_SLEEP);
usr/src/uts/common/os/devcfg.c
5216
path = kmem_alloc(MAXPATHLEN, KM_SLEEP);
usr/src/uts/common/os/devcfg.c
5234
path = kmem_alloc(MAXPATHLEN, KM_SLEEP);
usr/src/uts/common/os/devcfg.c
5258
path = kmem_alloc(MAXPATHLEN, KM_SLEEP);
usr/src/uts/common/os/devcfg.c
542
nname = i_ddi_strdup(name, KM_SLEEP);
usr/src/uts/common/os/devcfg.c
6117
devi->devi_ev_path = kmem_alloc(MAXPATHLEN, KM_SLEEP);
usr/src/uts/common/os/devcfg.c
6158
KM_SLEEP);
usr/src/uts/common/os/devcfg.c
6161
KM_SLEEP);
usr/src/uts/common/os/devcfg.c
6165
KM_SLEEP);
usr/src/uts/common/os/devcfg.c
6591
kmflag = KM_SLEEP;
usr/src/uts/common/os/devcfg.c
6780
char *devname = kmem_alloc(MAXNAMELEN + 1, KM_SLEEP);
usr/src/uts/common/os/devcfg.c
6865
devstr = i_ddi_strdup(devname, KM_SLEEP);
usr/src/uts/common/os/devcfg.c
7051
path = kmem_alloc(MAXPATHLEN, KM_SLEEP);
usr/src/uts/common/os/devcfg.c
7062
vpath = kmem_alloc(MAXPATHLEN, KM_SLEEP);
usr/src/uts/common/os/devcfg.c
7550
parents = kmem_zalloc(devcnt * sizeof (char), KM_SLEEP);
usr/src/uts/common/os/devcfg.c
7680
struct mt_config_handle *hdl = kmem_alloc(sizeof (*hdl), KM_SLEEP);
usr/src/uts/common/os/devcfg.c
7807
char *path = kmem_alloc(MAXPATHLEN, KM_SLEEP);
usr/src/uts/common/os/devcfg.c
7894
mcd = kmem_alloc(sizeof (*mcd), KM_SLEEP);
usr/src/uts/common/os/devcfg.c
7988
mcd = kmem_alloc(sizeof (*mcd), KM_SLEEP);
usr/src/uts/common/os/devcfg.c
8404
path = kmem_alloc(MAXPATHLEN, KM_SLEEP);
usr/src/uts/common/os/devcfg.c
8607
devnm = kmem_alloc(MAXNAMELEN + 1, KM_SLEEP);
usr/src/uts/common/os/devcfg.c
8736
find_dip.fd_buf = kmem_alloc(MAXPATHLEN, KM_SLEEP);
usr/src/uts/common/os/devcfg.c
8762
path2 = kmem_alloc(MAXPATHLEN, KM_SLEEP);
usr/src/uts/common/os/devcfg.c
8842
path = kmem_alloc(MAXPATHLEN, KM_SLEEP);
usr/src/uts/common/os/devcfg.c
885
path = kmem_alloc(MAXPATHLEN, KM_SLEEP);
usr/src/uts/common/os/devid_cache.c
1025
udevts = kmem_alloc(undevts * sizeof (dev_t), KM_SLEEP);
usr/src/uts/common/os/devid_cache.c
1157
devid_dup = kmem_alloc(n, KM_SLEEP); /* caller must free */
usr/src/uts/common/os/devid_cache.c
271
np = kmem_zalloc(sizeof (nvp_devid_t), KM_SLEEP);
usr/src/uts/common/os/devid_cache.c
272
np->nvp_devpath = i_ddi_strdup(name, KM_SLEEP);
usr/src/uts/common/os/devid_cache.c
273
np->nvp_devid = kmem_alloc(n, KM_SLEEP);
usr/src/uts/common/os/devid_cache.c
303
rval = nvlist_alloc(&nvl, NV_UNIQUE_NAME, KM_SLEEP);
usr/src/uts/common/os/devid_cache.c
315
rval = nvlist_alloc(&sub_nvl, NV_UNIQUE_NAME, KM_SLEEP);
usr/src/uts/common/os/devid_cache.c
528
path = kmem_alloc(pathlen, KM_SLEEP);
usr/src/uts/common/os/devid_cache.c
539
fullpath = kmem_alloc(MAXPATHLEN, KM_SLEEP);
usr/src/uts/common/os/devid_cache.c
542
path = kmem_alloc(pathlen, KM_SLEEP);
usr/src/uts/common/os/devid_cache.c
549
new_nvp = kmem_zalloc(sizeof (nvp_devid_t), KM_SLEEP);
usr/src/uts/common/os/devid_cache.c
551
new_devid = kmem_alloc(new_devid_size, KM_SLEEP);
usr/src/uts/common/os/devid_cache.c
902
paths = kmem_zalloc(nalloced * sizeof (char *), KM_SLEEP);
usr/src/uts/common/os/devid_cache.c
903
devis = kmem_zalloc(nalloced * sizeof (dev_info_t *), KM_SLEEP);
usr/src/uts/common/os/devid_cache.c
919
path = i_ddi_strdup(paths[i], KM_SLEEP);
usr/src/uts/common/os/devid_cache.c
934
devts = kmem_alloc(ndevts_alloced * sizeof (dev_t), KM_SLEEP);
usr/src/uts/common/os/devpolicy.c
170
devplcy_t *dp = kmem_zalloc(sizeof (*dp), KM_SLEEP);
usr/src/uts/common/os/devpolicy.c
339
devplcyent_t *de = kmem_zalloc(sizeof (*de), KM_SLEEP);
usr/src/uts/common/os/devpolicy.c
365
de->dpe_expr = kmem_alloc(de->dpe_len, KM_SLEEP);
usr/src/uts/common/os/devpolicy.c
436
items = kmem_alloc(mem, KM_SLEEP);
usr/src/uts/common/os/devpolicy.c
494
newpolicy = kmem_zalloc(nmaj * sizeof (tableent_t), KM_SLEEP);
usr/src/uts/common/os/devpolicy.c
608
itmp = kmem_zalloc(alloced, KM_SLEEP);
usr/src/uts/common/os/driver_lyr.c
236
lip = kmem_zalloc(sizeof (*lip), KM_SLEEP);
usr/src/uts/common/os/driver_lyr.c
2859
lep = kmem_zalloc(sizeof (struct ldi_event), KM_SLEEP);
usr/src/uts/common/os/driver_lyr.c
3227
lecp = kmem_zalloc(sizeof (ldi_ev_callback_impl_t), KM_SLEEP);
usr/src/uts/common/os/driver_lyr.c
3517
char *path = kmem_alloc(MAXPATHLEN, KM_SLEEP);
usr/src/uts/common/os/driver_lyr.c
363
lhp = kmem_zalloc(sizeof (*lhp), KM_SLEEP);
usr/src/uts/common/os/driver_lyr.c
3680
char *path = kmem_alloc(MAXPATHLEN, KM_SLEEP);
usr/src/uts/common/os/driver_lyr.c
843
pdd = kmem_alloc(pdd_size, KM_SLEEP);
usr/src/uts/common/os/dumpsubr.c
1120
dumphdr = kmem_zalloc(sizeof (dumphdr_t), KM_SLEEP);
usr/src/uts/common/os/dumpsubr.c
1129
dumpbuf.start = kmem_alloc(dumpbuf.size, KM_SLEEP);
usr/src/uts/common/os/dumpsubr.c
1131
dumpcfg.pids = kmem_alloc(v.v_proc * sizeof (pid_t), KM_SLEEP);
usr/src/uts/common/os/dumpsubr.c
1132
dumpcfg.helpermap = kmem_zalloc(BT_SIZEOFMAP(NCPU), KM_SLEEP);
usr/src/uts/common/os/dumpsubr.c
1134
dump_stack_scratch = kmem_alloc(STACK_BUF_SIZE, KM_SLEEP);
usr/src/uts/common/os/dumpsubr.c
1143
void *map = kmem_alloc(BT_SIZEOFMAP(npages), KM_SLEEP);
usr/src/uts/common/os/dumpsubr.c
1144
void *rmap = kmem_alloc(BT_SIZEOFMAP(rlen), KM_SLEEP);
usr/src/uts/common/os/dumpsubr.c
1221
dumppath = kmem_alloc(strlen(name) + 1, KM_SLEEP);
usr/src/uts/common/os/dumpsubr.c
496
new_buf = kmem_alloc(new_size, KM_SLEEP);
usr/src/uts/common/os/dumpsubr.c
650
new->helper = kmem_zalloc(new->nhelper * sizeof (helper_t), KM_SLEEP);
usr/src/uts/common/os/dumpsubr.c
655
hp->lzbuf = kmem_alloc(PAGESIZE, KM_SLEEP);
usr/src/uts/common/os/dumpsubr.c
656
hp->page = kmem_alloc(PAGESIZE, KM_SLEEP);
usr/src/uts/common/os/dumpsubr.c
666
new->cbuf = kmem_zalloc(new->ncbuf * sizeof (cbuf_t), KM_SLEEP);
usr/src/uts/common/os/dumpsubr.c
672
cp->buf = kmem_alloc(cp->size, KM_SLEEP);
usr/src/uts/common/os/dumpsubr.c
677
new->cmap = kmem_zalloc(new->ncmap * sizeof (cbuf_t), KM_SLEEP);
usr/src/uts/common/os/errorq.c
297
errorq_t *eqp = kmem_alloc(sizeof (errorq_t), KM_SLEEP);
usr/src/uts/common/os/errorq.c
343
eqp->eq_data = kmem_alloc(qlen * size, KM_SLEEP);
usr/src/uts/common/os/errorq.c
350
eqp->eq_elems = kmem_alloc(qlen * sizeof (errorq_elem_t), KM_SLEEP);
usr/src/uts/common/os/errorq.c
355
eqp->eq_bitmap = kmem_zalloc(BT_SIZEOFMAP(qlen), KM_SLEEP);
usr/src/uts/common/os/evchannels.c
1082
chn = kmem_alloc(namlen, KM_SLEEP);
usr/src/uts/common/os/evchannels.c
1086
p = kmem_zalloc(sizeof (evch_chan_t), KM_SLEEP);
usr/src/uts/common/os/evchannels.c
1131
bp = kmem_alloc(sizeof (evch_bind_t), KM_SLEEP);
usr/src/uts/common/os/evchannels.c
1277
clb = kmem_alloc(clblen, KM_SLEEP);
usr/src/uts/common/os/evchannels.c
1282
subid = kmem_alloc(subidblen, KM_SLEEP);
usr/src/uts/common/os/evchannels.c
1286
sdp = kmem_zalloc(sizeof (evch_subd_t), KM_SLEEP);
usr/src/uts/common/os/evchannels.c
1669
snp = kmem_alloc(sizeof (evchanq_t), KM_SLEEP);
usr/src/uts/common/os/evchannels.c
1967
km_flags & EVCH_SLEEP ? KM_SLEEP : KM_NOSLEEP);
usr/src/uts/common/os/evchannels.c
300
eg = kmem_zalloc(sizeof (*eg), KM_SLEEP);
usr/src/uts/common/os/evchannels.c
540
p = kmem_zalloc(sizeof (evch_eventq_t), KM_SLEEP);
usr/src/uts/common/os/evchannels.c
600
evch_evqsub_t *sp = kmem_zalloc(sizeof (evch_evqsub_t), KM_SLEEP);
usr/src/uts/common/os/evchannels.c
647
KM_NOSLEEP : KM_SLEEP);
usr/src/uts/common/os/evchannels.c
732
KM_SLEEP);
usr/src/uts/common/os/exacct.c
1063
buf = kmem_alloc(bufsize, KM_SLEEP);
usr/src/uts/common/os/exacct.c
1124
pu = kmem_alloc(sizeof (proc_usage_t), KM_SLEEP);
usr/src/uts/common/os/exacct.c
1125
pu->pu_command = kmem_alloc(size, KM_SLEEP);
usr/src/uts/common/os/exacct.c
1675
buf = kmem_alloc(bufsize, KM_SLEEP);
usr/src/uts/common/os/exacct.c
1728
buf = kmem_alloc(bufsize, KM_SLEEP);
usr/src/uts/common/os/exacct.c
250
buf = kmem_alloc(bufsize, KM_SLEEP);
usr/src/uts/common/os/exacct.c
459
tu_buf = kmem_zalloc(sizeof (task_usage_t), KM_SLEEP);
usr/src/uts/common/os/exacct.c
666
tu = kmem_zalloc(sizeof (task_usage_t), KM_SLEEP);
usr/src/uts/common/os/exacct.c
683
buf = kmem_alloc(bufsize, KM_SLEEP);
usr/src/uts/common/os/exacct.c
74
item = kmem_cache_alloc(exacct_object_cache, KM_SLEEP);
usr/src/uts/common/os/exacct.c
85
group = kmem_cache_alloc(exacct_object_cache, KM_SLEEP);
usr/src/uts/common/os/exec.c
1012
ename = kmem_alloc(strlen(name) + 1, KM_SLEEP);
usr/src/uts/common/os/exec.c
1020
magicp = kmem_alloc(magic_size, KM_SLEEP);
usr/src/uts/common/os/exec.c
2051
args->stk_base = kmem_alloc(size, KM_SLEEP);
usr/src/uts/common/os/exec.c
541
lwpdir = kmem_zalloc(2 * sizeof (lwpdir_t), KM_SLEEP);
usr/src/uts/common/os/exec.c
543
tidhash = kmem_zalloc(2 * sizeof (tidhash_t), KM_SLEEP);
usr/src/uts/common/os/exec.c
547
lep = kmem_zalloc(sizeof (*lep), KM_SLEEP);
usr/src/uts/common/os/exit.c
544
sqp = kmem_zalloc(sizeof (sigqueue_t), KM_SLEEP);
usr/src/uts/common/os/fbio.c
128
*fbpp = fbp = kmem_alloc(sizeof (struct fbuf), KM_SLEEP);
usr/src/uts/common/os/fbio.c
98
*fbpp = fbp = kmem_alloc(sizeof (struct fbuf), KM_SLEEP);
usr/src/uts/common/os/fio.c
1143
fp = kmem_cache_alloc(file_cache, KM_SLEEP);
usr/src/uts/common/os/fio.c
1801
fpip = kmem_zalloc(sizeof (fpollinfo_t), KM_SLEEP);
usr/src/uts/common/os/fio.c
350
newlist = kmem_zalloc(newcnt * sizeof (uf_entry_t), KM_SLEEP);
usr/src/uts/common/os/fio.c
446
urp = kmem_zalloc(sizeof (uf_rlist_t), KM_SLEEP);
usr/src/uts/common/os/fio.c
525
new_fd = kmem_alloc(new_nfd * sizeof (afd->a_fd[0]), KM_SLEEP);
usr/src/uts/common/os/fio.c
868
kmem_zalloc(nfiles * sizeof (uf_entry_t), KM_SLEEP);
usr/src/uts/common/os/firmload.c
62
return (kmem_alloc(sizeof (struct firmware_handle), KM_SLEEP));
usr/src/uts/common/os/flock.c
1587
ep = kmem_cache_alloc(flk_edge_cache, KM_SLEEP);
usr/src/uts/common/os/flock.c
1987
KM_SLEEP);
usr/src/uts/common/os/flock.c
2454
gp_alloc = kmem_zalloc(sizeof (graph_t), KM_SLEEP);
usr/src/uts/common/os/flock.c
3278
pv = kmem_zalloc(sizeof (struct proc_vertex), KM_SLEEP);
usr/src/uts/common/os/flock.c
3293
sizeof (proc_vertex_t *), KM_SLEEP);
usr/src/uts/common/os/flock.c
3319
pep = kmem_zalloc(sizeof (proc_edge_t), KM_SLEEP);
usr/src/uts/common/os/flock.c
3725
llp = kmem_alloc(sizeof (locklist_t), KM_SLEEP);
usr/src/uts/common/os/flock.c
946
KM_SLEEP);
usr/src/uts/common/os/flock.c
966
fg = kmem_alloc(sizeof (*fg), KM_SLEEP);
usr/src/uts/common/os/flock.c
991
l = kmem_zalloc(sizeof (lock_descriptor_t), KM_SLEEP);
usr/src/uts/common/os/fm.c
152
ereport_dumpbuf = kmem_alloc(ereport_size, KM_SLEEP);
usr/src/uts/common/os/fm.c
547
return (kmem_zalloc(size, KM_SLEEP));
usr/src/uts/common/os/fm.c
573
nv_alloc_t *nvhdl = kmem_zalloc(sizeof (nv_alloc_t), KM_SLEEP);
usr/src/uts/common/os/fm.c
615
nvhdl = kmem_zalloc(sizeof (nv_alloc_t), KM_SLEEP);
usr/src/uts/common/os/fork.c
376
kmem_zalloc(cp->p_lwpdir_sz * sizeof (lwpdir_t), KM_SLEEP);
usr/src/uts/common/os/fork.c
381
kmem_zalloc(cp->p_tidhash_sz * sizeof (tidhash_t), KM_SLEEP);
usr/src/uts/common/os/fork.c
434
clep = kmem_zalloc(sizeof (*clep), KM_SLEEP);
usr/src/uts/common/os/fork.c
995
cp = kmem_cache_alloc(process_cache, KM_SLEEP);
usr/src/uts/common/os/ftrace.c
203
sizeof (ftrace_record_t), KM_SLEEP);
usr/src/uts/common/os/group.c
173
g->grp_set = kmem_zalloc(cap_new * sizeof (void *), KM_SLEEP);
usr/src/uts/common/os/group.c
180
set_new = kmem_zalloc(cap_new * sizeof (void *), KM_SLEEP);
usr/src/uts/common/os/group.c
217
set_new = kmem_zalloc(cap_new * sizeof (void *), KM_SLEEP);
usr/src/uts/common/os/inst_sync.c
226
fp = kmem_zalloc(sizeof (File), KM_SLEEP);
usr/src/uts/common/os/instance.c
1209
KM_SLEEP);
usr/src/uts/common/os/instance.c
1239
cp = kmem_zalloc(sizeof (in_drv_t) + namelen, KM_SLEEP);
usr/src/uts/common/os/instance.c
1566
path = kmem_zalloc(MAXPATHLEN, KM_SLEEP);
usr/src/uts/common/os/instance.c
445
path = kmem_alloc(MAXPATHLEN, KM_SLEEP);
usr/src/uts/common/os/instance.c
506
ipath = kmem_alloc(MAXPATHLEN, KM_SLEEP);
usr/src/uts/common/os/ipc.c
1021
perm = kmem_zalloc(service->ipcs_ssize, KM_SLEEP);
usr/src/uts/common/os/ipc.c
1300
ids = kmem_alloc(idsize, KM_SLEEP);
usr/src/uts/common/os/ipc.c
646
result = kmem_alloc(sizeof (ipc_service_t), KM_SLEEP);
usr/src/uts/common/os/ipc.c
653
kmem_zalloc(IPC_IDS_MIN * sizeof (ipc_slot_t), KM_SLEEP);
usr/src/uts/common/os/kcpc.c
1410
cctx = kcpc_ctx_alloc(KM_SLEEP);
usr/src/uts/common/os/kcpc.c
1705
picnum_save = kmem_alloc(set->ks_nreqs * sizeof (int), KM_SLEEP);
usr/src/uts/common/os/kcpc.c
1799
new = kmem_zalloc(sizeof (*new), KM_SLEEP);
usr/src/uts/common/os/kcpc.c
1804
KM_SLEEP);
usr/src/uts/common/os/kcpc.c
1820
sizeof (kcpc_attr_t), KM_SLEEP);
usr/src/uts/common/os/kcpc.c
188
ctx = kcpc_ctx_alloc(KM_SLEEP);
usr/src/uts/common/os/kcpc.c
199
set->ks_data = kmem_zalloc(set->ks_nreqs * sizeof (uint64_t), KM_SLEEP);
usr/src/uts/common/os/kcpc.c
287
ctx = kcpc_ctx_alloc(KM_SLEEP);
usr/src/uts/common/os/kcpc.c
316
set->ks_data = kmem_alloc(set->ks_nreqs * sizeof (uint64_t), KM_SLEEP);
usr/src/uts/common/os/kcpc.c
829
cpc_ncounters, KM_SLEEP);
usr/src/uts/common/os/kcpc.c
852
cks = kmem_zalloc(sizeof (*cks), KM_SLEEP);
usr/src/uts/common/os/kcpc.c
858
sizeof (kcpc_request_t), KM_SLEEP);
usr/src/uts/common/os/kcpc.c
860
KM_SLEEP);
usr/src/uts/common/os/kcpc.c
874
sizeof (kcpc_attr_t), KM_SLEEP);
usr/src/uts/common/os/kiconv.c
102
s = (kiconv_state_t)kmem_alloc(sizeof (kiconv_state_data_t), KM_SLEEP);
usr/src/uts/common/os/kiconv.c
114
s = (kiconv_state_t)kmem_alloc(sizeof (kiconv_state_data_t), KM_SLEEP);
usr/src/uts/common/os/kiconv.c
1255
kcd = (kiconv_t)kmem_alloc(sizeof (kiconv_data_t), KM_SLEEP);
usr/src/uts/common/os/kiconv.c
78
s = (kiconv_state_t)kmem_alloc(sizeof (kiconv_state_data_t), KM_SLEEP);
usr/src/uts/common/os/kiconv.c
90
s = (kiconv_state_t)kmem_alloc(sizeof (kiconv_state_data_t), KM_SLEEP);
usr/src/uts/common/os/klpd.c
1024
pap = kmem_zalloc(pasize, KM_SLEEP);
usr/src/uts/common/os/klpd.c
1113
pap = kmem_zalloc(pasize, KM_SLEEP);
usr/src/uts/common/os/klpd.c
208
khp = kmem_zalloc(len, KM_SLEEP);
usr/src/uts/common/os/klpd.c
225
khp = kmem_zalloc(len, KM_SLEEP);
usr/src/uts/common/os/klpd.c
267
khp = kmem_zalloc(len, KM_SLEEP);
usr/src/uts/common/os/klpd.c
507
kpd = kmem_zalloc(sizeof (*kpd), KM_SLEEP);
usr/src/uts/common/os/klpd.c
697
credklpd_t *res = kmem_alloc(sizeof (*res), KM_SLEEP);
usr/src/uts/common/os/klpd.c
742
pfx = kmem_zalloc(sizeof (*pfx), KM_SLEEP);
usr/src/uts/common/os/klpd.c
878
pap = kmem_zalloc(pasize, KM_SLEEP);
usr/src/uts/common/os/kmem.c
2264
kmem_dump_start = kmem_alloc(size, KM_SLEEP);
usr/src/uts/common/os/kmem.c
2897
if (kmflag != KM_SLEEP && !(kmflag & KM_PANIC))
usr/src/uts/common/os/kmem.c
4079
defrag = kmem_cache_alloc(kmem_defrag_cache, KM_SLEEP);
usr/src/uts/common/os/ksensor.c
456
k = kmem_zalloc(sizeof (ksensor_dip_t), KM_SLEEP);
usr/src/uts/common/os/ksensor.c
519
sensor = kmem_zalloc(sizeof (ksensor_t), KM_SLEEP);
usr/src/uts/common/os/ksensor.c
521
sensor->ksensor_name = ddi_strdup(name, KM_SLEEP);
usr/src/uts/common/os/ksensor.c
522
sensor->ksensor_class = ddi_strdup(class, KM_SLEEP);
usr/src/uts/common/os/labelsys.c
1222
tpc_unlab = tnrhtp_create(&rhtpent, KM_SLEEP);
usr/src/uts/common/os/labelsys.c
1235
new = kmem_zalloc(sizeof (*new), KM_SLEEP);
usr/src/uts/common/os/labelsys.c
140
NULL, mod_hash_strkey_cmp, KM_SLEEP);
usr/src/uts/common/os/labelsys.c
149
(void) tnrhc_init_table(tnrhc_table, 0, KM_SLEEP);
usr/src/uts/common/os/labelsys.c
150
(void) tnrhc_init_table(tnrhc_table_v6, 0, KM_SLEEP);
usr/src/uts/common/os/lgrp.c
3925
KM_SLEEP);
usr/src/uts/common/os/lgrp.c
3956
shm_locality = kmem_alloc(sizeof (*shm_locality), KM_SLEEP);
usr/src/uts/common/os/lgrp.c
4117
newseg = kmem_alloc(sizeof (lgrp_shm_policy_seg_t), KM_SLEEP);
usr/src/uts/common/os/lgrp.c
4209
tree = kmem_alloc(sizeof (avl_tree_t), KM_SLEEP);
usr/src/uts/common/os/lgrp.c
4247
KM_SLEEP);
usr/src/uts/common/os/log_sysevent.c
1128
KM_SLEEP);
usr/src/uts/common/os/log_sysevent.c
1130
sc_list->sl_name = kmem_zalloc(subclass_sz, KM_SLEEP);
usr/src/uts/common/os/log_sysevent.c
1238
if (nvlist_unpack(nvlbuf, nvlsize, &nvl, KM_SLEEP) != 0)
usr/src/uts/common/os/log_sysevent.c
1317
KM_SLEEP)
usr/src/uts/common/os/log_sysevent.c
1356
kchannel = kmem_alloc(kdata.ps_channel_name_len, KM_SLEEP);
usr/src/uts/common/os/log_sysevent.c
1363
databuf = kmem_alloc(bufsz, KM_SLEEP);
usr/src/uts/common/os/log_sysevent.c
1832
qcopy = kmem_zalloc(copy_sz, KM_SLEEP);
usr/src/uts/common/os/log_sysevent.c
1894
(sleep_flag == DDI_SLEEP) ? KM_SLEEP : KM_NOSLEEP);
usr/src/uts/common/os/log_sysevent.c
453
(void) nvlist_alloc(&cache->ln_data, NV_UNIQUE_NAME, KM_SLEEP);
usr/src/uts/common/os/log_sysevent.c
895
c_list = kmem_zalloc(sizeof (class_lst_t), KM_SLEEP);
usr/src/uts/common/os/log_sysevent.c
896
c_list->cl_name = kmem_zalloc(class_len, KM_SLEEP);
usr/src/uts/common/os/log_sysevent.c
900
kmem_zalloc(sizeof (subclass_lst_t), KM_SLEEP);
usr/src/uts/common/os/log_sysevent.c
902
kmem_zalloc(sizeof (EC_SUB_ALL), KM_SLEEP);
usr/src/uts/common/os/log_sysevent.c
967
chan = kmem_zalloc(sizeof (sysevent_channel_descriptor_t), KM_SLEEP);
usr/src/uts/common/os/logsubr.c
138
q = kmem_zalloc(sizeof (queue_t), KM_SLEEP);
usr/src/uts/common/os/logsubr.c
161
lzp = kmem_zalloc(sizeof (log_zone_t), KM_SLEEP);
usr/src/uts/common/os/logsubr.c
294
lp = kmem_cache_alloc(log_cons_cache, KM_SLEEP);
usr/src/uts/common/os/lwp.c
1926
val = CL_ALLOC(&bufp, cid, KM_SLEEP);
usr/src/uts/common/os/lwp.c
258
lwp = kmem_cache_alloc(lwp_cache, KM_SLEEP);
usr/src/uts/common/os/lwp.c
276
t->t_rprof = kmem_zalloc(sizeof (struct rprof), KM_SLEEP);
usr/src/uts/common/os/lwp.c
279
(void) CL_ALLOC(&bufp, cid, KM_SLEEP);
usr/src/uts/common/os/lwp.c
284
lep = kmem_zalloc(sizeof (*lep), KM_SLEEP);
usr/src/uts/common/os/lwp.c
344
KM_SLEEP);
usr/src/uts/common/os/lwp.c
351
new_dir = kmem_zalloc(new_dirsz * sizeof (lwpdir_t), KM_SLEEP);
usr/src/uts/common/os/lwp.c
356
KM_SLEEP);
usr/src/uts/common/os/main.c
168
scratchargs = kmem_alloc(alen, KM_SLEEP);
usr/src/uts/common/os/main.c
187
argv = kmem_zalloc(argvlen, KM_SLEEP);
usr/src/uts/common/os/main.c
245
argv32 = kmem_zalloc(argvlen / 2, KM_SLEEP);
usr/src/uts/common/os/mem_config.c
1060
mdsp = kmem_zalloc(sizeof (struct memdelspan), KM_SLEEP);
usr/src/uts/common/os/mem_config.c
1780
mdsp->mds_bitmap = kmem_zalloc(MDS_BITMAPBYTES(mdsp), KM_SLEEP);
usr/src/uts/common/os/mem_config.c
1782
KM_SLEEP);
usr/src/uts/common/os/mem_config.c
2542
pp_dummy_npages, KM_SLEEP);
usr/src/uts/common/os/mem_config.c
3264
seg = kmem_cache_alloc(memseg_cache, KM_SLEEP);
usr/src/uts/common/os/mem_config.c
772
mhp = kmem_zalloc(sizeof (struct mem_handle), KM_SLEEP);
usr/src/uts/common/os/mem_config.c
917
mdsp = kmem_zalloc(sizeof (struct memdelspan), KM_SLEEP);
usr/src/uts/common/os/mmapobj.c
2028
phbasep = kmem_alloc(phsizep, KM_SLEEP);
usr/src/uts/common/os/mmapobj.c
390
lvp = kmem_alloc(sizeof (struct lib_va), KM_SLEEP);
usr/src/uts/common/os/modconf.c
1047
kmem_alloc(sizeof (vopstats_t), KM_SLEEP);
usr/src/uts/common/os/modctl.c
1006
pathbuf = kmem_alloc(MAXPATHLEN, KM_SLEEP);
usr/src/uts/common/os/modctl.c
1012
devpath = i_ddi_strdup(pathbuf, KM_SLEEP);
usr/src/uts/common/os/modctl.c
1029
constraints = kmem_alloc(ulen, KM_SLEEP);
usr/src/uts/common/os/modctl.c
1085
pathbuf = kmem_alloc(MAXPATHLEN, KM_SLEEP);
usr/src/uts/common/os/modctl.c
1091
devpath = i_ddi_strdup(pathbuf, KM_SLEEP);
usr/src/uts/common/os/modctl.c
1115
pathbuf = kmem_alloc(MAXPATHLEN, KM_SLEEP);
usr/src/uts/common/os/modctl.c
1121
devpath = i_ddi_strdup(pathbuf, KM_SLEEP);
usr/src/uts/common/os/modctl.c
1291
devid = kmem_alloc(devid_len, KM_SLEEP);
usr/src/uts/common/os/modctl.c
1299
devid = kmem_alloc(devid_len, KM_SLEEP);
usr/src/uts/common/os/modctl.c
1310
minor_name = kmem_alloc(MAXPATHLEN, KM_SLEEP);
usr/src/uts/common/os/modctl.c
1340
path = kmem_alloc(MAXPATHLEN, KM_SLEEP);
usr/src/uts/common/os/modctl.c
1479
name = kmem_zalloc(MAXPATHLEN, KM_SLEEP);
usr/src/uts/common/os/modctl.c
1506
name = kmem_zalloc(MAXPATHLEN, KM_SLEEP);
usr/src/uts/common/os/modctl.c
1537
name = kmem_zalloc(MAXPATHLEN, KM_SLEEP);
usr/src/uts/common/os/modctl.c
1566
name = kmem_zalloc(MAXPATHLEN, KM_SLEEP);
usr/src/uts/common/os/modctl.c
1598
pathname = kmem_zalloc(MAXPATHLEN, KM_SLEEP);
usr/src/uts/common/os/modctl.c
1620
filename = kmem_zalloc(MAXPATHLEN, KM_SLEEP);
usr/src/uts/common/os/modctl.c
1661
filenamep = kmem_zalloc(MOD_MAXPATH, KM_SLEEP);
usr/src/uts/common/os/modctl.c
1855
mp = kmem_zalloc(sizeof (*mp), KM_SLEEP);
usr/src/uts/common/os/modctl.c
1891
i_ddi_strdup(minor, KM_SLEEP);
usr/src/uts/common/os/modctl.c
1941
char *buf = kmem_alloc(buflen, KM_SLEEP);
usr/src/uts/common/os/modctl.c
1948
error = nvlist_unpack(buf, buflen, &nvl, KM_SLEEP);
usr/src/uts/common/os/modctl.c
197
devopsp = kmem_alloc(devcnt * sizeof (struct dev_ops *), KM_SLEEP);
usr/src/uts/common/os/modctl.c
1985
pe = kmem_zalloc(sizeof (*pe), KM_SLEEP);
usr/src/uts/common/os/modctl.c
1986
pe->pe_dir = i_ddi_strdup((char *)path, KM_SLEEP);
usr/src/uts/common/os/modctl.c
2017
drvname = kmem_alloc(MAXMODCONFNAME, KM_SLEEP);
usr/src/uts/common/os/modctl.c
2037
wargs = kmem_zalloc(sizeof (*wargs), KM_SLEEP);
usr/src/uts/common/os/modctl.c
2092
wargs = kmem_zalloc(sizeof (*wargs), KM_SLEEP);
usr/src/uts/common/os/modctl.c
2099
path = kmem_alloc(MAXPATHLEN, KM_SLEEP);
usr/src/uts/common/os/modctl.c
2131
char *pstr = kmem_alloc(PRIVNAME_MAX, KM_SLEEP);
usr/src/uts/common/os/modctl.c
2159
path = kmem_zalloc(pathlen + 1, KM_SLEEP);
usr/src/uts/common/os/modctl.c
216
devimpl = kmem_zalloc(devcnt * sizeof (cdevsw_impl_t), KM_SLEEP);
usr/src/uts/common/os/modctl.c
2203
dir = kmem_zalloc(udirlen + 1, KM_SLEEP);
usr/src/uts/common/os/modctl.c
2225
paths = kmem_alloc(lens, KM_SLEEP);
usr/src/uts/common/os/modctl.c
2271
dir = kmem_zalloc(udirlen + 1, KM_SLEEP);
usr/src/uts/common/os/modctl.c
2302
devpath = kmem_zalloc(MAXPATHLEN, KM_SLEEP);
usr/src/uts/common/os/modctl.c
2309
cn_name_str = kmem_zalloc(MAXNAMELEN, KM_SLEEP);
usr/src/uts/common/os/modctl.c
247
kobj_zalloc(sizeof (krwlock_t), KM_SLEEP);
usr/src/uts/common/os/modctl.c
2692
fullname = kmem_zalloc(size, KM_SLEEP);
usr/src/uts/common/os/modctl.c
2764
dotv = kmem_alloc(sizeof (char *) * (suffc + 1), KM_SLEEP);
usr/src/uts/common/os/modctl.c
2815
fullname = kmem_zalloc(size, KM_SLEEP);
usr/src/uts/common/os/modctl.c
283
kobj_zalloc(sizeof (krwlock_t), KM_SLEEP);
usr/src/uts/common/os/modctl.c
3333
mp = kobj_zalloc(sizeof (*mp), KM_SLEEP);
usr/src/uts/common/os/modctl.c
3334
mp->mod_modname = kobj_zalloc(strlen(modname) + 1, KM_SLEEP);
usr/src/uts/common/os/modctl.c
345
kobj_zalloc(sizeof (krwlock_t), KM_SLEEP);
usr/src/uts/common/os/modctl.c
3492
modinfop = kmem_zalloc(sizeof (struct modinfo), KM_SLEEP);
usr/src/uts/common/os/modctl.c
363
filenamep = kmem_zalloc(MOD_MAXPATH, KM_SLEEP);
usr/src/uts/common/os/modctl.c
4130
newname = kobj_zalloc(strlen(filename) + 1, KM_SLEEP);
usr/src/uts/common/os/modctl.c
4312
new = kobj_zalloc(sizeof (*new), KM_SLEEP);
usr/src/uts/common/os/modctl.c
4368
KM_SLEEP);
usr/src/uts/common/os/modctl.c
4637
alias = i_ddi_strdup(dmd->ddm_name, KM_SLEEP);
usr/src/uts/common/os/modctl.c
4798
subdir = kmem_alloc(subdirlen, KM_SLEEP);
usr/src/uts/common/os/modctl.c
569
mc.num_aliases * sizeof (struct alias_info), KM_SLEEP);
usr/src/uts/common/os/modctl.c
797
modpath_copy = i_ddi_strdup(default_path, KM_SLEEP);
usr/src/uts/common/os/modctl.c
808
pathvfs = kmem_zalloc(n_modpath * sizeof (struct pathvfs), KM_SLEEP);
usr/src/uts/common/os/modctl.c
978
array = kmem_alloc((n + 1) * sizeof (char *), KM_SLEEP);
usr/src/uts/common/os/modctl.c
981
array[i] = i_ddi_strdup(p, KM_SLEEP);
usr/src/uts/common/os/modhash.c
247
val_dtor, mod_hash_bystr, NULL, mod_hash_strkey_cmp, KM_SLEEP);
usr/src/uts/common/os/modhash.c
313
KM_SLEEP);
usr/src/uts/common/os/modhash.c
389
mod_hash_idkey_cmp, KM_SLEEP));
usr/src/uts/common/os/modsubr.c
1025
spec = kmem_zalloc(sizeof (*spec), KM_SLEEP);
usr/src/uts/common/os/modsubr.c
1027
entry->hwc_devi_name, KM_SLEEP);
usr/src/uts/common/os/modsubr.c
1030
entry->hwc_devi_sys_prop_ptr, KM_SLEEP);
usr/src/uts/common/os/modsubr.c
1062
pathname_buf = kmem_alloc(3 * MAXPATHLEN, KM_SLEEP);
usr/src/uts/common/os/modsubr.c
391
confname = kmem_alloc(MAXNAMELEN, KM_SLEEP);
usr/src/uts/common/os/modsubr.c
550
mb = kmem_zalloc(sizeof (struct bind), KM_SLEEP);
usr/src/uts/common/os/modsubr.c
551
mb->b_name = i_ddi_strdup(name, KM_SLEEP);
usr/src/uts/common/os/modsubr.c
554
mb->b_bind_name = i_ddi_strdup(bind_name, KM_SLEEP);
usr/src/uts/common/os/modsubr.c
672
devnamesp = kobj_zalloc(size * sizeof (struct devnames), KM_SLEEP);
usr/src/uts/common/os/modsubr.c
739
copy = kmem_alloc(strlen(name) + 1, KM_SLEEP);
usr/src/uts/common/os/modsubr.c
759
syscallnames = kobj_zalloc(size * sizeof (char *), KM_SLEEP);
usr/src/uts/common/os/modsubr.c
787
*cp = kmem_alloc(strlen(name) + 1, KM_SLEEP);
usr/src/uts/common/os/modsubr.c
877
key = kmem_alloc(strlen(name) + 1, KM_SLEEP);
usr/src/uts/common/os/modsubr.c
922
key = kmem_alloc(strlen(name) + 1, KM_SLEEP);
usr/src/uts/common/os/modsysfile.c
161
char *buf = kmem_alloc(FE_BUFLEN, KM_SLEEP);
usr/src/uts/common/os/modsysfile.c
1614
new_val = kmem_alloc(sizeof (struct val_list), KM_SLEEP);
usr/src/uts/common/os/modsysfile.c
1618
new_val->val.string = kmem_alloc(new_val->val_size, KM_SLEEP);
usr/src/uts/common/os/modsysfile.c
162
char *trailer = kmem_alloc(FE_BUFLEN, KM_SLEEP);
usr/src/uts/common/os/modsysfile.c
163
char *fmt_str = kmem_alloc(FE_BUFLEN, KM_SLEEP);
usr/src/uts/common/os/modsysfile.c
1707
(propcnt * sizeof (int)), KM_SLEEP);
usr/src/uts/common/os/modsysfile.c
1731
((propcnt + 1) * sizeof (char *)), KM_SLEEP);
usr/src/uts/common/os/modsysfile.c
1803
hwcp = kmem_zalloc(sizeof (*hwcp), KM_SLEEP);
usr/src/uts/common/os/modsysfile.c
1804
devi = kmem_zalloc(sizeof (*devi), KM_SLEEP);
usr/src/uts/common/os/modsysfile.c
1845
1, KM_SLEEP);
usr/src/uts/common/os/modsysfile.c
1850
1, KM_SLEEP);
usr/src/uts/common/os/modsysfile.c
1885
KM_SLEEP);
usr/src/uts/common/os/modsysfile.c
1896
(tokbuf) + 1, KM_SLEEP);
usr/src/uts/common/os/modsysfile.c
1906
strlen(tokbuf) + 1, KM_SLEEP);
usr/src/uts/common/os/modsysfile.c
2062
struct hwc_parse_mt *pltp = kmem_zalloc(sizeof (*pltp), KM_SLEEP);
usr/src/uts/common/os/modsysfile.c
2066
pltp->name = kmem_alloc(strlen(name) + 1, KM_SLEEP);
usr/src/uts/common/os/modsysfile.c
2113
tokval = kmem_alloc(MAX_HWC_LINESIZE, KM_SLEEP);
usr/src/uts/common/os/modsysfile.c
2350
name = kmem_alloc(strlen(tokbuf) + 1, KM_SLEEP);
usr/src/uts/common/os/modsysfile.c
2362
KM_SLEEP);
usr/src/uts/common/os/modsysfile.c
2810
hcl = kmem_zalloc(sizeof (struct hwc_class), KM_SLEEP);
usr/src/uts/common/os/modsysfile.c
2811
hcl->class_exporter = kmem_alloc(strlen(exporter) + 1, KM_SLEEP);
usr/src/uts/common/os/modsysfile.c
2812
hcl->class_name = kmem_alloc(strlen(class) + 1, KM_SLEEP);
usr/src/uts/common/os/modsysfile.c
2888
name = kmem_alloc(strlen(tokbuf) + 1, KM_SLEEP);
usr/src/uts/common/os/modsysfile.c
3019
strlen(tokbuf) + 1), KM_SLEEP);
usr/src/uts/common/os/modsysfile.c
3255
pl = kmem_zalloc(sizeof (*pl), KM_SLEEP);
usr/src/uts/common/os/msg.c
1023
sizeof (struct msg *), KM_SLEEP);
usr/src/uts/common/os/msg.c
1134
mp = kmem_zalloc(sizeof (struct msg), KM_SLEEP);
usr/src/uts/common/os/msg.c
1138
mp->msg_addr = kmem_alloc(msgsz, KM_SLEEP);
usr/src/uts/common/os/msg.c
1201
mp = kmem_zalloc(sizeof (struct msg), KM_SLEEP);
usr/src/uts/common/os/msg.c
1202
mp->msg_addr = kmem_alloc(msgsz, KM_SLEEP);
usr/src/uts/common/os/ndifm.c
186
fcp = kmem_zalloc(sizeof (ndi_fmc_t), KM_SLEEP);
usr/src/uts/common/os/netstack.c
1242
sz = (struct shared_zone_list *)kmem_zalloc(sizeof (*sz), KM_SLEEP);
usr/src/uts/common/os/netstack.c
1299
sk = (struct shared_kstat_list *)kmem_zalloc(sizeof (*sk), KM_SLEEP);
usr/src/uts/common/os/netstack.c
346
ns = (netstack_t *)kmem_zalloc(sizeof (netstack_t), KM_SLEEP);
usr/src/uts/common/os/nvpair_alloc_system.c
53
(void *)KM_SLEEP
usr/src/uts/common/os/pcifm.c
369
KM_SLEEP);
usr/src/uts/common/os/pcifm.c
378
KM_SLEEP);
usr/src/uts/common/os/pcifm.c
385
KM_SLEEP);
usr/src/uts/common/os/pcifm.c
392
sizeof (pcix_ecc_regs_t), KM_SLEEP);
usr/src/uts/common/os/pcifm.c
428
erpt_p = kmem_zalloc(sizeof (pci_erpt_t), KM_SLEEP);
usr/src/uts/common/os/pcifm.c
433
erpt_p->pe_pci_regs = kmem_zalloc(sizeof (pci_error_regs_t), KM_SLEEP);
usr/src/uts/common/os/pcifm.c
455
sizeof (pci_bdg_error_regs_t), KM_SLEEP);
usr/src/uts/common/os/pg.c
307
pg_classes = kmem_zalloc(sizeof (pg_class_t), KM_SLEEP);
usr/src/uts/common/os/pg.c
312
KM_SLEEP);
usr/src/uts/common/os/pg.c
519
pgd = kmem_zalloc(sizeof (cpu_pg_t), KM_SLEEP);
usr/src/uts/common/os/pg.c
771
return (kmem_zalloc(sizeof (pg_t), KM_SLEEP));
usr/src/uts/common/os/pghw.c
375
cp->cpu_physid = kmem_alloc(sizeof (cpu_physid_t), KM_SLEEP);
usr/src/uts/common/os/pghw.c
408
pg_hw = kmem_alloc(sizeof (group_t), KM_SLEEP);
usr/src/uts/common/os/pghw.c
417
g = kmem_alloc(sizeof (group_t), KM_SLEEP);
usr/src/uts/common/os/pid.c
168
pidp = kmem_zalloc(sizeof (struct pid), KM_SLEEP);
usr/src/uts/common/os/pid.c
566
pidhash = kmem_zalloc(sizeof (struct pid *) * pid_hashsz, KM_SLEEP);
usr/src/uts/common/os/pid.c
567
procdir = kmem_alloc(sizeof (union procent) * v.v_proc, KM_SLEEP);
usr/src/uts/common/os/pid.c
568
pr_pid_cv = kmem_zalloc(sizeof (kcondvar_t) * v.v_proc, KM_SLEEP);
usr/src/uts/common/os/pid.c
569
proc_lock = kmem_zalloc(sizeof (struct plock) * v.v_proc, KM_SLEEP);
usr/src/uts/common/os/pid.c
718
KM_SLEEP);
usr/src/uts/common/os/pid.c
759
KM_SLEEP);
usr/src/uts/common/os/pool.c
1125
(void) nvlist_alloc(&nvl, NV_UNIQUE_NAME, KM_SLEEP);
usr/src/uts/common/os/pool.c
1249
bufs = kmem_zalloc(nlwp * sizeof (void *), KM_SLEEP);
usr/src/uts/common/os/pool.c
1251
ret = CL_ALLOC(buf, cid, KM_SLEEP);
usr/src/uts/common/os/pool.c
1392
procs = kmem_zalloc(procs_size * sizeof (proc_t *), KM_SLEEP);
usr/src/uts/common/os/pool.c
1403
KM_SLEEP);
usr/src/uts/common/os/pool.c
174
pool_default = kmem_zalloc(sizeof (pool_t), KM_SLEEP);
usr/src/uts/common/os/pool.c
1791
tqd = kmem_alloc(sizeof (*tqd), KM_SLEEP);
usr/src/uts/common/os/pool.c
1796
KM_SLEEP);
usr/src/uts/common/os/pool.c
299
(void) nvlist_alloc(&pool_sys_prop, NV_UNIQUE_NAME, KM_SLEEP);
usr/src/uts/common/os/pool.c
309
NV_UNIQUE_NAME, KM_SLEEP);
usr/src/uts/common/os/pool.c
409
pool = kmem_zalloc(sizeof (pool_t), KM_SLEEP);
usr/src/uts/common/os/pool.c
414
(void) nvlist_alloc(&pool->pool_props, NV_UNIQUE_NAME, KM_SLEEP);
usr/src/uts/common/os/pool.c
877
pool_buf = kmem_alloc(pool_bufsz, KM_SLEEP);
usr/src/uts/common/os/pool_pset.c
193
pool_pset_default = kmem_zalloc(sizeof (pool_pset_t), KM_SLEEP);
usr/src/uts/common/os/pool_pset.c
269
NV_UNIQUE_NAME, KM_SLEEP);
usr/src/uts/common/os/pool_pset.c
349
pset = kmem_alloc(sizeof (pool_pset_t), KM_SLEEP);
usr/src/uts/common/os/pool_pset.c
352
(void) nvlist_alloc(&pset->pset_props, NV_UNIQUE_NAME, KM_SLEEP);
usr/src/uts/common/os/pool_pset.c
793
NV_UNIQUE_NAME, KM_SLEEP);
usr/src/uts/common/os/pool_pset.c
887
NV_UNIQUE_NAME, KM_SLEEP);
usr/src/uts/common/os/pool_pset.c
891
(void) nvlist_dup(cpu->cpu_props, &nvl, KM_SLEEP);
usr/src/uts/common/os/pool_pset.c
906
(void) nvlist_dup(pset->pset_props, &nvl, KM_SLEEP);
usr/src/uts/common/os/port_subr.c
357
kmem_cache_alloc(port_control.pc_cache, KM_SLEEP);
usr/src/uts/common/os/proc.c
47
pctx = kmem_alloc(sizeof (struct pctxop), KM_SLEEP);
usr/src/uts/common/os/project.c
1113
kpk = ksp->ks_data = kmem_alloc(sizeof (kproject_kstat_t), KM_SLEEP);
usr/src/uts/common/os/project.c
243
spare_p = kmem_zalloc(sizeof (kproject_t), KM_SLEEP);
usr/src/uts/common/os/project.c
937
project_hash_key_cmp, KM_SLEEP);
usr/src/uts/common/os/rctl.c
1030
rctl_set_t *rset = kmem_zalloc(sizeof (rctl_set_t), KM_SLEEP);
usr/src/uts/common/os/rctl.c
1034
KM_SLEEP);
usr/src/uts/common/os/rctl.c
1059
rctl_alloc_gp_t *ragp = kmem_zalloc(sizeof (rctl_alloc_gp_t), KM_SLEEP);
usr/src/uts/common/os/rctl.c
1200
rctl_alloc_gp_t *ragp = kmem_zalloc(sizeof (rctl_alloc_gp_t), KM_SLEEP);
usr/src/uts/common/os/rctl.c
2154
rctl_alloc_gp_t *gp = kmem_zalloc(sizeof (rctl_alloc_gp_t), KM_SLEEP);
usr/src/uts/common/os/rctl.c
2331
rctl_t *rctl = kmem_cache_alloc(rctl_cache, KM_SLEEP);
usr/src/uts/common/os/rctl.c
2332
rctl_val_t *rctl_val = kmem_cache_alloc(rctl_val_cache, KM_SLEEP);
usr/src/uts/common/os/rctl.c
2334
KM_SLEEP);
usr/src/uts/common/os/rctl.c
2571
sqp = kmem_zalloc(sizeof (sigqueue_t), KM_SLEEP);
usr/src/uts/common/os/rctl.c
2859
rctl_dict_hash_by_id, NULL, rctl_dict_id_cmp, KM_SLEEP);
usr/src/uts/common/os/rctl.c
332
rbufloc = *rbufp = kmem_alloc(req_size, KM_SLEEP);
usr/src/uts/common/os/rctl.c
474
dval = kmem_cache_alloc(rctl_val_cache, KM_SLEEP);
usr/src/uts/common/os/rctl.c
587
rctl_t *prev = kmem_cache_alloc(rctl_cache, KM_SLEEP);
usr/src/uts/common/os/rctl.c
593
rctl = kmem_cache_alloc(rctl_cache, KM_SLEEP);
usr/src/uts/common/os/rctl.c
602
rctl_val_t *prev = kmem_cache_alloc(rctl_val_cache, KM_SLEEP);
usr/src/uts/common/os/rctl.c
608
rval = kmem_cache_alloc(rctl_val_cache, KM_SLEEP);
usr/src/uts/common/os/refstr.c
42
rsp = kmem_alloc(size, KM_SLEEP);
usr/src/uts/common/os/retire_store.c
231
rsp = kmem_zalloc(sizeof (rio_store_t), KM_SLEEP);
usr/src/uts/common/os/retire_store.c
232
rsp->rst_devpath = i_ddi_strdup(name, KM_SLEEP);
usr/src/uts/common/os/retire_store.c
260
rval = nvlist_alloc(&nvl, NV_UNIQUE_NAME, KM_SLEEP);
usr/src/uts/common/os/retire_store.c
273
rval = nvlist_alloc(&line_nvl, NV_UNIQUE_NAME, KM_SLEEP);
usr/src/uts/common/os/retire_store.c
327
new_rsp = kmem_zalloc(sizeof (*new_rsp), KM_SLEEP);
usr/src/uts/common/os/retire_store.c
328
new_rsp->rst_devpath = new_path = i_ddi_strdup(devpath, KM_SLEEP);
usr/src/uts/common/os/schedctl.c
530
pagep = kmem_alloc(sizeof (sc_page_ctl_t), KM_SLEEP);
usr/src/uts/common/os/schedctl.c
537
KM_SLEEP);
usr/src/uts/common/os/session.c
203
sp = kmem_zalloc(sizeof (sess_t), KM_SLEEP);
usr/src/uts/common/os/share.c
218
shrl = kmem_alloc(sizeof (struct shrlocklist), KM_SLEEP);
usr/src/uts/common/os/share.c
219
shrl->shr = kmem_alloc(sizeof (struct shrlock), KM_SLEEP);
usr/src/uts/common/os/share.c
231
shrl->shr->s_owner = kmem_alloc(shr->s_own_len, KM_SLEEP);
usr/src/uts/common/os/shm.c
1032
nsap = kmem_alloc(sizeof (segacct_t), KM_SLEEP);
usr/src/uts/common/os/shm.c
1039
tree = kmem_alloc(sizeof (avl_tree_t), KM_SLEEP);
usr/src/uts/common/os/shm.c
310
sp->shm_sptinfo = kmem_zalloc(sizeof (sptinfo_t), KM_SLEEP);
usr/src/uts/common/os/sid.c
322
credsid_t *kcr = kmem_zalloc(sizeof (*kcr), KM_SLEEP);
usr/src/uts/common/os/sid.c
505
KM_SLEEP);
usr/src/uts/common/os/sid.c
526
list = kmem_zalloc(KSIDLIST_MEM(ngrp), KM_SLEEP);
usr/src/uts/common/os/sid.c
63
res = kmem_alloc(sizeof (ksiddomain_t), KM_SLEEP);
usr/src/uts/common/os/sid.c
65
res->kd_name = kmem_alloc(len, KM_SLEEP);
usr/src/uts/common/os/sig.c
1034
sqp = kmem_zalloc(sizeof (sigqueue_t), KM_SLEEP);
usr/src/uts/common/os/sig.c
1805
sqp = kmem_zalloc(sizeof (sigqueue_t), KM_SLEEP);
usr/src/uts/common/os/sig.c
2410
sqh = kmem_alloc(i, KM_SLEEP);
usr/src/uts/common/os/sig.c
2450
sq = kmem_alloc(sizeof (sigqueue_t), KM_SLEEP);
usr/src/uts/common/os/sig.c
2559
sigqueue_t *sqp = kmem_zalloc(sizeof (sigqueue_t), KM_SLEEP);
usr/src/uts/common/os/sig.c
387
sqp = kmem_zalloc(sizeof (sigqueue_t), KM_SLEEP);
usr/src/uts/common/os/smb_subr.c
48
return (len > 0 ? kmem_alloc(len, KM_SLEEP) : NULL);
usr/src/uts/common/os/smb_subr.c
54
return (len > 0 ? kmem_zalloc(len, KM_SLEEP) : NULL);
usr/src/uts/common/os/softint.c
184
softcalls = kmem_zalloc(sizeof (softcall_t) * NSOFTCALLS, KM_SLEEP);
usr/src/uts/common/os/softint.c
185
softcall_cpuset = kmem_zalloc(sizeof (cpuset_t), KM_SLEEP);
usr/src/uts/common/os/space.c
258
s = kmem_alloc(l, KM_SLEEP);
usr/src/uts/common/os/streamio.c
1049
uiod.d_iov = kmem_alloc(iovlen, KM_SLEEP);
usr/src/uts/common/os/streamio.c
2711
uiod.d_iov = (struct iovec *)kmem_alloc(iovlen, KM_SLEEP);
usr/src/uts/common/os/streamio.c
4761
ssp = kmem_alloc(sizeof (strsig_t), KM_SLEEP);
usr/src/uts/common/os/streamio.c
4917
ssp = kmem_alloc(sizeof (strsig_t), KM_SLEEP);
usr/src/uts/common/os/strext.c
163
buf = kmem_alloc(size, KM_SLEEP);
usr/src/uts/common/os/strsubr.c
1522
linkp = kmem_cache_alloc(linkinfo_cache, KM_SLEEP);
usr/src/uts/common/os/strsubr.c
2306
ep->me_nextp = kmem_alloc(sizeof (struct mux_edge), KM_SLEEP);
usr/src/uts/common/os/strsubr.c
2309
np->mn_outp = kmem_alloc(sizeof (struct mux_edge), KM_SLEEP);
usr/src/uts/common/os/strsubr.c
2696
dmp = kmem_alloc(sizeof (perdm_t), KM_SLEEP);
usr/src/uts/common/os/strsubr.c
3303
stp = kmem_cache_alloc(stream_head_cache, KM_SLEEP);
usr/src/uts/common/os/strsubr.c
3379
qip = kmem_cache_alloc(queue_cache, KM_SLEEP);
usr/src/uts/common/os/strsubr.c
5230
sqlist_t *sqlist = sqlist_alloc(stp, KM_SLEEP);
usr/src/uts/common/os/strsubr.c
5669
return (kmem_cache_alloc(syncq_cache, KM_SLEEP));
usr/src/uts/common/os/strsubr.c
8623
ss = (str_stack_t *)kmem_zalloc(sizeof (*ss), KM_SLEEP);
usr/src/uts/common/os/strsubr.c
8636
ss->ss_devcnt), KM_SLEEP);
usr/src/uts/common/os/sunddi.c
10000
path = kmem_alloc(MAXPATHLEN, KM_SLEEP);
usr/src/uts/common/os/sunddi.c
1131
(flags & DDI_PROP_CANSLEEP) ? KM_SLEEP : KM_NOSLEEP)) == NULL) {
usr/src/uts/common/os/sunddi.c
1254
KM_SLEEP);
usr/src/uts/common/os/sunddi.c
1547
KM_SLEEP : KM_NOSLEEP)) == NULL)
usr/src/uts/common/os/sunddi.c
1712
pdd = kmem_zalloc(sizeof (struct prop_driver_data) + size, KM_SLEEP);
usr/src/uts/common/os/sunddi.c
1744
ph->ph_data = kmem_zalloc(size, KM_SLEEP);
usr/src/uts/common/os/sunddi.c
3190
km_flags = KM_SLEEP;
usr/src/uts/common/os/sunddi.c
3301
KM_SLEEP : KM_NOSLEEP);
usr/src/uts/common/os/sunddi.c
4282
KM_SLEEP : KM_NOSLEEP);
usr/src/uts/common/os/sunddi.c
4839
ncallbacks * sizeof (struct ddi_callback), KM_SLEEP);
usr/src/uts/common/os/sunddi.c
5344
kmem_flag = (se_flag == SE_SLEEP) ? KM_SLEEP : KM_NOSLEEP;
usr/src/uts/common/os/sunddi.c
5460
pathname = kmem_alloc(MAXPATHLEN, KM_SLEEP);
usr/src/uts/common/os/sunddi.c
5884
ss = kmem_zalloc(sizeof (*ss), KM_SLEEP);
usr/src/uts/common/os/sunddi.c
5900
ss->array = kmem_zalloc(ss->n_items * sizeof (void *), KM_SLEEP);
usr/src/uts/common/os/sunddi.c
5945
new_element = kmem_zalloc(ss->size, KM_SLEEP);
usr/src/uts/common/os/sunddi.c
5979
KM_SLEEP);
usr/src/uts/common/os/sunddi.c
5988
dirty = kmem_zalloc(sizeof (*dirty), KM_SLEEP);
usr/src/uts/common/os/sunddi.c
6159
sss = kmem_zalloc(sizeof (*sss), KM_SLEEP);
usr/src/uts/common/os/sunddi.c
6177
sso = kmem_zalloc(sss->ss_size, KM_SLEEP);
usr/src/uts/common/os/sunddi.c
6178
dup_str = i_ddi_strdup((char *)str, KM_SLEEP);
usr/src/uts/common/os/sunddi.c
6266
ss = kmem_alloc(sizeof (*ss), KM_SLEEP);
usr/src/uts/common/os/sunddi.c
6313
s = i_ddi_strdup(str, KM_SLEEP);
usr/src/uts/common/os/sunddi.c
6425
buf = kmem_zalloc(2 * MAXNAMELEN, KM_SLEEP);
usr/src/uts/common/os/sunddi.c
6660
obp_path = kmem_zalloc(MAXPATHLEN, KM_SLEEP);
usr/src/uts/common/os/sunddi.c
6907
fp = (int (*)())KM_SLEEP;
usr/src/uts/common/os/sunddi.c
7276
*handle = impl_acc_hdl_alloc(KM_SLEEP, NULL);
usr/src/uts/common/os/sunddi.c
7820
if ((i_devid = kmem_zalloc(sz, KM_SLEEP)) == NULL)
usr/src/uts/common/os/sunddi.c
7963
buf = kmem_alloc(MAXNAMELEN, KM_SLEEP);
usr/src/uts/common/os/sunddi.c
7973
*minor_name = i_ddi_strdup(buf, KM_SLEEP);
usr/src/uts/common/os/sunddi.c
8332
p = kmem_zalloc(sizeof (struct ddi_umem_cookie), KM_SLEEP);
usr/src/uts/common/os/sunddi.c
8438
addr, len, KM_SLEEP);
usr/src/uts/common/os/sunddi.c
8630
p = kmem_zalloc(sizeof (struct ddi_umem_cookie), KM_SLEEP);
usr/src/uts/common/os/sunddi.c
9039
ASSERT((flag == KM_SLEEP) || (flag == KM_NOSLEEP));
usr/src/uts/common/os/sunddi.c
9051
return (ddi_strdup(str, KM_SLEEP));
usr/src/uts/common/os/sunddi.c
9091
cbp = kmem_zalloc(sizeof (ddi_cb_t), KM_SLEEP);
usr/src/uts/common/os/sunddi.c
9204
*nextp = kmem_zalloc(sizeof (struct ptnode), KM_SLEEP);
usr/src/uts/common/os/sunddi.c
9363
path = kmem_alloc(MAXPATHLEN, KM_SLEEP);
usr/src/uts/common/os/sunddi.c
940
handle = impl_acc_hdl_alloc(KM_SLEEP, NULL);
usr/src/uts/common/os/sunddi.c
9460
nbuf = kmem_alloc(OBP_MAXDRVNAME, KM_SLEEP);
usr/src/uts/common/os/sunddi.c
9548
path = kmem_alloc(MAXPATHLEN, KM_SLEEP);
usr/src/uts/common/os/sunddi.c
9690
devnm = kmem_alloc(MAXNAMELEN + 1, KM_SLEEP);
usr/src/uts/common/os/sunddi.c
9785
devnm = kmem_alloc(MAXNAMELEN + 1, KM_SLEEP);
usr/src/uts/common/os/sunmdi.c
1328
ct = kmem_zalloc(sizeof (*ct), KM_SLEEP);
usr/src/uts/common/os/sunmdi.c
1334
ct->ct_drvname = kmem_alloc(strlen(name) + 1, KM_SLEEP);
usr/src/uts/common/os/sunmdi.c
1336
ct->ct_guid = kmem_alloc(strlen(lguid) + 1, KM_SLEEP);
usr/src/uts/common/os/sunmdi.c
1354
ct->ct_lb_args = kmem_zalloc(sizeof (client_lb_args_t), KM_SLEEP);
usr/src/uts/common/os/sunmdi.c
1619
temp_pathname = kmem_zalloc(MAXPATHLEN, KM_SLEEP);
usr/src/uts/common/os/sunmdi.c
1850
(void) taskq_dispatch(mdi_taskq, mdi_failover_cb, ct, KM_SLEEP);
usr/src/uts/common/os/sunmdi.c
2937
pip = kmem_zalloc(sizeof (struct mdi_pathinfo), KM_SLEEP);
usr/src/uts/common/os/sunmdi.c
2955
MDI_PI(pip)->pi_addr = kmem_alloc(strlen(paddr) + 1, KM_SLEEP);
usr/src/uts/common/os/sunmdi.c
2976
path_persistent = i_ddi_strdup(path, KM_SLEEP);
usr/src/uts/common/os/sunmdi.c
2988
path_persistent = i_ddi_strdup(path, KM_SLEEP);
usr/src/uts/common/os/sunmdi.c
2996
(void) nvlist_alloc(&MDI_PI(pip)->pi_prop, NV_UNIQUE_NAME, KM_SLEEP);
usr/src/uts/common/os/sunmdi.c
4166
obp_path = kmem_zalloc(MAXPATHLEN, KM_SLEEP);
usr/src/uts/common/os/sunmdi.c
437
vh = kmem_zalloc(sizeof (mdi_vhci_t), KM_SLEEP);
usr/src/uts/common/os/sunmdi.c
439
KM_SLEEP);
usr/src/uts/common/os/sunmdi.c
441
vh->vh_class = kmem_zalloc(strlen(class) + 1, KM_SLEEP);
usr/src/uts/common/os/sunmdi.c
4499
NV_ENCODE_NATIVE, KM_SLEEP);
usr/src/uts/common/os/sunmdi.c
4861
ct_path = kmem_alloc(MAXPATHLEN, KM_SLEEP);
usr/src/uts/common/os/sunmdi.c
6125
mdi_statp = kmem_alloc(sizeof (*mdi_statp), KM_SLEEP);
usr/src/uts/common/os/sunmdi.c
667
ph = kmem_zalloc(sizeof (mdi_phci_t), KM_SLEEP);
usr/src/uts/common/os/sunmdi.c
7475
filename = kmem_alloc(len, KM_SLEEP);
usr/src/uts/common/os/sunmdi.c
7493
vhc = kmem_zalloc(sizeof (mdi_vhci_config_t), KM_SLEEP);
usr/src/uts/common/os/sunmdi.c
7511
mod_hash_bystr, NULL, mod_hash_strkey_cmp, KM_SLEEP);
usr/src/uts/common/os/sunmdi.c
7789
name_addr = kmem_alloc(len, KM_SLEEP);
usr/src/uts/common/os/sunmdi.c
7813
cpi = kmem_zalloc(sizeof (*cpi), KM_SLEEP);
usr/src/uts/common/os/sunmdi.c
7814
cpi->cpi_addr = i_ddi_strdup(nvpair_name(nvp), KM_SLEEP);
usr/src/uts/common/os/sunmdi.c
7839
cct = kmem_zalloc(sizeof (*cct), KM_SLEEP);
usr/src/uts/common/os/sunmdi.c
7840
cct->cct_name_addr = i_ddi_strdup(nvpair_name(nvp), KM_SLEEP);
usr/src/uts/common/os/sunmdi.c
7912
cphci_list = kmem_alloc(cphci_list_size, KM_SLEEP);
usr/src/uts/common/os/sunmdi.c
7914
cphci = kmem_zalloc(sizeof (mdi_vhcache_phci_t), KM_SLEEP);
usr/src/uts/common/os/sunmdi.c
7915
cphci->cphci_path = i_ddi_strdup(*phci_namep, KM_SLEEP);
usr/src/uts/common/os/sunmdi.c
7945
if ((err = nvlist_alloc(&nvl, 0, KM_SLEEP)) != 0)
usr/src/uts/common/os/sunmdi.c
7976
if ((err = nvlist_alloc(&nvl, NV_UNIQUE_NAME, KM_SLEEP)) != 0)
usr/src/uts/common/os/sunmdi.c
8005
if ((err = nvlist_alloc(&nvl, NV_UNIQUE_NAME, KM_SLEEP)) != 0) {
usr/src/uts/common/os/sunmdi.c
8026
phcis = kmem_alloc(sizeof (char *) * phci_count, KM_SLEEP);
usr/src/uts/common/os/sunmdi.c
8029
phcis[i] = i_ddi_strdup(cphci->cphci_path, KM_SLEEP);
usr/src/uts/common/os/sunmdi.c
8098
pathname = kmem_alloc(MAXPATHLEN, KM_SLEEP);
usr/src/uts/common/os/sunmdi.c
8105
cphci = kmem_zalloc(sizeof (*cphci), KM_SLEEP);
usr/src/uts/common/os/sunmdi.c
8106
cphci->cphci_path = i_ddi_strdup(pathname, KM_SLEEP);
usr/src/uts/common/os/sunmdi.c
8219
cct = kmem_zalloc(sizeof (*cct), KM_SLEEP);
usr/src/uts/common/os/sunmdi.c
8243
cpi = kmem_zalloc(sizeof (*cpi), KM_SLEEP);
usr/src/uts/common/os/sunmdi.c
8244
cpi->cpi_addr = i_ddi_strdup(pip->pi_addr, KM_SLEEP);
usr/src/uts/common/os/sunmdi.c
8509
vhbc = kmem_zalloc(sizeof (*vhbc), KM_SLEEP);
usr/src/uts/common/os/sunmdi.c
8516
phbc = kmem_zalloc(sizeof (*phbc), KM_SLEEP);
usr/src/uts/common/os/sunmdi.c
8518
KM_SLEEP);
usr/src/uts/common/os/sunmdi.c
8632
pp = kmem_alloc(sizeof (*pp), KM_SLEEP);
usr/src/uts/common/os/sunmdi.c
8635
pp->phys_path = kmem_alloc(len, KM_SLEEP);
usr/src/uts/common/os/sunmdi.c
8676
acc = kmem_alloc(sizeof (*acc), KM_SLEEP);
usr/src/uts/common/os/sunmdi.c
8677
acc->acc_ct_name = i_ddi_strdup(ct_name, KM_SLEEP);
usr/src/uts/common/os/sunmdi.c
8678
acc->acc_ct_addr = i_ddi_strdup(ct_addr, KM_SLEEP);
usr/src/uts/common/os/sunmdi.c
9032
new_ptr = kmem_zalloc(new_size, KM_SLEEP);
usr/src/uts/common/os/sunmdi.c
9054
(*driver_list)[*cur_elements] = i_ddi_strdup(driver_name, KM_SLEEP);
usr/src/uts/common/os/sunmdi.c
9601
KM_SLEEP) != DDI_SUCCESS) {
usr/src/uts/common/os/sunmdi.c
9605
path_name = kmem_zalloc(MAXPATHLEN, KM_SLEEP);
usr/src/uts/common/os/sunmdi.c
997
temp_pathname = kmem_zalloc(MAXPATHLEN, KM_SLEEP);
usr/src/uts/common/os/sunndi.c
1213
((flag & NDI_NOSLEEP) ? KM_NOSLEEP : KM_SLEEP));
usr/src/uts/common/os/sunndi.c
1299
int km_flag = ((flag & NDI_NOSLEEP) ? KM_NOSLEEP : KM_SLEEP);
usr/src/uts/common/os/sunndi.c
1693
int km_flag = ((flag & NDI_NOSLEEP) ? KM_NOSLEEP : KM_SLEEP);
usr/src/uts/common/os/sunndi.c
2558
kmem_zalloc((nflavors - 1) * sizeof (void *), KM_SLEEP);
usr/src/uts/common/os/sunndi.c
319
dcp = kmem_zalloc(sizeof (*dcp), KM_SLEEP);
usr/src/uts/common/os/sunndi.c
345
cpybuf = kmem_alloc(MAXNAMELEN, KM_SLEEP);
usr/src/uts/common/os/sunndi.c
356
cpybuf = kmem_alloc(MAXNAMELEN, KM_SLEEP);
usr/src/uts/common/os/sunndi.c
381
cpybuf = kmem_alloc(dcp->nvl_usersz, KM_SLEEP);
usr/src/uts/common/os/sunndi.c
393
KM_SLEEP)) {
usr/src/uts/common/os/sunndi.c
470
name = kmem_alloc(MAXNAMELEN, KM_SLEEP);
usr/src/uts/common/os/sunndi.c
514
name = kmem_alloc(MAXNAMELEN, KM_SLEEP);
usr/src/uts/common/os/sunndi.c
551
name = kmem_alloc(MAXNAMELEN, KM_SLEEP);
usr/src/uts/common/os/sunndi.c
593
devname = kmem_alloc(devnamelen, KM_SLEEP);
usr/src/uts/common/os/sunpci.c
347
KM_SLEEP);
usr/src/uts/common/os/sunpci.c
355
maskbuf = (uint8_t *)kmem_zalloc(maskbufsz, KM_SLEEP);
usr/src/uts/common/os/sunpci.c
401
KM_SLEEP);
usr/src/uts/common/os/sunpci.c
436
capbufsz, KM_SLEEP);
usr/src/uts/common/os/sunpci.c
932
p = (pci_pm_context_t *)kmem_zalloc(sizeof (*p), KM_SLEEP);
usr/src/uts/common/os/sunpm.c
1249
timestamp = kmem_alloc(size, KM_SLEEP);
usr/src/uts/common/os/sunpm.c
1475
pathbuf = kmem_alloc(MAXPATHLEN, KM_SLEEP);
usr/src/uts/common/os/sunpm.c
1723
pathbuf = kmem_alloc(MAXPATHLEN, KM_SLEEP);
usr/src/uts/common/os/sunpm.c
1783
component = kmem_alloc(MAXNAMELEN, KM_SLEEP);
usr/src/uts/common/os/sunpm.c
2001
paths = kmem_zalloc(length, KM_SLEEP);
usr/src/uts/common/os/sunpm.c
2231
new_work = kmem_zalloc(sizeof (pm_dep_wk_t), KM_SLEEP);
usr/src/uts/common/os/sunpm.c
2240
KM_SLEEP);
usr/src/uts/common/os/sunpm.c
2244
new_work->pdw_kept = kmem_zalloc(strlen(kept) + 1, KM_SLEEP);
usr/src/uts/common/os/sunpm.c
2328
pathbuf = kmem_zalloc(MAXPATHLEN, KM_SLEEP);
usr/src/uts/common/os/sunpm.c
2365
bufp = kmem_alloc(size, KM_SLEEP);
usr/src/uts/common/os/sunpm.c
2653
physpath = kmem_alloc(size, KM_SLEEP);
usr/src/uts/common/os/sunpm.c
2877
char *pathbuf = kmem_alloc(MAXPATHLEN, KM_SLEEP);
usr/src/uts/common/os/sunpm.c
3188
pathbuf = kmem_zalloc(MAXPATHLEN, KM_SLEEP);
usr/src/uts/common/os/sunpm.c
3412
KM_SLEEP);
usr/src/uts/common/os/sunpm.c
3414
KM_SLEEP);
usr/src/uts/common/os/sunpm.c
3544
info = kmem_zalloc(sizeof (pm_info_t), KM_SLEEP);
usr/src/uts/common/os/sunpm.c
3565
pathbuf = kmem_zalloc(MAXPATHLEN, KM_SLEEP);
usr/src/uts/common/os/sunpm.c
3870
tp = compp->pmc_lname_buf = kmem_alloc(size, KM_SLEEP); \
usr/src/uts/common/os/sunpm.c
3872
compp->pmc_lnames = kmem_alloc(level * sizeof (char *), KM_SLEEP); \
usr/src/uts/common/os/sunpm.c
3873
compp->pmc_lvals = kmem_alloc(level * sizeof (int), KM_SLEEP); \
usr/src/uts/common/os/sunpm.c
3874
compp->pmc_thresh = kmem_alloc(level * sizeof (int), KM_SLEEP); \
usr/src/uts/common/os/sunpm.c
3901
compp = kmem_zalloc(size, KM_SLEEP);
usr/src/uts/common/os/sunpm.c
4080
lvals = kmem_alloc(nelems * sizeof (int), KM_SLEEP);
usr/src/uts/common/os/sunpm.c
4081
lszs = kmem_alloc(nelems * sizeof (int), KM_SLEEP);
usr/src/uts/common/os/sunpm.c
4082
lnames = kmem_alloc(nelems * sizeof (char *), KM_SLEEP);
usr/src/uts/common/os/sunpm.c
4083
np = kmem_alloc(nelems * sizeof (int), KM_SLEEP);
usr/src/uts/common/os/sunpm.c
4108
p = kmem_zalloc(sizeof (*phead), KM_SLEEP);
usr/src/uts/common/os/sunpm.c
4116
KM_SLEEP);
usr/src/uts/common/os/sunpm.c
4119
KM_SLEEP);
usr/src/uts/common/os/sunpm.c
4163
ret = kmem_zalloc(components * sizeof (pm_comp_t), KM_SLEEP);
usr/src/uts/common/os/sunpm.c
5094
pm_pdr_t *p = kmem_zalloc(size, KM_SLEEP);
usr/src/uts/common/os/sunpm.c
5358
kmem_alloc(length, KM_SLEEP);
usr/src/uts/common/os/sunpm.c
5360
KM_SLEEP);
usr/src/uts/common/os/sunpm.c
5384
KM_SLEEP);
usr/src/uts/common/os/sunpm.c
5394
kmem_alloc(length, KM_SLEEP);
usr/src/uts/common/os/sunpm.c
5423
kmem_alloc(length, KM_SLEEP);
usr/src/uts/common/os/sunpm.c
5425
KM_SLEEP);
usr/src/uts/common/os/sunpm.c
5519
pm_rsvp_t *new = kmem_zalloc(sizeof (*new), KM_SLEEP);
usr/src/uts/common/os/sunpm.c
5588
pscc_t *pscc = kmem_zalloc(sizeof (*pscc), KM_SLEEP);
usr/src/uts/common/os/sunpm.c
5609
psce = kmem_zalloc(sizeof (psce_t), KM_SLEEP);
usr/src/uts/common/os/sunpm.c
5613
KM_SLEEP);
usr/src/uts/common/os/sunpm.c
5632
psce = kmem_zalloc(sizeof (psce_t), KM_SLEEP);
usr/src/uts/common/os/sunpm.c
5634
PSCCOUNT, KM_SLEEP);
usr/src/uts/common/os/sunpm.c
6258
pathbuf = kmem_alloc(MAXPATHLEN, KM_SLEEP);
usr/src/uts/common/os/sunpm.c
6271
pathbuf = kmem_alloc(MAXPATHLEN, KM_SLEEP);
usr/src/uts/common/os/sunpm.c
6285
pathbuf = kmem_alloc(MAXPATHLEN, KM_SLEEP);
usr/src/uts/common/os/sunpm.c
7202
np = kmem_zalloc(sizeof (*np), KM_SLEEP);
usr/src/uts/common/os/sunpm.c
7204
np->ni_path = kmem_alloc(plen, KM_SLEEP);
usr/src/uts/common/os/sunpm.c
7271
pathbuf = kmem_alloc(MAXPATHLEN, KM_SLEEP);
usr/src/uts/common/os/sunpm.c
736
scanp = kmem_zalloc(sizeof (pm_scan_t), KM_SLEEP);
usr/src/uts/common/os/sunpm.c
7412
pathbuf = kmem_alloc(MAXPATHLEN, KM_SLEEP);
usr/src/uts/common/os/sunpm.c
7654
devname = i_ddi_strdup((char *)stdout_path, KM_SLEEP);
usr/src/uts/common/os/sunpm.c
7897
bp = kmem_alloc(len, KM_SLEEP);
usr/src/uts/common/os/sunpm.c
7938
pm_msgbuf = kmem_zalloc(mmu_ptob(PMLOGPGS), KM_SLEEP);
usr/src/uts/common/os/sunpm.c
8004
sizeof (int), KM_SLEEP);
usr/src/uts/common/os/sunpm.c
8234
pathbuf = kmem_alloc(pathbuflen, KM_SLEEP);
usr/src/uts/common/os/sunpm.c
8260
apath = kmem_alloc(len, KM_SLEEP);
usr/src/uts/common/os/sunpm.c
8563
pathbuf = kmem_alloc(MAXPATHLEN, KM_SLEEP);
usr/src/uts/common/os/sunpm.c
8907
char *pathbuf = kmem_alloc(MAXPATHLEN, KM_SLEEP);
usr/src/uts/common/os/sunpm.c
924
pathbuf = kmem_alloc(MAXPATHLEN, KM_SLEEP);
usr/src/uts/common/os/sunpm.c
9266
lock_loan_t *cur = (lock_loan_t *)kmem_zalloc(sizeof (*cur), KM_SLEEP);
usr/src/uts/common/os/swapgeneric.c
387
dhcack = kmem_zalloc(proplen, KM_SLEEP);
usr/src/uts/common/os/swapgeneric.c
403
netdev_path = kmem_zalloc(proplen, KM_SLEEP);
usr/src/uts/common/os/swapgeneric.c
864
KM_SLEEP);
usr/src/uts/common/os/swapgeneric.c
874
pathcopy = i_ddi_strdup(bootpath, KM_SLEEP);
usr/src/uts/common/os/task.c
1063
ktk = ksp->ks_data = kmem_alloc(sizeof (task_kstat_t), KM_SLEEP);
usr/src/uts/common/os/task.c
491
task_t *tk = kmem_cache_alloc(task_cache, KM_SLEEP);
usr/src/uts/common/os/task.c
494
task_usage_t *tu = kmem_zalloc(sizeof (task_usage_t), KM_SLEEP);
usr/src/uts/common/os/task.c
508
tk->tk_inherited = kmem_zalloc(sizeof (task_usage_t), KM_SLEEP);
usr/src/uts/common/os/task.c
987
task0p = kmem_cache_alloc(task_cache, KM_SLEEP);
usr/src/uts/common/os/task.c
991
task0p->tk_usage = kmem_zalloc(sizeof (task_usage_t), KM_SLEEP);
usr/src/uts/common/os/task.c
992
task0p->tk_inherited = kmem_zalloc(sizeof (task_usage_t), KM_SLEEP);
usr/src/uts/common/os/taskq.c
1085
int kmflags = (flags & TQ_NOSLEEP) ? KM_NOSLEEP : KM_SLEEP;
usr/src/uts/common/os/taskq.c
1337
int kmflags = (flags & TQ_NOSLEEP) ? KM_NOSLEEP : KM_SLEEP;
usr/src/uts/common/os/taskq.c
2568
taskq_t *tq = kmem_cache_alloc(taskq_cache, KM_SLEEP);
usr/src/uts/common/os/taskq.c
2661
sizeof (kthread_t *) * max_nthreads, KM_SLEEP);
usr/src/uts/common/os/taskq.c
2691
(bsize + 1), KM_SLEEP);
usr/src/uts/common/os/taskq.c
2995
tqe = kmem_cache_alloc(taskq_ent_cache, KM_SLEEP);
usr/src/uts/common/os/taskq.c
3109
tqe = kmem_cache_alloc(taskq_ent_cache, KM_SLEEP);
usr/src/uts/common/os/timer.c
506
KM_SLEEP);
usr/src/uts/common/os/timer.c
547
itp_new = kmem_zalloc(target_sz * sizeof (itimer_t *), KM_SLEEP);
usr/src/uts/common/os/timer.c
667
sigq = kmem_zalloc(sizeof (sigqueue_t), KM_SLEEP);
usr/src/uts/common/os/timer.c
672
it = kmem_cache_alloc(clock_timer_cache, KM_SLEEP);
usr/src/uts/common/os/tlabel.c
251
tsl = labelalloc(&ds_sl, default_doi, KM_SLEEP);
usr/src/uts/common/os/tlabel.c
298
srv_label = labelalloc(server_sl, default_doi, KM_SLEEP);
usr/src/uts/common/os/tlabel.c
561
spath = kmem_zalloc(MAXPATHLEN, KM_SLEEP);
usr/src/uts/common/os/tlabel.c
77
l_admin_low = labelalloc(&label, default_doi, KM_SLEEP);
usr/src/uts/common/os/tlabel.c
79
l_admin_high = labelalloc(&label, default_doi, KM_SLEEP);
usr/src/uts/common/os/upanic.c
70
buf = kmem_zalloc(PRUPANIC_BUFLEN, KM_SLEEP);
usr/src/uts/common/os/vm_pageout.c
1005
kmem_zalloc(async_list_size * sizeof (struct async_reqs), KM_SLEEP);
usr/src/uts/common/os/vm_subr.c
154
bp = kmem_cache_alloc(physio_buf_cache, KM_SLEEP);
usr/src/uts/common/os/watchpoint.c
695
sqp = kmem_zalloc(sizeof (sigqueue_t), KM_SLEEP);
usr/src/uts/common/os/zone.c
1842
zk = ksp->ks_data = kmem_alloc(sizeof (zone_kstat_t), KM_SLEEP);
usr/src/uts/common/os/zone.c
1888
zmp = ksp->ks_data = kmem_zalloc(sizeof (zone_mcap_kstat_t), KM_SLEEP);
usr/src/uts/common/os/zone.c
1968
zmp = ksp->ks_data = kmem_zalloc(sizeof (zone_misc_kstat_t), KM_SLEEP);
usr/src/uts/common/os/zone.c
2012
sizeof (zone_mcap_kstat_t), KM_SLEEP);
usr/src/uts/common/os/zone.c
2017
sizeof (zone_misc_kstat_t), KM_SLEEP);
usr/src/uts/common/os/zone.c
2120
zone0.zone_privset = kmem_alloc(sizeof (priv_set_t), KM_SLEEP);
usr/src/uts/common/os/zone.c
2243
dval = kmem_cache_alloc(rctl_val_cache, KM_SLEEP);
usr/src/uts/common/os/zone.c
2311
zone0.zone_ustate = cpu_uarray_zalloc(ZONE_USTATE_MAX, KM_SLEEP);
usr/src/uts/common/os/zone.c
2328
hash_labelkey_cmp, KM_SLEEP);
usr/src/uts/common/os/zone.c
2462
if (nvlist_alloc(&nvl, NV_UNIQUE_NAME, KM_SLEEP) ||
usr/src/uts/common/os/zone.c
2497
char *buf = kmem_zalloc(BOOTARGS_MAX, KM_SLEEP);
usr/src/uts/common/os/zone.c
2520
attrp = kmem_alloc(sizeof (struct brand_attr), KM_SLEEP);
usr/src/uts/common/os/zone.c
2584
char *buf = kmem_zalloc(ZONE_FS_ALLOWED_MAX, KM_SLEEP);
usr/src/uts/common/os/zone.c
2616
zone->zone_initname = kmem_alloc(strlen(initname) + 1, KM_SLEEP);
usr/src/uts/common/os/zone.c
3480
path = kmem_alloc(pathlen, KM_SLEEP);
usr/src/uts/common/os/zone.c
3518
char *kname = kmem_zalloc(ZONENAME_MAX, KM_SLEEP);
usr/src/uts/common/os/zone.c
4034
nvalp = kmem_cache_alloc(rctl_val_cache, KM_SLEEP);
usr/src/uts/common/os/zone.c
4241
privs = kmem_alloc(sizeof (priv_set_t), KM_SLEEP);
usr/src/uts/common/os/zone.c
4284
if (nvlist_unpack(kbuf, buflen, &nvl, KM_SLEEP) != 0) {
usr/src/uts/common/os/zone.c
4382
zd = kmem_alloc(sizeof (zone_dataset_t), KM_SLEEP);
usr/src/uts/common/os/zone.c
4391
zd->zd_dataset = kmem_alloc(len + 1, KM_SLEEP);
usr/src/uts/common/os/zone.c
4492
zone = kmem_zalloc(sizeof (zone_t), KM_SLEEP);
usr/src/uts/common/os/zone.c
4539
zone->zone_nodename = kmem_alloc(_SYS_NMLN, KM_SLEEP);
usr/src/uts/common/os/zone.c
4543
zone->zone_domain = kmem_alloc(_SYS_NMLN, KM_SLEEP);
usr/src/uts/common/os/zone.c
4557
kmem_alloc(strlen(zone_default_initname) + 1, KM_SLEEP);
usr/src/uts/common/os/zone.c
4572
zone->zone_ustate = cpu_uarray_zalloc(ZONE_USTATE_MAX, KM_SLEEP);
usr/src/uts/common/os/zone.c
4703
str = kmem_alloc(strlen(zone->zone_name) + 1, KM_SLEEP);
usr/src/uts/common/os/zone.c
5157
buffer = kmem_alloc(buffer_size, KM_SLEEP);
usr/src/uts/common/os/zone.c
5460
zonepath = kmem_alloc(size, KM_SLEEP);
usr/src/uts/common/os/zone.c
5481
zonepath = kmem_alloc(size, KM_SLEEP);
usr/src/uts/common/os/zone.c
5689
zbuf = kmem_alloc(bufsize, KM_SLEEP);
usr/src/uts/common/os/zone.c
5804
zbuf = kmem_alloc(bufsize, KM_SLEEP);
usr/src/uts/common/os/zone.c
618
zsdp = kmem_zalloc(sizeof (*zsdp), KM_SLEEP);
usr/src/uts/common/os/zone.c
6352
zoneids = kmem_alloc(sizeof (zoneid_t), KM_SLEEP);
usr/src/uts/common/os/zone.c
6360
sizeof (zoneid_t), KM_SLEEP);
usr/src/uts/common/os/zone.c
6386
zoneids = kmem_alloc(real_nzones * sizeof (zoneid_t), KM_SLEEP);
usr/src/uts/common/os/zone.c
6438
kname = kmem_zalloc(ZONENAME_MAX, KM_SLEEP);
usr/src/uts/common/os/zone.c
6584
buf = kmem_alloc(buflen, KM_SLEEP);
usr/src/uts/common/os/zone.c
6618
zone_name = kmem_alloc(zone_namelen, KM_SLEEP);
usr/src/uts/common/os/zone.c
662
t = kmem_zalloc(sizeof (*t), KM_SLEEP);
usr/src/uts/common/os/zone.c
6805
zargp = kmem_zalloc(sizeof (*zargp), KM_SLEEP);
usr/src/uts/common/os/zone.c
7091
zdl = kmem_zalloc(sizeof (*zdl), KM_SLEEP);
usr/src/uts/common/os/zone.c
7346
if (nvlist_alloc(&nvl, NV_UNIQUE_NAME, KM_SLEEP)) {
usr/src/uts/common/os/zone.c
840
t = kmem_zalloc(sizeof (*t), KM_SLEEP);
usr/src/uts/common/pcmcia/cis/cis_handlers.c
2179
addr = kmem_zalloc(len + sizeof (size_t), KM_SLEEP);
usr/src/uts/common/pcmcia/cs/cs.c
1888
cclp = (client_t *)kmem_zalloc(sizeof (client_t), KM_SLEEP);
usr/src/uts/common/pcmcia/cs/cs.c
1926
KM_SLEEP);
usr/src/uts/common/pcmcia/cs/cs.c
7986
sp = (cs_socket_t *)kmem_zalloc(sizeof (cs_socket_t), KM_SLEEP);
usr/src/uts/common/pcmcia/cs/cs.c
8487
cw = (cs_window_t *)kmem_zalloc(sizeof (cs_window_t), KM_SLEEP);
usr/src/uts/common/pcmcia/cs/cs_stubs.c
1155
*dup = (acc_handle_t)kmem_alloc(sizeof (acc_hdl_t), KM_SLEEP);
usr/src/uts/common/pcmcia/cs/cs_stubs.c
1158
KM_SLEEP);
usr/src/uts/common/pcmcia/nexus/pcmcia.c
1148
KM_SLEEP);
usr/src/uts/common/pcmcia/nexus/pcmcia.c
1235
KM_SLEEP);
usr/src/uts/common/pcmcia/nexus/pcmcia.c
1260
KM_SLEEP);
usr/src/uts/common/pcmcia/nexus/pcmcia.c
1375
KM_SLEEP);
usr/src/uts/common/pcmcia/nexus/pcmcia.c
1376
ppd->ppd_reg = kmem_zalloc(sizeof (struct pcm_regs), KM_SLEEP);
usr/src/uts/common/pcmcia/nexus/pcmcia.c
2576
compat_name[ci] = kmem_alloc(length, KM_SLEEP);
usr/src/uts/common/pcmcia/nexus/pcmcia.c
2585
compat_name[ci] = kmem_alloc(length, KM_SLEEP);
usr/src/uts/common/pcmcia/nexus/pcmcia.c
2591
compat_name[ci] = kmem_alloc(length, KM_SLEEP);
usr/src/uts/common/pcmcia/nexus/pcmcia.c
2606
compat_name[ci] = kmem_alloc(length, KM_SLEEP);
usr/src/uts/common/pcmcia/nexus/pcmcia.c
2611
compat_name[ci] = kmem_alloc(length, KM_SLEEP);
usr/src/uts/common/pcmcia/nexus/pcmcia.c
2625
compat_name[ci] = kmem_alloc(length, KM_SLEEP);
usr/src/uts/common/pcmcia/nexus/pcmcia.c
2904
ppd->ppd_reg = kmem_alloc(len, KM_SLEEP);
usr/src/uts/common/pcmcia/nexus/pcmcia.c
2907
ppd->ppd_assigned = kmem_zalloc(len, KM_SLEEP);
usr/src/uts/common/pcmcia/nexus/pcmcia.c
3233
KM_SLEEP);
usr/src/uts/common/pcmcia/nexus/pcmcia.c
3268
kmem_zalloc(sizeof (struct intrspec), KM_SLEEP);
usr/src/uts/common/pcmcia/nexus/pcmcia.c
4394
reg = kmem_zalloc(sizeof (pci_regspec_t), KM_SLEEP);
usr/src/uts/common/pcmcia/nexus/pcmcia.c
4408
*handle = impl_acc_hdl_alloc(KM_SLEEP, NULL);
usr/src/uts/common/pcmcia/nexus/pcmcia.c
885
flags = KM_SLEEP;
usr/src/uts/common/rpc/clnt_clts.c
1284
etype = kmem_alloc(sizeof (struct endpnt_type), KM_SLEEP);
usr/src/uts/common/rpc/clnt_clts.c
331
p = kmem_zalloc(sizeof (*p), KM_SLEEP);
usr/src/uts/common/rpc/clnt_clts.c
363
p->cku_config.knc_protofmly = kmem_alloc(plen, KM_SLEEP);
usr/src/uts/common/rpc/clnt_clts.c
398
p->cku_addr.buf = kmem_zalloc(addr->maxlen, KM_SLEEP);
usr/src/uts/common/rpc/clnt_cots.c
1613
p->cku_addr.buf = kmem_zalloc(addr->maxlen, KM_SLEEP);
usr/src/uts/common/rpc/clnt_cots.c
1988
lru_entry->x_src.len, KM_SLEEP);
usr/src/uts/common/rpc/clnt_cots.c
2140
kmem_zalloc(sizeof (struct cm_xprt), KM_SLEEP);
usr/src/uts/common/rpc/clnt_cots.c
2142
cm_entry->x_server.buf = kmem_alloc(destaddr->len, KM_SLEEP);
usr/src/uts/common/rpc/clnt_cots.c
2246
srcaddr->buf = kmem_zalloc(destaddr->len, KM_SLEEP);
usr/src/uts/common/rpc/clnt_cots.c
2308
cm_entry->x_src.buf = kmem_alloc(srcaddr->len, KM_SLEEP);
usr/src/uts/common/rpc/clnt_cots.c
2495
KM_SLEEP);
usr/src/uts/common/rpc/clnt_cots.c
2871
KM_SLEEP);
usr/src/uts/common/rpc/clnt_cots.c
2876
kmem_alloc(INET6_ADDRSTRLEN, KM_SLEEP);
usr/src/uts/common/rpc/clnt_cots.c
579
p = kmem_zalloc(sizeof (*p), KM_SLEEP);
usr/src/uts/common/rpc/clnt_cots.c
637
p->cku_addr.buf = kmem_zalloc(addr->maxlen, KM_SLEEP);
usr/src/uts/common/rpc/clnt_gen.c
358
bound_addr->buf = kmem_zalloc(ret->addr.len, KM_SLEEP);
usr/src/uts/common/rpc/clnt_gen.c
389
ctp = kmem_alloc(sizeof (call_table_t) * size, KM_SLEEP);
usr/src/uts/common/rpc/clnt_gen.c
408
nbuf->buf = kmem_zalloc(len, KM_SLEEP);
usr/src/uts/common/rpc/clnt_perr.c
133
str = kmem_alloc(MAXPATHLEN, KM_SLEEP);
usr/src/uts/common/rpc/clnt_rdma.c
1369
KM_SLEEP);
usr/src/uts/common/rpc/clnt_rdma.c
1371
pf = kmem_alloc(KNC_STRSIZE, KM_SLEEP);
usr/src/uts/common/rpc/clnt_rdma.c
1372
p = kmem_alloc(KNC_STRSIZE, KM_SLEEP);
usr/src/uts/common/rpc/clnt_rdma.c
219
p = kmem_zalloc(sizeof (*p), KM_SLEEP);
usr/src/uts/common/rpc/clnt_rdma.c
271
p->cku_srcaddr.buf = kmem_zalloc(raddr->maxlen, KM_SLEEP);
usr/src/uts/common/rpc/clnt_rdma.c
274
p->cku_addr.buf = kmem_zalloc(raddr->maxlen, KM_SLEEP);
usr/src/uts/common/rpc/clnt_rdma.c
329
p->cku_addr.buf = kmem_zalloc(raddr->maxlen, KM_SLEEP);
usr/src/uts/common/rpc/clnt_rdma.c
719
KM_SLEEP);
usr/src/uts/common/rpc/mt_rpcinit.c
71
ks_data = kmem_alloc(template_size, KM_SLEEP);
usr/src/uts/common/rpc/mt_rpcinit.c
93
rpcstat = kmem_alloc(sizeof (*rpcstat), KM_SLEEP);
usr/src/uts/common/rpc/rdma_subr.c
117
m = kmem_alloc(sizeof (rdma_registry_t), KM_SLEEP);
usr/src/uts/common/rpc/rdma_subr.c
118
m->r_mod = kmem_alloc(sizeof (rdma_mod_t), KM_SLEEP);
usr/src/uts/common/rpc/rdma_subr.c
121
m->r_mod->rdma_api = kmem_zalloc(KNC_STRSIZE, KM_SLEEP);
usr/src/uts/common/rpc/rdma_subr.c
202
clp = kmem_cache_alloc(clist_cache, KM_SLEEP);
usr/src/uts/common/rpc/rpc_subr.c
345
newbuf = kmem_zalloc(newlen, KM_SLEEP);
usr/src/uts/common/rpc/rpc_subr.c
408
newbuf = kmem_zalloc(length, KM_SLEEP);
usr/src/uts/common/rpc/rpcib.c
1574
kqp = kmem_zalloc(sizeof (rib_qp_t), KM_SLEEP);
usr/src/uts/common/rpc/rpcib.c
1582
conn->c_raddr.buf = kmem_alloc(raddr->len, KM_SLEEP);
usr/src/uts/common/rpc/rpcib.c
1624
kqp = kmem_zalloc(sizeof (rib_qp_t), KM_SLEEP);
usr/src/uts/common/rpc/rpcib.c
2265
wd = kmem_zalloc(sizeof (struct send_wid), KM_SLEEP);
usr/src/uts/common/rpc/rpcib.c
2460
rwid = kmem_zalloc(sizeof (struct recv_wid), KM_SLEEP);
usr/src/uts/common/rpc/rpcib.c
3056
KM_SLEEP);
usr/src/uts/common/rpc/rpcib.c
3061
conn->c_raddr.buf = kmem_zalloc(sin_size, KM_SLEEP);
usr/src/uts/common/rpc/rpcib.c
3070
conn->c_laddr.buf = kmem_zalloc(sin_size, KM_SLEEP);
usr/src/uts/common/rpc/rpcib.c
3080
kmem_zalloc(conn->c_addrmask.len, KM_SLEEP);
usr/src/uts/common/rpc/rpcib.c
3092
KM_SLEEP);
usr/src/uts/common/rpc/rpcib.c
3097
conn->c_raddr.buf = kmem_zalloc(sin6_size, KM_SLEEP);
usr/src/uts/common/rpc/rpcib.c
3107
conn->c_laddr.buf = kmem_zalloc(sin6_size, KM_SLEEP);
usr/src/uts/common/rpc/rpcib.c
3118
kmem_zalloc(conn->c_addrmask.len, KM_SLEEP);
usr/src/uts/common/rpc/rpcib.c
3316
service = kmem_zalloc(sizeof (rib_service_t), KM_SLEEP);
usr/src/uts/common/rpc/rpcib.c
3376
KM_SLEEP);
usr/src/uts/common/rpc/rpcib.c
3568
recvp = kmem_zalloc(sizeof (struct svc_recv), KM_SLEEP);
usr/src/uts/common/rpc/rpcib.c
3857
rbp = (rib_bufpool_t *)kmem_zalloc(sizeof (rib_bufpool_t), KM_SLEEP);
usr/src/uts/common/rpc/rpcib.c
3860
num * sizeof (void *), KM_SLEEP);
usr/src/uts/common/rpc/rpcib.c
3883
bp->buf = kmem_zalloc(bp->bufsize, KM_SLEEP);
usr/src/uts/common/rpc/rpcib.c
3885
sizeof (ibt_mr_hdl_t), KM_SLEEP);
usr/src/uts/common/rpc/rpcib.c
3887
sizeof (ibt_mr_desc_t), KM_SLEEP);
usr/src/uts/common/rpc/rpcib.c
4391
cn->c_laddr.buf = kmem_alloc(s_addr_len, KM_SLEEP);
usr/src/uts/common/rpc/rpcib.c
4396
cn->c_netid = kmem_zalloc(strlen(RIBNETID_TCP) + 1, KM_SLEEP);
usr/src/uts/common/rpc/rpcib.c
4401
cn->c_addrmask.buf = kmem_zalloc(cn->c_addrmask.len, KM_SLEEP);
usr/src/uts/common/rpc/rpcib.c
4409
cn->c_netid = kmem_zalloc(strlen(RIBNETID_TCP6) + 1, KM_SLEEP);
usr/src/uts/common/rpc/rpcib.c
4414
cn->c_addrmask.buf = kmem_zalloc(cn->c_addrmask.len, KM_SLEEP);
usr/src/uts/common/rpc/rpcib.c
4611
rd = kmem_alloc(sizeof (*rd), KM_SLEEP);
usr/src/uts/common/rpc/rpcib.c
5080
kmem_cache_alloc(hca->server_side_cache, KM_SLEEP);
usr/src/uts/common/rpc/rpcib.c
5124
kmem_zalloc(sizeof (rib_lrc_entry_t), KM_SLEEP);
usr/src/uts/common/rpc/rpcib.c
5126
reply_buf->lrc_buf = kmem_alloc(len, KM_SLEEP);
usr/src/uts/common/rpc/rpcib.c
5136
kmem_zalloc(sizeof (rib_lrc_entry_t), KM_SLEEP);
usr/src/uts/common/rpc/rpcib.c
5138
reply_buf->lrc_buf = kmem_alloc(len, KM_SLEEP);
usr/src/uts/common/rpc/rpcib.c
5317
lifcp->lifc_buf = kmem_zalloc(*bufsizep, KM_SLEEP);
usr/src/uts/common/rpc/rpcib.c
5353
addrs4->ri_list = kmem_zalloc(addrs4->ri_size, KM_SLEEP);
usr/src/uts/common/rpc/rpcib.c
5355
addrs6->ri_list = kmem_zalloc(addrs6->ri_size, KM_SLEEP);
usr/src/uts/common/rpc/rpcib.c
595
rib_stat = kmem_zalloc(sizeof (*rib_stat), KM_SLEEP);
usr/src/uts/common/rpc/rpcib.c
731
cq = kmem_zalloc(sizeof (rib_cq_t), KM_SLEEP);
usr/src/uts/common/rpc/rpcib.c
815
hca = kmem_zalloc(sizeof (rib_hca_t), KM_SLEEP);
usr/src/uts/common/rpc/rpcmod.c
1278
mir = kmem_zalloc(sizeof (mir_t), KM_SLEEP);
usr/src/uts/common/rpc/rpcmod.c
602
rmp = kmem_zalloc(sizeof (*rmp), KM_SLEEP);
usr/src/uts/common/rpc/sec/auth_kern.c
200
sercred = kmem_alloc(MAX_AUTH_BYTES, KM_SLEEP);
usr/src/uts/common/rpc/sec/auth_kern.c
89
return (kmem_cache_alloc(authkern_cache, KM_SLEEP));
usr/src/uts/common/rpc/sec/auth_loopb.c
205
sercred = kmem_alloc(MAX_AUTH_BYTES, KM_SLEEP);
usr/src/uts/common/rpc/sec/auth_loopb.c
90
return (kmem_cache_alloc(authloopback_cache, KM_SLEEP));
usr/src/uts/common/rpc/sec/auth_none.c
63
return (kmem_cache_alloc(authnone_cache, KM_SLEEP));
usr/src/uts/common/rpc/sec/key_call.c
82
authg = kmem_zalloc(sizeof (*authg), KM_SLEEP);
usr/src/uts/common/rpc/sec/sec_clnt.c
112
data = kmem_alloc(sizeof (*data), KM_SLEEP);
usr/src/uts/common/rpc/sec/sec_clnt.c
138
elements = kmem_alloc(data->mechanism.length, KM_SLEEP);
usr/src/uts/common/rpc/sec/sec_clnt.c
171
data = kmem_alloc(sizeof (*data), KM_SLEEP);
usr/src/uts/common/rpc/sec/sec_clnt.c
200
syncaddr->buf = kmem_alloc(syncaddr->len, KM_SLEEP);
usr/src/uts/common/rpc/sec/sec_clnt.c
211
kmem_alloc(nlen, KM_SLEEP);
usr/src/uts/common/rpc/sec/sec_clnt.c
224
knconf = kmem_alloc(sizeof (*knconf), KM_SLEEP);
usr/src/uts/common/rpc/sec/sec_clnt.c
259
pf = kmem_alloc(KNC_STRSIZE, KM_SLEEP);
usr/src/uts/common/rpc/sec/sec_clnt.c
260
p = kmem_alloc(KNC_STRSIZE, KM_SLEEP);
usr/src/uts/common/rpc/sec/sec_clnt.c
335
secdata = kmem_alloc(sizeof (*secdata), KM_SLEEP);
usr/src/uts/common/rpc/sec/sec_clnt.c
474
sizeof (struct desauthent), KM_SLEEP);
usr/src/uts/common/rpc/sec/sec_clnt.c
511
netname = kmem_zalloc(nlen + 1, KM_SLEEP);
usr/src/uts/common/rpc/sec/sec_clnt.c
728
mech = kmem_alloc(sizeof (rpc_gss_OID_desc), KM_SLEEP);
usr/src/uts/common/rpc/sec/sec_clnt.c
753
elements = kmem_alloc(mech->length, KM_SLEEP);
usr/src/uts/common/rpc/sec/sec_svc.c
245
roots = kmem_zalloc(allocsz, KM_SLEEP);
usr/src/uts/common/rpc/sec/sec_svc.c
246
oroots = kmem_alloc(oallocsz, KM_SLEEP);
usr/src/uts/common/rpc/sec/sec_svc.c
275
roots[i] = kmem_alloc(len, KM_SLEEP);
usr/src/uts/common/rpc/sec/sec_svc.c
283
roots = kmem_alloc(allocsz, KM_SLEEP);
usr/src/uts/common/rpc/sec/sec_svc.c
284
oroots = kmem_alloc(oallocsz, KM_SLEEP);
usr/src/uts/common/rpc/sec/sec_svc.c
305
gssname = kmem_alloc(len, KM_SLEEP);
usr/src/uts/common/rpc/sec/svcauthdes.c
160
KM_SLEEP);
usr/src/uts/common/rpc/sec/svcauthdes.c
503
if (!(new = kmem_cache_alloc(authdes_cache_handle, KM_SLEEP))) {
usr/src/uts/common/rpc/sec_gss/rpcsec_gss.c
1049
KM_SLEEP);
usr/src/uts/common/rpc/sec_gss/rpcsec_gss.c
1052
KM_SLEEP);
usr/src/uts/common/rpc/sec_gss/rpcsec_gss.c
1058
KM_SLEEP);
usr/src/uts/common/rpc/sec_gss/rpcsec_gss.c
1377
tmp_buf = kmem_alloc(xdr_buf_len, KM_SLEEP);
usr/src/uts/common/rpc/sec_gss/rpcsec_gss.c
473
if ((auth = (AUTH *) kmem_alloc(sizeof (*auth), KM_SLEEP)) != NULL)
usr/src/uts/common/rpc/sec_gss/rpcsec_gss.c
474
ap = (rpc_gss_data *) kmem_alloc(sizeof (*ap), KM_SLEEP);
usr/src/uts/common/rpc/sec_gss/rpcsec_gss.c
921
cred_buf = kmem_alloc(cred_buf_len, KM_SLEEP);
usr/src/uts/common/rpc/sec_gss/rpcsec_gss_misc.c
157
temp_data = kmem_alloc(size, KM_SLEEP);
usr/src/uts/common/rpc/sec_gss/rpcsec_gss_utils.c
134
(*principal) = (rpc_gss_principal_t)kmem_alloc(plen, KM_SLEEP);
usr/src/uts/common/rpc/sec_gss/rpcsec_gss_utils.c
70
tmp = (gss_OID) kmem_alloc(sizeof (gss_OID_desc), KM_SLEEP);
usr/src/uts/common/rpc/sec_gss/rpcsec_gss_utils.c
72
tmp->elements = kmem_alloc((oid->length), KM_SLEEP);
usr/src/uts/common/rpc/sec_gss/svc_rpcsec_gss.c
1073
arg = kmem_alloc(sizeof (*arg), KM_SLEEP);
usr/src/uts/common/rpc/sec_gss/svc_rpcsec_gss.c
1076
arg->rpc_call_arg = kmem_zalloc(sizeof (*arg->rpc_call_arg), KM_SLEEP);
usr/src/uts/common/rpc/sec_gss/svc_rpcsec_gss.c
1629
KM_SLEEP);
usr/src/uts/common/rpc/sec_gss/svc_rpcsec_gss.c
1956
rdata = kmem_zalloc(sizeof (*rdata), KM_SLEEP);
usr/src/uts/common/rpc/sec_gss/svc_rpcsec_gss.c
293
zsd = kmem_alloc(sizeof (*zsd), KM_SLEEP);
usr/src/uts/common/rpc/sec_gss/svc_rpcsec_gss.c
404
KM_SLEEP);
usr/src/uts/common/rpc/sec_gss/svc_rpcsec_gss.c
589
if ((cbl = (rpc_gss_cblist_t *)kmem_alloc(sizeof (*cbl), KM_SLEEP))
usr/src/uts/common/rpc/svc.c
1295
KM_SLEEP);
usr/src/uts/common/rpc/svc.c
1309
r.rq_label = kmem_alloc(sizeof (bslabel_t), KM_SLEEP);
usr/src/uts/common/rpc/svc.c
1425
clone_xprt = kmem_zalloc(sizeof (SVCXPRT), KM_SLEEP);
usr/src/uts/common/rpc/svc.c
2808
dst = kmem_alloc(sizeof (*dst), KM_SLEEP);
usr/src/uts/common/rpc/svc.c
2822
oa_dst.oa_base = kmem_alloc(oa_src.oa_length, KM_SLEEP);
usr/src/uts/common/rpc/svc.c
2834
oa_dst.oa_base = kmem_alloc(oa_src.oa_length, KM_SLEEP);
usr/src/uts/common/rpc/svc.c
2842
oa_dst.oa_base = kmem_alloc(MAX_AUTH_BYTES, KM_SLEEP);
usr/src/uts/common/rpc/svc.c
329
svc = kmem_alloc(sizeof (*svc), KM_SLEEP);
usr/src/uts/common/rpc/svc.c
673
pool = kmem_zalloc(sizeof (SVCPOOL), KM_SLEEP);
usr/src/uts/common/rpc/svc.c
879
KM_SLEEP);
usr/src/uts/common/rpc/svc_clts.c
174
xprt = kmem_zalloc(sizeof (*xprt), KM_SLEEP);
usr/src/uts/common/rpc/svc_clts.c
175
xprt->xp_lcladdr.buf = kmem_zalloc(sizeof (sin6_t), KM_SLEEP);
usr/src/uts/common/rpc/svc_cots.c
208
xprt = kmem_zalloc(sizeof (SVCMASTERXPRT), KM_SLEEP);
usr/src/uts/common/rpc/svc_cots.c
211
+ (2 * sizeof (sin6_t)), KM_SLEEP);
usr/src/uts/common/rpc/svc_gen.c
196
xprt->xp_netid = kmem_alloc(strlen(netid) + 1, KM_SLEEP);
usr/src/uts/common/rpc/svc_rdma.c
257
xprt = kmem_zalloc(sizeof (*xprt), KM_SLEEP);
usr/src/uts/common/rpc/svc_rdma.c
272
rd = kmem_zalloc(sizeof (*rd), KM_SLEEP);
usr/src/uts/common/rpc/svc_rdma.c
309
xprt_rec = kmem_alloc(sizeof (*xprt_rec), KM_SLEEP);
usr/src/uts/common/rpc/types.h
91
#define mem_alloc(bsize) kmem_alloc(bsize, KM_SLEEP)
usr/src/uts/common/rpc/xdr_mblk.c
119
p = kmem_alloc(sizeof (struct xdrmblk_params), KM_SLEEP);
usr/src/uts/common/rpc/xdr_rdma.c
314
KM_SLEEP);
usr/src/uts/common/rpc/xdrrdma_sizeof.c
214
xdrs->x_private = kmem_zalloc(sizeof (struct private), KM_SLEEP);
usr/src/uts/common/sys/crypto/sched_impl.h
69
#define KCF_KMFLAG(crq) (((crq) == NULL) ? KM_SLEEP : KM_NOSLEEP)
usr/src/uts/common/sys/crypto/sched_impl.h
86
#define KCF_RHNDL(kmflag) (((kmflag) == KM_SLEEP) ? NULL : &kcf_swprov_hndl)
usr/src/uts/common/sys/crypto/sched_impl.h
89
((rhndl == &kcf_swprov_hndl) ? KM_NOSLEEP : KM_SLEEP)
usr/src/uts/common/sys/dktp/gda.h
57
KM_SLEEP: KM_NOSLEEP)
usr/src/uts/common/sys/ib/adapters/hermon/hermon.h
897
kmem_zalloc((num_spans + 7) / 8, KM_SLEEP); \
usr/src/uts/common/sys/ib/adapters/hermon/hermon.h
901
KM_SLEEP); \
usr/src/uts/common/sys/ib/adapters/hermon/hermon.h
906
sizeof (void **), KM_SLEEP); \
usr/src/uts/common/sys/ib/clients/of/sol_ofs/sol_cma.h
327
sizeof (struct ib_sa_path_rec), KM_SLEEP);
usr/src/uts/common/sys/pcie_impl.h
749
#define PCIE_ZALLOC(data) kmem_zalloc(sizeof (data), KM_SLEEP)
usr/src/uts/common/sys/socket.h
244
#define SOCKET_SLEEP KM_SLEEP
usr/src/uts/common/sys/usb/hcd/ehci/ehcid.h
979
#define EHCI_GET_ID(x) id32_alloc((void *)(x), KM_SLEEP)
usr/src/uts/common/sys/usb/hcd/openhci/ohcid.h
816
#define OHCI_GET_ID(x) id32_alloc((void *)(x), KM_SLEEP)
usr/src/uts/common/syscall/acctctl.c
190
kbuf = kmem_zalloc(bufsz, KM_SLEEP);
usr/src/uts/common/syscall/acctctl.c
207
namebuf = kmem_alloc(namelen, KM_SLEEP);
usr/src/uts/common/syscall/acctctl.c
351
tmp = res = kmem_alloc(bufsz, KM_SLEEP);
usr/src/uts/common/syscall/acctctl.c
395
tmp = res = kmem_alloc(ressz, KM_SLEEP);
usr/src/uts/common/syscall/acctctl.c
555
acg = kmem_zalloc(sizeof (*acg), KM_SLEEP);
usr/src/uts/common/syscall/acl.c
265
vsecattr.vsa_aclentp = kmem_alloc(aclbsize, KM_SLEEP);
usr/src/uts/common/syscall/acl.c
327
vsecattr.vsa_aclentp = kmem_alloc(aclbsize, KM_SLEEP);
usr/src/uts/common/syscall/corectl.c
122
ccp = kmem_zalloc(sizeof (corectl_path_t), KM_SLEEP);
usr/src/uts/common/syscall/corectl.c
176
cg = kmem_alloc(sizeof (*cg), KM_SLEEP);
usr/src/uts/common/syscall/corectl.c
315
path = kmem_alloc(size, KM_SLEEP);
usr/src/uts/common/syscall/corectl.c
76
ccp = kmem_zalloc(sizeof (corectl_content_t), KM_SLEEP);
usr/src/uts/common/syscall/exacctsys.c
118
pu = kmem_zalloc(sizeof (proc_usage_t), KM_SLEEP);
usr/src/uts/common/syscall/exacctsys.c
119
pu->pu_command = kmem_zalloc(MAXCOMLEN + 1, KM_SLEEP);
usr/src/uts/common/syscall/exacctsys.c
181
kbuf = kmem_alloc(bufsize, KM_SLEEP);
usr/src/uts/common/syscall/exacctsys.c
263
pu = kmem_zalloc(sizeof (proc_usage_t), KM_SLEEP);
usr/src/uts/common/syscall/exacctsys.c
264
pu->pu_command = kmem_zalloc(MAXCOMLEN + 1, KM_SLEEP);
usr/src/uts/common/syscall/getcwd.c
66
kbuf = kmem_alloc(kbuflen, KM_SLEEP);
usr/src/uts/common/syscall/getdents.c
108
newbuf = kmem_alloc(bufsize, KM_SLEEP);
usr/src/uts/common/syscall/getdents.c
109
obuf = kmem_alloc(bufsize, KM_SLEEP);
usr/src/uts/common/syscall/getpagesizes.c
55
pgsza = kmem_alloc(sizeof (*pgsza) * nelem, KM_SLEEP);
usr/src/uts/common/syscall/getpagesizes.c
88
pgsza32 = kmem_alloc(sizeof (*pgsza32) * pagesizes, KM_SLEEP);
usr/src/uts/common/syscall/lgrpsys.c
126
in_array = kmem_alloc(in_size, KM_SLEEP);
usr/src/uts/common/syscall/lgrpsys.c
136
req_array = kmem_alloc(req_size, KM_SLEEP);
usr/src/uts/common/syscall/lgrpsys.c
166
out_array = kmem_alloc(out_size, KM_SLEEP);
usr/src/uts/common/syscall/lgrpsys.c
173
val_array = kmem_alloc(val_size, KM_SLEEP);
usr/src/uts/common/syscall/lgrpsys.c
762
KM_SLEEP);
usr/src/uts/common/syscall/lgrpsys.c
847
sizeof (lgrp_affinity_t *), KM_SLEEP);
usr/src/uts/common/syscall/lgrpsys.c
851
aff_buf_array[i] = kmem_zalloc(size, KM_SLEEP);
usr/src/uts/common/syscall/lwp_sobj.c
244
lcp = kmem_alloc(sizeof (lwpchan_data_t), KM_SLEEP);
usr/src/uts/common/syscall/lwp_sobj.c
250
sizeof (lwpchan_hashbucket_t), KM_SLEEP);
usr/src/uts/common/syscall/lwp_sobj.c
441
ent = kmem_alloc(sizeof (lwpchan_entry_t), KM_SLEEP);
usr/src/uts/common/syscall/lwp_sobj.c
734
upimutex = kmem_zalloc(sizeof (upimutex_t), KM_SLEEP);
usr/src/uts/common/syscall/lwpsys.c
124
sqp = kmem_zalloc(sizeof (sigqueue_t), KM_SLEEP);
usr/src/uts/common/syscall/lwpsys.c
564
lwpid = kmem_alloc(lwpidsz, KM_SLEEP);
usr/src/uts/common/syscall/mmapobjsys.c
153
KM_SLEEP);
usr/src/uts/common/syscall/mmapobjsys.c
179
KM_SLEEP);
usr/src/uts/common/syscall/poll.c
1105
pdp = kmem_zalloc(sizeof (polldat_t), KM_SLEEP);
usr/src/uts/common/syscall/poll.c
1107
pdp->pd_ref = kmem_zalloc(sizeof (xref_t) * nsets, KM_SLEEP);
usr/src/uts/common/syscall/poll.c
1172
KM_SLEEP);
usr/src/uts/common/syscall/poll.c
1204
KM_SLEEP);
usr/src/uts/common/syscall/poll.c
1613
newlist = kmem_alloc(nfds * sizeof (pollfd_t), KM_SLEEP);
usr/src/uts/common/syscall/poll.c
2162
newfdlist = kmem_alloc(ps->ps_nfds * sizeof (pollfd_t), KM_SLEEP);
usr/src/uts/common/syscall/poll.c
2326
ps = kmem_zalloc(sizeof (pollstate_t), KM_SLEEP);
usr/src/uts/common/syscall/poll.c
2945
return (kmem_zalloc(sizeof (pollcache_t), KM_SLEEP));
usr/src/uts/common/syscall/poll.c
2960
KM_SLEEP);
usr/src/uts/common/syscall/poll.c
2975
KM_SLEEP);
usr/src/uts/common/syscall/poll.c
3016
return (kmem_zalloc(sizeof (pollcacheset_t) * nsets, KM_SLEEP));
usr/src/uts/common/syscall/poll.c
433
pollfdp = kmem_alloc(nfds * sizeof (pollfd_t), KM_SLEEP);
usr/src/uts/common/syscall/poll.c
829
KM_SLEEP);
usr/src/uts/common/syscall/pset.c
195
KM_SLEEP);
usr/src/uts/common/syscall/pset.c
768
KM_SLEEP);
usr/src/uts/common/syscall/pset.c
775
KM_SLEEP);
usr/src/uts/common/syscall/rctlsys.c
242
kname = kmem_alloc(MAXPATHLEN, KM_SLEEP);
usr/src/uts/common/syscall/rctlsys.c
243
krde = kmem_alloc(sizeof (rctl_dict_entry_t), KM_SLEEP);
usr/src/uts/common/syscall/rctlsys.c
266
nval = kmem_cache_alloc(rctl_val_cache, KM_SLEEP);
usr/src/uts/common/syscall/rctlsys.c
296
nblk = kmem_zalloc(sizeof (rctl_opaque_t), KM_SLEEP);
usr/src/uts/common/syscall/rctlsys.c
320
oblk = kmem_alloc(sizeof (rctl_opaque_t), KM_SLEEP);
usr/src/uts/common/syscall/rctlsys.c
329
oval = kmem_cache_alloc(rctl_val_cache, KM_SLEEP);
usr/src/uts/common/syscall/rctlsys.c
346
nblk = kmem_alloc(sizeof (rctl_opaque_t), KM_SLEEP);
usr/src/uts/common/syscall/rctlsys.c
415
kname = kmem_alloc(MAXPATHLEN, KM_SLEEP);
usr/src/uts/common/syscall/rctlsys.c
430
nblk = kmem_alloc(sizeof (rctl_opaque_t), KM_SLEEP);
usr/src/uts/common/syscall/rctlsys.c
437
nval = kmem_cache_alloc(rctl_val_cache, KM_SLEEP);
usr/src/uts/common/syscall/rctlsys.c
448
oblk = kmem_alloc(sizeof (rctl_opaque_t), KM_SLEEP);
usr/src/uts/common/syscall/rctlsys.c
449
oval = kmem_cache_alloc(rctl_val_cache, KM_SLEEP);
usr/src/uts/common/syscall/rctlsys.c
450
rval1 = kmem_cache_alloc(rctl_val_cache, KM_SLEEP);
usr/src/uts/common/syscall/rctlsys.c
451
rval2 = kmem_cache_alloc(rctl_val_cache, KM_SLEEP);
usr/src/uts/common/syscall/rctlsys.c
801
kname = kmem_alloc(MAXPATHLEN, KM_SLEEP);
usr/src/uts/common/syscall/rctlsys.c
810
krde = kmem_alloc(sizeof (rctl_dict_entry_t), KM_SLEEP);
usr/src/uts/common/syscall/rctlsys.c
811
krblk = kmem_zalloc(sizeof (rctl_opaque_t), KM_SLEEP);
usr/src/uts/common/syscall/rctlsys.c
839
krde = kmem_alloc(sizeof (rctl_dict_entry_t), KM_SLEEP);
usr/src/uts/common/syscall/rctlsys.c
840
krblk = kmem_zalloc(sizeof (rctl_opaque_t), KM_SLEEP);
usr/src/uts/common/syscall/rctlsys.c
899
kname = kmem_alloc(MAXPATHLEN, KM_SLEEP);
usr/src/uts/common/syscall/rctlsys.c
930
krblk = kmem_zalloc(sizeof (rctl_opaque_t) * size, KM_SLEEP);
usr/src/uts/common/syscall/rctlsys.c
935
new_val = kmem_cache_alloc(rctl_val_cache, KM_SLEEP);
usr/src/uts/common/syscall/rctlsys.c
936
alloc_val = kmem_cache_alloc(rctl_val_cache, KM_SLEEP);
usr/src/uts/common/syscall/rw.c
1028
aiov = kmem_alloc(aiovlen, KM_SLEEP);
usr/src/uts/common/syscall/rw.c
1044
aiov32 = kmem_alloc(aiov32len, KM_SLEEP);
usr/src/uts/common/syscall/rw.c
1229
aiov = kmem_alloc(aiovlen, KM_SLEEP);
usr/src/uts/common/syscall/rw.c
1245
aiov32 = kmem_alloc(aiov32len, KM_SLEEP);
usr/src/uts/common/syscall/rw.c
632
aiov = kmem_alloc(aiovlen, KM_SLEEP);
usr/src/uts/common/syscall/rw.c
648
aiov32 = kmem_alloc(aiov32len, KM_SLEEP);
usr/src/uts/common/syscall/rw.c
825
aiov = kmem_alloc(aiovlen, KM_SLEEP);
usr/src/uts/common/syscall/rw.c
841
aiov32 = kmem_alloc(aiov32len, KM_SLEEP);
usr/src/uts/common/syscall/sem.c
385
vals = kmem_alloc(vsize, KM_SLEEP);
usr/src/uts/common/syscall/sem.c
512
vals = vp = kmem_alloc(vsize, KM_SLEEP);
usr/src/uts/common/syscall/sem.c
705
KM_SLEEP);
usr/src/uts/common/syscall/sem.c
817
undo = kmem_zalloc(size, KM_SLEEP);
usr/src/uts/common/syscall/sem.c
822
tree = kmem_alloc(sizeof (avl_tree_t), KM_SLEEP);
usr/src/uts/common/syscall/sem.c
920
uops = kmem_alloc(nsops * sizeof (*uops), KM_SLEEP);
usr/src/uts/common/syscall/sem.c
935
uops = kmem_alloc(nsops * sizeof (*uops), KM_SLEEP);
usr/src/uts/common/syscall/signotify.c
233
sigqueue_t *sqp = kmem_zalloc(sizeof (*sqp), KM_SLEEP);
usr/src/uts/common/syscall/symlink.c
89
tbuf = kmem_alloc(MAXPATHLEN, KM_SLEEP);
usr/src/uts/common/syscall/systeminfo.c
187
tmp = kmem_alloc(tlen, KM_SLEEP);
usr/src/uts/common/syscall/tasksys.c
271
kbuf = pw.pw_buf = kmem_zalloc(bufsz, KM_SLEEP);
usr/src/uts/common/syscall/uadmin.c
477
bootargs = kmem_zalloc(BOOTARGS_MAX, KM_SLEEP);
usr/src/uts/common/syscall/utssys.c
332
fu_data = kmem_alloc(fu_data_size(v_proc), KM_SLEEP);
usr/src/uts/common/syscall/utssys.c
337
pidlist = kmem_alloc(v_proc * sizeof (pid_t), KM_SLEEP);
usr/src/uts/common/syscall/utssys.c
744
fu_data = kmem_alloc(fu_data_size(user_max), KM_SLEEP);
usr/src/uts/common/vm/hat_refmod.c
308
hrm = kmem_zalloc(sizeof (struct hrmstat) * hrm_incr, KM_SLEEP);
usr/src/uts/common/vm/page_retire.c
899
retired_pages = vn_alloc(KM_SLEEP);
usr/src/uts/common/vm/seg_dev.c
2134
KM_SLEEP);
usr/src/uts/common/vm/seg_dev.c
2915
tmp = kmem_zalloc(sizeof (struct devmap_softlock), KM_SLEEP);
usr/src/uts/common/vm/seg_dev.c
304
tmp = kmem_zalloc(sizeof (struct devmap_ctx), KM_SLEEP);
usr/src/uts/common/vm/seg_dev.c
3182
dhp = kmem_zalloc(sizeof (devmap_handle_t), KM_SLEEP);
usr/src/uts/common/vm/seg_dev.c
3418
handle = impl_acc_hdl_alloc(KM_SLEEP, NULL);
usr/src/uts/common/vm/seg_dev.c
3520
handle = impl_acc_hdl_alloc(KM_SLEEP, NULL);
usr/src/uts/common/vm/seg_dev.c
3905
flags & DDI_UMEM_NOSLEEP ? KM_NOSLEEP : KM_SLEEP)) == NULL) {
usr/src/uts/common/vm/seg_dev.c
451
sdp = kmem_zalloc(sizeof (struct segdev_data), KM_SLEEP);
usr/src/uts/common/vm/seg_dev.c
507
newsdp->vpage = kmem_zalloc(nbytes, KM_SLEEP);
usr/src/uts/common/vm/seg_dev.c
550
newdhp = kmem_alloc(sizeof (devmap_handle_t), KM_SLEEP);
usr/src/uts/common/vm/seg_dev.c
744
sdp->vpage = kmem_alloc(nbytes, KM_SLEEP);
usr/src/uts/common/vm/seg_dev.c
775
sdp->vpage = kmem_alloc(nbytes, KM_SLEEP);
usr/src/uts/common/vm/seg_dev.c
842
sdp->vpage = kmem_alloc(nbytes, KM_SLEEP);
usr/src/uts/common/vm/seg_dev.c
845
nsdp->vpage = kmem_alloc(nnbytes, KM_SLEEP);
usr/src/uts/common/vm/seg_dev.c
881
newdhp = kmem_alloc(sizeof (devmap_handle_t), KM_SLEEP);
usr/src/uts/common/vm/seg_hole.c
109
newshd = kmem_zalloc(sizeof (seghole_data_t), KM_SLEEP);
usr/src/uts/common/vm/seg_hole.c
91
data = kmem_alloc(sizeof (seghole_data_t), KM_SLEEP);
usr/src/uts/common/vm/seg_kp.c
1111
(void) page_resv(pages, KM_SLEEP);
usr/src/uts/common/vm/seg_kp.c
205
kpsd = kmem_zalloc(sizeof (struct segkp_segdata), KM_SLEEP);
usr/src/uts/common/vm/seg_kp.c
212
segkp_bitmap = kmem_zalloc(BT_SIZEOFMAP(np), KM_SLEEP);
usr/src/uts/common/vm/seg_kp.c
226
KM_SLEEP);
usr/src/uts/common/vm/seg_kp.c
399
int kmflag = (flags & KPD_NOWAIT) ? KM_NOSLEEP : KM_SLEEP;
usr/src/uts/common/vm/seg_kpm.c
165
skd = kmem_zalloc(sizeof (struct segkpm_data), KM_SLEEP);
usr/src/uts/common/vm/seg_kpm.c
195
kmem_zalloc(NCPU * b->nvcolors * sizeof (ushort_t), KM_SLEEP);
usr/src/uts/common/vm/seg_map.c
321
smd = kmem_zalloc(sizeof (struct segmap_data), KM_SLEEP);
usr/src/uts/common/vm/seg_map.c
365
kmem_zalloc(smd_nfree * sizeof (struct smfree), KM_SLEEP);
usr/src/uts/common/vm/seg_map.c
384
kmem_alloc(hashsz * sizeof (struct smaphash), KM_SLEEP);
usr/src/uts/common/vm/seg_map.c
387
kmem_zalloc(hashsz * sizeof (unsigned int), KM_SLEEP);
usr/src/uts/common/vm/seg_map.c
404
kmem_alloc(sizeof (struct smap) * npages, KM_SLEEP);
usr/src/uts/common/vm/seg_map.c
459
kmem_zalloc(sizeof (union segmap_cpu) * max_ncpus, KM_SLEEP);
usr/src/uts/common/vm/seg_map.c
473
colors_used = kmem_zalloc(smd_nfree * sizeof (int), KM_SLEEP);
usr/src/uts/common/vm/seg_spt.c
1139
pplist = kmem_zalloc(sizeof (page_t *) * tot_npages, KM_SLEEP);
usr/src/uts/common/vm/seg_spt.c
1466
* btopr(sptd->spt_amp->size), KM_SLEEP);
usr/src/uts/common/vm/seg_spt.c
2052
ppa = kmem_zalloc(npages * sizeof (page_t *), KM_SLEEP);
usr/src/uts/common/vm/seg_spt.c
2281
ppa = kmem_zalloc(sizeof (page_t *) * npages, KM_SLEEP);
usr/src/uts/common/vm/seg_spt.c
2418
shmd_new = kmem_zalloc((sizeof (*shmd_new)), KM_SLEEP);
usr/src/uts/common/vm/seg_spt.c
2432
shmd_new->shm_vpage = kmem_zalloc(btopr(amp->size), KM_SLEEP);
usr/src/uts/common/vm/seg_spt.c
637
sizeof (*sptd->spt_ppa_lckcnt), KM_SLEEP);
usr/src/uts/common/vm/seg_umap.c
125
data = kmem_zalloc(sizeof (*data), KM_SLEEP);
usr/src/uts/common/vm/seg_umap.c
167
newsud = kmem_zalloc(sizeof (segumap_data_t), KM_SLEEP);
usr/src/uts/common/vm/seg_vn.c
1603
newsvd = kmem_cache_alloc(segvn_cache, KM_SLEEP);
usr/src/uts/common/vm/seg_vn.c
1759
kmem_alloc(vpgtob(npages), KM_SLEEP);
usr/src/uts/common/vm/seg_vn.c
2038
svd->vpage = kmem_alloc(nbytes, KM_SLEEP);
usr/src/uts/common/vm/seg_vn.c
2144
svd->vpage = kmem_alloc(nbytes, KM_SLEEP);
usr/src/uts/common/vm/seg_vn.c
2251
nsvd = kmem_cache_alloc(segvn_cache, KM_SLEEP);
usr/src/uts/common/vm/seg_vn.c
2282
svd->vpage = kmem_alloc(nbytes, KM_SLEEP);
usr/src/uts/common/vm/seg_vn.c
2288
nsvd->vpage = kmem_alloc(nbytes, KM_SLEEP);
usr/src/uts/common/vm/seg_vn.c
3922
ppa = kmem_alloc(ppasize, KM_SLEEP);
usr/src/uts/common/vm/seg_vn.c
445
KM_SLEEP);
usr/src/uts/common/vm/seg_vn.c
4710
ppa = kmem_cache_alloc(segvn_szc_cache[ppaszc], KM_SLEEP);
usr/src/uts/common/vm/seg_vn.c
482
svntr_hashtab = kmem_zalloc(hsz, KM_SLEEP);
usr/src/uts/common/vm/seg_vn.c
490
sizeof (svntr_stats_t), KM_SLEEP);
usr/src/uts/common/vm/seg_vn.c
5389
plp = kmem_alloc(pl_alloc_sz, KM_SLEEP);
usr/src/uts/common/vm/seg_vn.c
6512
ppa = kmem_alloc(ppasize, KM_SLEEP);
usr/src/uts/common/vm/seg_vn.c
6608
nsvd = kmem_cache_alloc(segvn_cache, KM_SLEEP);
usr/src/uts/common/vm/seg_vn.c
6647
svd->vpage = kmem_alloc(bytes, KM_SLEEP);
usr/src/uts/common/vm/seg_vn.c
6649
nsvd->vpage = kmem_alloc(nbytes, KM_SLEEP);
usr/src/uts/common/vm/seg_vn.c
821
svd = kmem_cache_alloc(segvn_cache, KM_SLEEP);
usr/src/uts/common/vm/seg_vn.c
8695
svd->vpage = kmem_zalloc(mem_needed, KM_SLEEP);
usr/src/uts/common/vm/seg_vn.c
9291
pplist = kmem_alloc(sizeof (page_t *) * (npages + 1), KM_SLEEP);
usr/src/uts/common/vm/vm_anon.c
1243
page_t **ppa = kmem_alloc(ppasize, KM_SLEEP);
usr/src/uts/common/vm/vm_anon.c
214
KM_SLEEP);
usr/src/uts/common/vm/vm_anon.c
232
kmem_zalloc(sizeof (struct anon *) * anon_hash_size, KM_SLEEP);
usr/src/uts/common/vm/vm_anon.c
241
tmp = kmem_zalloc((ANI_MAX_POOL * sizeof (ani_free_t)) + 63, KM_SLEEP);
usr/src/uts/common/vm/vm_anon.c
245
anon_vp = vn_alloc(KM_SLEEP);
usr/src/uts/common/vm/vm_anon.c
294
int kmemflags = (flags & ANON_NOSLEEP) ? KM_NOSLEEP : KM_SLEEP;
usr/src/uts/common/vm/vm_anon.c
3087
ppa = kmem_alloc(ppasize, KM_SLEEP);
usr/src/uts/common/vm/vm_anon.c
3193
page_t **ppa = kmem_alloc(ppasize, KM_SLEEP);
usr/src/uts/common/vm/vm_anon.c
3396
int kmflags = (flags & ANON_NOSLEEP) ? KM_NOSLEEP : KM_SLEEP;
usr/src/uts/common/vm/vm_anon.c
3584
*ppp = kmem_zalloc(PAGESIZE, KM_SLEEP);
usr/src/uts/common/vm/vm_anon.c
473
int kmemflags = (flags & ANON_NOSLEEP) ? KM_NOSLEEP : KM_SLEEP;
usr/src/uts/common/vm/vm_anon.c
519
int kmemflags = (flags & ANON_NOSLEEP) ? KM_NOSLEEP : KM_SLEEP;
usr/src/uts/common/vm/vm_anon.c
636
int kmemflags = (flags & ANON_NOSLEEP) ? KM_NOSLEEP : KM_SLEEP;
usr/src/uts/common/vm/vm_anon.c
990
ap = kmem_cache_alloc(anon_cache, KM_SLEEP);
usr/src/uts/common/vm/vm_as.c
2632
plist = kmem_zalloc((npages + segcnt) * sizeof (page_t *), KM_SLEEP);
usr/src/uts/common/vm/vm_as.c
638
as = kmem_cache_alloc(as_cache, KM_SLEEP);
usr/src/uts/common/vm/vm_page.c
6427
bp1 = kmem_alloc(sizeof (struct page_capture_hash_bucket), KM_SLEEP);
usr/src/uts/common/vm/vm_pagelist.c
375
kmptr = kmem_zalloc(sz, KM_SLEEP);
usr/src/uts/common/vm/vm_pvn.c
788
end = kmem_cache_alloc(marker_cache, KM_SLEEP);
usr/src/uts/common/vm/vm_pvn.c
791
mark = kmem_cache_alloc(marker_cache, KM_SLEEP);
usr/src/uts/common/vm/vm_seg.c
1428
KM_SLEEP);
usr/src/uts/common/vm/vm_seg.c
1465
seg_phashsize_wired * sizeof (struct seg_phash_wired), KM_SLEEP);
usr/src/uts/common/vm/vm_seg.c
1601
new = kmem_cache_alloc(seg_cache, KM_SLEEP);
usr/src/uts/common/vm/vm_seg.c
841
pcp = kmem_cache_alloc(seg_pkmcache, KM_SLEEP);
usr/src/uts/common/vm/vm_swap.c
1239
nsip = kmem_zalloc(sizeof (struct swapinfo), KM_SLEEP);
usr/src/uts/common/vm/vm_swap.c
1248
nsip->si_pname = (char *)kmem_zalloc(nsip->si_pnamelen, KM_SLEEP);
usr/src/uts/common/vm/vm_swap.c
1256
nsip->si_swapslots = kmem_zalloc(nsip->si_mapsize, KM_SLEEP);
usr/src/uts/common/vm/vm_swap.c
658
KM_SLEEP);
usr/src/uts/common/vm/vm_swap.c
661
pname = kmem_zalloc(nlen, KM_SLEEP);
usr/src/uts/common/vm/vm_swap.c
963
csip = kmem_zalloc(tmp_nswapfiles * sizeof (*csip), KM_SLEEP);
usr/src/uts/common/vm/vm_swap.c
966
pname = kmem_zalloc(nlen, KM_SLEEP);
usr/src/uts/common/vm/vm_usage.c
1710
cache = kmem_zalloc(sizeof (vmu_cache_t), KM_SLEEP);
usr/src/uts/common/vm/vm_usage.c
1711
cache->vmc_results = kmem_zalloc(sizeof (vmusage_t) * nres, KM_SLEEP);
usr/src/uts/common/vm/vm_usage.c
472
entity = kmem_zalloc(sizeof (vmu_entity_t), KM_SLEEP);
usr/src/uts/common/vm/vm_usage.c
516
zone = kmem_zalloc(sizeof (vmu_zone_t), KM_SLEEP);
usr/src/uts/common/vm/vm_usage.c
560
object = kmem_cache_alloc(vmu_object_cache, KM_SLEEP);
usr/src/uts/common/vm/vm_usage.c
584
bound = kmem_cache_alloc(vmu_bound_cache, KM_SLEEP);
usr/src/uts/common/vm/vpm.c
217
vpmd_cpu = kmem_zalloc(sizeof (union vpm_cpu) * max_ncpus, KM_SLEEP);
usr/src/uts/common/vm/vpm.c
229
KM_SLEEP);
usr/src/uts/common/vm/vpm.c
249
vpmd_vpmap = kmem_alloc(sizeof (struct vpmap) * npages, KM_SLEEP);
usr/src/uts/common/xen/dtrace/xdt.c
2058
sizeof (xdt_schedinfo_t), KM_SLEEP);
usr/src/uts/common/xen/dtrace/xdt.c
639
KM_SLEEP);
usr/src/uts/common/xen/dtrace/xdt.c
641
KM_SLEEP);
usr/src/uts/common/xen/io/blk_common.c
175
ring = kmem_zalloc(sizeof (struct blk_ring_s), KM_SLEEP);
usr/src/uts/common/xen/io/evtchn_dev.c
267
kbuf = kmem_alloc(PAGESIZE, KM_SLEEP);
usr/src/uts/common/xen/io/evtchn_dev.c
521
ep->ring = kmem_alloc(PAGESIZE, KM_SLEEP);
usr/src/uts/common/xen/io/evtchn_dev.c
721
sizeof (int) * evtchndrv_nclones, KM_SLEEP);
usr/src/uts/common/xen/io/xdb.c
1136
li = kmem_zalloc(sizeof (*li), KM_SLEEP);
usr/src/uts/common/xen/io/xdb.c
1179
li = kmem_zalloc(sizeof (*li), KM_SLEEP);
usr/src/uts/common/xen/io/xdb.c
1247
nodepath = kmem_zalloc(MAXPATHLEN, KM_SLEEP);
usr/src/uts/common/xen/io/xdb.c
228
path = kmem_alloc(MAXPATHLEN, KM_SLEEP);
usr/src/uts/common/xen/io/xdb.c
487
sizeof (xdb_request_t), KM_SLEEP);
usr/src/uts/common/xen/io/xdb.c
491
sizeof (uint64_t), KM_SLEEP);
usr/src/uts/common/xen/io/xdf.c
1654
vdp->xdf_flush_mem = kmem_alloc(vdp->xdf_xdev_secsize * 2, KM_SLEEP);
usr/src/uts/common/xen/io/xdf.c
2139
path = kmem_zalloc(MAXPATHLEN, KM_SLEEP);
usr/src/uts/common/xen/io/xdf.c
2142
i = kmem_alloc(sizeof (*i), KM_SLEEP);
usr/src/uts/common/xen/io/xdf.c
2144
i->xdf_he_path = i_ddi_strdup(path, KM_SLEEP);
usr/src/uts/common/xen/io/xdf.c
2448
bp = getrbuf(KM_SLEEP);
usr/src/uts/common/xen/io/xdf.c
3280
dkdevidp = (struct dk_devid *)kmem_zalloc(NBPSCTR, KM_SLEEP);
usr/src/uts/common/xen/io/xdf.c
3337
dkdevidp = kmem_zalloc(NBPSCTR, KM_SLEEP);
usr/src/uts/common/xen/io/xdf.c
3361
vdp->xdf_tgt_devid = kmem_alloc(i, KM_SLEEP);
usr/src/uts/common/xen/io/xenbus_client.c
101
state = kmem_alloc(strlen(path) + 1 + strlen(path2) + 1, KM_SLEEP);
usr/src/uts/common/xen/io/xenbus_client.c
160
1, KM_SLEEP);
usr/src/uts/common/xen/io/xenbus_client.c
177
printf_buffer = kmem_alloc(PRINTF_BUFFER_SIZE, KM_SLEEP);
usr/src/uts/common/xen/io/xenbus_dev.c
580
trans = kmem_alloc(sizeof (*trans), KM_SLEEP);
usr/src/uts/common/xen/io/xenbus_xs.c
393
KM_SLEEP);
usr/src/uts/common/xen/io/xenbus_xs.c
413
ret = kmem_alloc(*num * sizeof (char *) + (len - 1), KM_SLEEP);
usr/src/uts/common/xen/io/xenbus_xs.c
658
printf_buffer = kmem_alloc(PRINTF_BUFFER_SIZE, KM_SLEEP);
usr/src/uts/common/xen/io/xenbus_xs.c
749
xbn = kmem_alloc(sizeof (struct xenbus_notify), KM_SLEEP);
usr/src/uts/common/xen/io/xenbus_xs.c
969
msg = kmem_alloc(sizeof (*msg), KM_SLEEP);
usr/src/uts/common/xen/io/xenbus_xs.c
978
body = kmem_alloc(mlen, KM_SLEEP);
usr/src/uts/common/xen/io/xencons.c
259
xencons_wbuf = kmem_alloc(XENCONS_WBUFSIZE, KM_SLEEP);
usr/src/uts/common/xen/io/xencons.c
345
xcp->priv = kmem_zalloc(sizeof (struct asyncline), KM_SLEEP);
usr/src/uts/common/xen/io/xnb.c
408
xnbp = kmem_zalloc(sizeof (*xnbp), KM_SLEEP);
usr/src/uts/common/xen/io/xnbo.c
589
mca = kmem_alloc(sizeof (*mca), KM_SLEEP);
usr/src/uts/common/xen/io/xnbo.c
638
xnbop = kmem_zalloc(sizeof (*xnbop), KM_SLEEP);
usr/src/uts/common/xen/io/xnbu.c
392
xnbup = kmem_zalloc(sizeof (*xnbup), KM_SLEEP);
usr/src/uts/common/xen/io/xnf.c
1014
xnfp = kmem_zalloc(sizeof (*xnfp), KM_SLEEP);
usr/src/uts/common/xen/io/xnf.c
1017
kmem_zalloc(sizeof (xnf_txid_t) * NET_TX_RING_SIZE, KM_SLEEP);
usr/src/uts/common/xen/io/xnf.c
1020
kmem_zalloc(sizeof (xnf_buf_t *) * NET_RX_RING_SIZE, KM_SLEEP);
usr/src/uts/common/xen/io/xnf.c
1311
txp = kmem_cache_alloc(xnfp->xnf_tx_buf_cache, KM_SLEEP);
usr/src/uts/common/xen/io/xnf.c
745
bdesc = xnf_buf_get(xnfp, KM_SLEEP, B_FALSE);
usr/src/uts/common/xen/io/xpvd.c
368
buff = kmem_alloc((size_t)prop_len, KM_SLEEP);
usr/src/uts/common/xen/io/xpvd.c
878
char *device_name = i_ddi_strdup(name, KM_SLEEP);
usr/src/uts/common/xen/io/xpvtap.c
1414
rstruct = kmem_alloc(sizeof (xpvtap_rs_t), KM_SLEEP);
usr/src/uts/common/xen/io/xpvtap.c
1426
rstruct->rs_free = kmem_alloc(rstruct->rs_free_size, KM_SLEEP);
usr/src/uts/common/xen/io/xpvtap.c
574
AS_UNMAP_EVENT, *addrp, len, KM_SLEEP);
usr/src/uts/common/xen/io/xpvtap.c
900
KM_SLEEP);
usr/src/uts/common/xen/os/gnttab.c
180
gnttab_list[i] = kmem_alloc(PAGESIZE, KM_SLEEP);
usr/src/uts/common/xen/os/gnttab.c
514
KM_SLEEP);
usr/src/uts/common/xen/os/gnttab.c
607
KM_SLEEP);
usr/src/uts/common/xen/os/gnttab.c
612
gnttab_list[i] = kmem_alloc(PAGESIZE, KM_SLEEP);
usr/src/uts/common/xen/os/xvdi.c
1296
path = kmem_zalloc(n, KM_SLEEP);
usr/src/uts/common/xen/os/xvdi.c
1302
xxw_new = kmem_zalloc(sizeof (*xxw_new), KM_SLEEP);
usr/src/uts/common/xen/os/xvdi.c
1509
path = kmem_alloc(len, KM_SLEEP);
usr/src/uts/common/xen/os/xvdi.c
1637
path = kmem_alloc(len, KM_SLEEP);
usr/src/uts/common/xen/os/xvdi.c
1770
path = i_ddi_strdup((char *)vec[XS_WATCH_PATH], KM_SLEEP);
usr/src/uts/common/xen/os/xvdi.c
1783
w = kmem_zalloc(sizeof (*w), KM_SLEEP);
usr/src/uts/common/xen/os/xvdi.c
1987
evt = kmem_alloc(sizeof (i_oestate_evt_t), KM_SLEEP);
usr/src/uts/common/xen/os/xvdi.c
2303
evt = kmem_alloc(sizeof (i_oestate_evt_t), KM_SLEEP);
usr/src/uts/common/xen/os/xvdi.c
272
pdp = kmem_zalloc(sizeof (*pdp), KM_SLEEP);
usr/src/uts/common/xen/os/xvdi.c
318
pdp->xd_xsdev.nodename = i_ddi_strdup(xsname, KM_SLEEP);
usr/src/uts/common/xen/os/xvdi.c
536
ring = kmem_zalloc(sizeof (xendev_ring_t), KM_SLEEP);
usr/src/uts/common/xen/os/xvdi.c
569
ring->xr_acc_hdl = impl_acc_hdl_alloc(KM_SLEEP, NULL);
usr/src/uts/common/xen/os/xvdi.c
673
*ringpp = ring = kmem_zalloc(sizeof (xendev_ring_t), KM_SLEEP);
usr/src/uts/common/xen/os/xvdi.c
805
c[0] = kmem_alloc(clen, KM_SLEEP);
usr/src/uts/i86pc/cpu/amd_opteron/ao_main.c
85
ao = *datap = kmem_zalloc(sizeof (ao_ms_data_t), KM_SLEEP);
usr/src/uts/i86pc/cpu/amd_opteron/ao_main.c
96
sp = kmem_zalloc(sizeof (struct ao_chipshared), KM_SLEEP);
usr/src/uts/i86pc/cpu/amd_opteron/ao_mca.c
863
sizeof (uint64_t), KM_SLEEP);
usr/src/uts/i86pc/cpu/authenticamd/authamd_main.c
505
authamd = *datap = kmem_zalloc(sizeof (authamd_data_t), KM_SLEEP);
usr/src/uts/i86pc/cpu/authenticamd/authamd_main.c
510
sp = kmem_zalloc(sizeof (struct authamd_nodeshared), KM_SLEEP);
usr/src/uts/i86pc/cpu/generic_cpu/gcpu_main.c
210
gcpu = *datap = kmem_zalloc(sizeof (gcpu_data_t), KM_SLEEP);
usr/src/uts/i86pc/cpu/generic_cpu/gcpu_main.c
220
sp = kmem_zalloc(sizeof (struct gcpu_chipshared), KM_SLEEP);
usr/src/uts/i86pc/cpu/generic_cpu/gcpu_mca.c
1205
sizeof (struct gcpu_bios_bankcfg), KM_SLEEP);
usr/src/uts/i86pc/cpu/generic_cpu/gcpu_mca.c
1220
kmem_zalloc(mca->gcpu_mca_lgsz, KM_SLEEP);
usr/src/uts/i86pc/cpu/generic_cpu/gcpu_mca.c
1237
KM_SLEEP);
usr/src/uts/i86pc/cpu/generic_cpu/gcpu_poll_subr.c
76
gcpu_poll_trace_nent, KM_SLEEP);
usr/src/uts/i86pc/i86hvm/io/xpv/evtchn.c
351
ihp = kmem_zalloc(sizeof (ddi_intr_handle_t), KM_SLEEP);
usr/src/uts/i86pc/io/acpi/acpidev/acpidev_cpu.c
441
* acpidev_cpu_map_count, KM_SLEEP);
usr/src/uts/i86pc/io/acpi/acpidev/acpidev_dr.c
2163
char *path = kmem_alloc(MAXPATHLEN, KM_SLEEP);
usr/src/uts/i86pc/io/acpi/acpidev/acpidev_dr.c
442
buf = kmem_zalloc(cnt, KM_SLEEP);
usr/src/uts/i86pc/io/acpi/acpidev/acpidev_dr.c
504
path = kmem_alloc(MAXPATHLEN, KM_SLEEP);
usr/src/uts/i86pc/io/acpi/acpidev/acpidev_dr.c
517
path = kmem_alloc(MAXPATHLEN, KM_SLEEP);
usr/src/uts/i86pc/io/acpi/acpidev/acpidev_drv.c
1143
item = kmem_zalloc(sizeof (*item), KM_SLEEP);
usr/src/uts/i86pc/io/acpi/acpidev/acpidev_drv.c
920
devname = kmem_zalloc(ACPIDEV_MAX_NAMELEN + 1, KM_SLEEP);
usr/src/uts/i86pc/io/acpi/acpidev/acpidev_resource.c
121
regp = kmem_zalloc(sz, KM_SLEEP);
usr/src/uts/i86pc/io/acpi/acpidev/acpidev_resource.c
136
rngp = kmem_zalloc(sz, KM_SLEEP);
usr/src/uts/i86pc/io/acpi/acpidev/acpidev_resource.c
151
busp = kmem_zalloc(sz, KM_SLEEP);
usr/src/uts/i86pc/io/acpi/acpidev/acpidev_resource.c
72
rhdl = kmem_zalloc(sizeof (*rhdl), KM_SLEEP);
usr/src/uts/i86pc/io/acpi/acpidev/acpidev_util.c
342
infop = kmem_zalloc(sizeof (*infop), KM_SLEEP);
usr/src/uts/i86pc/io/acpi/acpidev/acpidev_util.c
457
objhdl = kmem_zalloc(sizeof (*objhdl), KM_SLEEP);
usr/src/uts/i86pc/io/acpi/acpidev/acpidev_util.c
587
up = kmem_zalloc(sizeof (*up), KM_SLEEP);
usr/src/uts/i86pc/io/acpi/acpidev/acpidev_util.c
588
up->apu_uid = ddi_strdup(uid, KM_SLEEP);
usr/src/uts/i86pc/io/acpi/acpidev/acpidev_util.c
818
compatible = kmem_zalloc(sizeof (char *) * count, KM_SLEEP);
usr/src/uts/i86pc/io/acpi/acpinex/acpinex_event.c
127
&evnt_val, KM_SLEEP);
usr/src/uts/i86pc/io/acpi/acpinex/acpinex_event.c
138
evnt_attr_list, &eid, KM_SLEEP);
usr/src/uts/i86pc/io/acpi/acpinex/acpinex_event.c
65
attach_pnt = kmem_zalloc(MAXPATHLEN, KM_SLEEP);
usr/src/uts/i86pc/io/acpi/acpinex/acpinex_event.c
76
rv = sysevent_add_attr(&evnt_attr_list, DR_AP_ID, &evnt_val, KM_SLEEP);
usr/src/uts/i86pc/io/acpi/acpinex/acpinex_event.c
89
KM_SLEEP);
usr/src/uts/i86pc/io/acpi/drmach_acpi/drmach_acpi.c
1064
cp = kmem_zalloc(sizeof (drmach_cpu_t), KM_SLEEP);
usr/src/uts/i86pc/io/acpi/drmach_acpi/drmach_acpi.c
1263
mp = kmem_zalloc(sizeof (drmach_mem_t), KM_SLEEP);
usr/src/uts/i86pc/io/acpi/drmach_acpi/drmach_acpi.c
1585
char *path = kmem_alloc(MAXPATHLEN, KM_SLEEP);
usr/src/uts/i86pc/io/acpi/drmach_acpi/drmach_acpi.c
1630
char *path = kmem_alloc(MAXPATHLEN, KM_SLEEP);
usr/src/uts/i86pc/io/acpi/drmach_acpi/drmach_acpi.c
2198
name = kmem_zalloc(MAXPATHLEN, KM_SLEEP);
usr/src/uts/i86pc/io/acpi/drmach_acpi/drmach_acpi.c
2881
km_flag = (flag == SE_SLEEP) ? KM_SLEEP : KM_NOSLEEP;
usr/src/uts/i86pc/io/acpi/drmach_acpi/drmach_acpi.c
338
np = kmem_zalloc(sizeof (drmach_node_t), KM_SLEEP);
usr/src/uts/i86pc/io/acpi/drmach_acpi/drmach_acpi.c
393
arr = kmem_zalloc(sizeof (drmach_array_t), KM_SLEEP);
usr/src/uts/i86pc/io/acpi/drmach_acpi/drmach_acpi.c
400
arr->arr = kmem_zalloc(arr->arr_sz, KM_SLEEP);
usr/src/uts/i86pc/io/acpi/drmach_acpi/drmach_acpi.c
550
bp = kmem_zalloc(sizeof (drmach_board_t), KM_SLEEP);
usr/src/uts/i86pc/io/acpi/drmach_acpi/drmach_acpi.c
685
ap = kmem_zalloc(sizeof (*ap), KM_SLEEP);
usr/src/uts/i86pc/io/acpi/drmach_acpi/drmach_acpi.c
985
ip = kmem_zalloc(sizeof (drmach_io_t), KM_SLEEP);
usr/src/uts/i86pc/io/acpi_drv/acpi_video.c
444
vidop = kmem_zalloc(sizeof (struct acpi_video_output), KM_SLEEP);
usr/src/uts/i86pc/io/acpi_drv/acpi_video.c
457
KM_SLEEP);
usr/src/uts/i86pc/io/acpi_drv/acpi_video.c
467
vidbp->levels = kmem_zalloc(nlev * sizeof (uint32_t), KM_SLEEP);
usr/src/uts/i86pc/io/acpi_drv/acpi_video.c
546
vidsp = kmem_zalloc(sizeof (struct acpi_video_switch), KM_SLEEP);
usr/src/uts/i86pc/io/amd_iommu/amd_iommu_acpi.c
111
devp = kmem_alloc(sizeof (ivhd_deventry_t), KM_SLEEP);
usr/src/uts/i86pc/io/amd_iommu/amd_iommu_acpi.c
212
devp = kmem_alloc(sizeof (ivhd_deventry_t), KM_SLEEP);
usr/src/uts/i86pc/io/amd_iommu/amd_iommu_acpi.c
268
c = kmem_zalloc(sizeof (ivhd_container_t), KM_SLEEP);
usr/src/uts/i86pc/io/amd_iommu/amd_iommu_acpi.c
269
c->ivhdc_ivhd = kmem_alloc(sizeof (ivhd_t), KM_SLEEP);
usr/src/uts/i86pc/io/amd_iommu/amd_iommu_acpi.c
311
c = kmem_zalloc(sizeof (ivmd_container_t), KM_SLEEP);
usr/src/uts/i86pc/io/amd_iommu/amd_iommu_acpi.c
312
c->ivmdc_ivmd = kmem_alloc(sizeof (ivmd_t), KM_SLEEP);
usr/src/uts/i86pc/io/amd_iommu/amd_iommu_acpi.c
353
acpi = kmem_zalloc(sizeof (amd_iommu_acpi_t), KM_SLEEP);
usr/src/uts/i86pc/io/amd_iommu/amd_iommu_acpi.c
354
acpi->acp_ivrs = kmem_alloc(sizeof (ivrs_t), KM_SLEEP);
usr/src/uts/i86pc/io/amd_iommu/amd_iommu_acpi.c
483
acpi_ivhdp = kmem_zalloc(sizeof (*acpi_ivhdp), KM_SLEEP);
usr/src/uts/i86pc/io/amd_iommu/amd_iommu_acpi.c
700
acpi_ivmdp = kmem_zalloc(sizeof (*acpi_ivmdp), KM_SLEEP);
usr/src/uts/i86pc/io/amd_iommu/amd_iommu_acpi.c
783
KM_SLEEP);
usr/src/uts/i86pc/io/amd_iommu/amd_iommu_acpi.c
786
* (AMD_IOMMU_ACPI_INFO_HASH_SZ + 1), KM_SLEEP);
usr/src/uts/i86pc/io/amd_iommu/amd_iommu_acpi.c
789
* (AMD_IOMMU_ACPI_INFO_HASH_SZ + 1), KM_SLEEP);
usr/src/uts/i86pc/io/amd_iommu/amd_iommu_impl.c
124
iommulib_ops = kmem_zalloc(sizeof (iommulib_ops_t), KM_SLEEP);
usr/src/uts/i86pc/io/amd_iommu/amd_iommu_impl.c
1437
path = kmem_alloc(MAXPATHLEN, KM_SLEEP);
usr/src/uts/i86pc/io/amd_iommu/amd_iommu_impl.c
1962
KM_SLEEP);
usr/src/uts/i86pc/io/amd_iommu/amd_iommu_impl.c
1987
KM_SLEEP);
usr/src/uts/i86pc/io/amd_iommu/amd_iommu_impl.c
754
KM_SLEEP);
usr/src/uts/i86pc/io/amd_iommu/amd_iommu_impl.c
947
iommu = kmem_zalloc(sizeof (amd_iommu_t), KM_SLEEP);
usr/src/uts/i86pc/io/amd_iommu/amd_iommu_page_tables.c
127
sizeof (amd_iommu_domain_t *) * AMD_IOMMU_DOMAIN_HASH_SZ, KM_SLEEP);
usr/src/uts/i86pc/io/amd_iommu/amd_iommu_page_tables.c
1533
km_flags == KM_SLEEP ? VM_SLEEP : VM_NOSLEEP);
usr/src/uts/i86pc/io/amd_iommu/amd_iommu_page_tables.c
175
km_flags == KM_SLEEP ? VM_SLEEP : VM_NOSLEEP);
usr/src/uts/i86pc/io/amd_iommu/amd_iommu_page_tables.c
627
AMD_IOMMU_PGTABLE_HASH_SZ, KM_SLEEP);
usr/src/uts/i86pc/io/amd_iommu/amd_iommu_page_tables.c
800
km_flags == KM_SLEEP ? DDI_DMA_SLEEP : DDI_DMA_DONTWAIT,
usr/src/uts/i86pc/io/amd_iommu/amd_iommu_page_tables.c
816
km_flags == KM_SLEEP ? DDI_DMA_SLEEP : DDI_DMA_DONTWAIT,
usr/src/uts/i86pc/io/amd_iommu/amd_iommu_page_tables.c
843
km_flags == KM_SLEEP ? DDI_DMA_SLEEP : DDI_DMA_DONTWAIT,
usr/src/uts/i86pc/io/apix/apix.c
2275
irqp = kmem_zalloc(sizeof (apic_irq_t), KM_SLEEP);
usr/src/uts/i86pc/io/apix/apix.c
291
hdlp = kmem_zalloc(nproc * sizeof (apix_impl_t), KM_SLEEP);
usr/src/uts/i86pc/io/apix/apix.c
309
KM_SLEEP);
usr/src/uts/i86pc/io/apix/apix.c
313
KM_SLEEP);
usr/src/uts/i86pc/io/apix/apix_utils.c
1193
dvp = kmem_zalloc(sizeof (apix_dev_vector_t), KM_SLEEP);
usr/src/uts/i86pc/io/apix/apix_utils.c
1580
irqp = kmem_zalloc(sizeof (apic_irq_t), KM_SLEEP);
usr/src/uts/i86pc/io/apix/apix_utils.c
1863
irqp = kmem_zalloc(sizeof (apic_irq_t), KM_SLEEP);
usr/src/uts/i86pc/io/apix/apix_utils.c
801
mem = kmem_zalloc(sizeof (struct autovec), KM_SLEEP);
usr/src/uts/i86pc/io/consplat.c
444
us_path = kmem_alloc(MAXPATHLEN, KM_SLEEP);
usr/src/uts/i86pc/io/dr/dr.c
1581
list = kmem_zalloc(len, KM_SLEEP);
usr/src/uts/i86pc/io/dr/dr_cpu.c
373
MAX_CPU_UNITS_PER_BOARD, KM_SLEEP);
usr/src/uts/i86pc/io/dr/dr_cpu.c
719
KM_SLEEP);
usr/src/uts/i86pc/io/dr/dr_mem_acpi.c
342
char *path = kmem_alloc(MAXPATHLEN, KM_SLEEP);
usr/src/uts/i86pc/io/dr/dr_quiesce.c
1002
buf = (char *)kmem_zalloc(MAXPATHLEN, KM_SLEEP);
usr/src/uts/i86pc/io/fipe/fipe_pm.c
1204
fipe_gbl_ctrl.state_buf = kmem_zalloc(nsize, KM_SLEEP);
usr/src/uts/i86pc/io/fipe/fipe_pm.c
957
buf = kmem_zalloc(size, KM_SLEEP);
usr/src/uts/i86pc/io/fipe/fipe_pm.c
961
buf = kmem_zalloc(size, KM_SLEEP);
usr/src/uts/i86pc/io/gfx_private/gfxp_bitmap.c
242
softc->console->fb.shadow_fb = kmem_zalloc(size, KM_SLEEP);
usr/src/uts/i86pc/io/gfx_private/gfxp_devmap.c
64
umem_cookie = kmem_zalloc(sizeof (struct ddi_umem_cookie), KM_SLEEP);
usr/src/uts/i86pc/io/gfx_private/gfxp_fb.c
166
return (kmem_zalloc(sizeof (struct gfxp_fb_softc), KM_SLEEP));
usr/src/uts/i86pc/io/gfx_private/gfxp_pci.c
164
if ((pci_bsf = kmem_zalloc(sizeof (gfxp_pci_bsf_t), KM_SLEEP))
usr/src/uts/i86pc/io/gfx_private/gfxp_pci.c
330
if ((pci_bsf = kmem_zalloc(sizeof (gfxp_pci_bsf_t), KM_SLEEP)) == NULL)
usr/src/uts/i86pc/io/gfx_private/gfxp_vgatext.c
149
vga = kmem_zalloc(sizeof (*vga), KM_SLEEP);
usr/src/uts/i86pc/io/hpet_acpi.c
1514
KM_SLEEP);
usr/src/uts/i86pc/io/hpet_acpi.c
240
num_timers * sizeof (uint64_t), KM_SLEEP);
usr/src/uts/i86pc/io/immu.c
812
immu = kmem_zalloc(sizeof (immu_t), KM_SLEEP);
usr/src/uts/i86pc/io/immu.c
959
iommulib_ops = kmem_alloc(sizeof (iommulib_ops_t), KM_SLEEP);
usr/src/uts/i86pc/io/immu_dmar.c
107
char *str = kmem_alloc(len + 1, KM_SLEEP);
usr/src/uts/i86pc/io/immu_dmar.c
190
scope = kmem_zalloc(sizeof (scope_t), KM_SLEEP);
usr/src/uts/i86pc/io/immu_dmar.c
242
idt = kmem_zalloc(sizeof (ioapic_drhd_t), KM_SLEEP);
usr/src/uts/i86pc/io/immu_dmar.c
309
drhd = kmem_zalloc(sizeof (drhd_t), KM_SLEEP);
usr/src/uts/i86pc/io/immu_dmar.c
367
rmrr = kmem_zalloc(sizeof (rmrr_t), KM_SLEEP);
usr/src/uts/i86pc/io/immu_dmar.c
440
tbl = kmem_zalloc(sizeof (dmar_table_t), KM_SLEEP);
usr/src/uts/i86pc/io/immu_dmar.c
696
+ sizeof (struct regspec), KM_SLEEP);
usr/src/uts/i86pc/io/immu_dvma.c
1272
domain = kmem_zalloc(sizeof (domain_t), KM_SLEEP);
usr/src/uts/i86pc/io/immu_dvma.c
1338
kmflags = (immu_flags & IMMU_FLAGS_NOSLEEP) ? KM_NOSLEEP : KM_SLEEP;
usr/src/uts/i86pc/io/immu_dvma.c
3077
waitfp == DDI_DMA_SLEEP ? KM_SLEEP : KM_NOSLEEP);
usr/src/uts/i86pc/io/immu_dvma.c
512
kmflags = (immu_flags & IMMU_FLAGS_NOSLEEP) ? KM_NOSLEEP : KM_SLEEP;
usr/src/uts/i86pc/io/immu_dvma.c
708
kmflags = (immu_flags & IMMU_FLAGS_NOSLEEP) ? KM_NOSLEEP : KM_SLEEP;
usr/src/uts/i86pc/io/immu_intrmap.c
346
intrmap = kmem_zalloc(sizeof (intrmap_t), KM_SLEEP);
usr/src/uts/i86pc/io/immu_intrmap.c
683
kmem_zalloc(sizeof (intrmap_private_t), KM_SLEEP);
usr/src/uts/i86pc/io/immu_intrmap.c
723
kmem_zalloc(sizeof (intrmap_private_t), KM_SLEEP);
usr/src/uts/i86pc/io/immu_qinv.c
416
qinv = kmem_zalloc(sizeof (qinv_t), KM_SLEEP);
usr/src/uts/i86pc/io/ioat/ioat_chan.c
118
state->is_channel = kmem_zalloc(state->is_chansize, KM_SLEEP);
usr/src/uts/i86pc/io/ioat/ioat_chan.c
640
ring = kmem_zalloc(sizeof (ioat_channel_ring_t), KM_SLEEP);
usr/src/uts/i86pc/io/ioat/ioat_chan.c
891
kmflag = KM_SLEEP;
usr/src/uts/i86pc/io/ioat/ioat_ioctl.c
220
buf = kmem_zalloc((buf_size * 2) + 0x1000, KM_SLEEP);
usr/src/uts/i86pc/io/ioat/ioat_rs.c
84
rstruct = kmem_alloc(sizeof (ioat_rs_t), KM_SLEEP);
usr/src/uts/i86pc/io/ioat/ioat_rs.c
96
rstruct->rs_free = kmem_alloc(rstruct->rs_free_size, KM_SLEEP);
usr/src/uts/i86pc/io/isa.c
398
KM_SLEEP);
usr/src/uts/i86pc/io/mp_platform_common.c
1869
newent = kmem_zalloc(sizeof (struct prs_irq_list_ent), KM_SLEEP);
usr/src/uts/i86pc/io/mp_platform_misc.c
1009
irqptr = kmem_zalloc(sizeof (apic_irq_t), KM_SLEEP);
usr/src/uts/i86pc/io/mp_platform_misc.c
1158
irqptr = kmem_zalloc(sizeof (apic_irq_t), KM_SLEEP);
usr/src/uts/i86pc/io/mp_platform_misc.c
1177
KM_SLEEP);
usr/src/uts/i86pc/io/mp_platform_misc.c
256
kmem_zalloc(sizeof (apic_irq_t), KM_SLEEP);
usr/src/uts/i86pc/io/pci/pci_common.c
149
sizeof (struct intrspec)), KM_SLEEP);
usr/src/uts/i86pc/io/pci/pci_kstats.c
170
kmem_zalloc(sizeof (pci_kstat_private_t), KM_SLEEP);
usr/src/uts/i86pc/io/pci/pci_tools.c
347
iget = kmem_alloc(iget_kmem_alloc_size, KM_SLEEP);
usr/src/uts/i86pc/io/pciex/npe.c
395
PCIE_DIP2PFD(devi) = kmem_zalloc(sizeof (pf_data_t), KM_SLEEP);
usr/src/uts/i86pc/io/pciex/pcie_x86.c
46
(pcie_x86_priv_t *)kmem_zalloc(sizeof (pcie_x86_priv_t), KM_SLEEP);
usr/src/uts/i86pc/io/pcplusmp/apic_introp.c
719
KM_SLEEP);
usr/src/uts/i86pc/io/ppm_plat.c
211
domp = kmem_zalloc(sizeof (*domp), KM_SLEEP);
usr/src/uts/i86pc/io/ppm_plat.c
214
domp->name = kmem_zalloc(MAXNAMELEN, KM_SLEEP);
usr/src/uts/i86pc/io/ppm_plat.c
226
dbp = kmem_zalloc(sizeof (struct ppm_db), KM_SLEEP);
usr/src/uts/i86pc/io/ppm_plat.c
228
KM_SLEEP);
usr/src/uts/i86pc/io/ppm_plat.c
244
dbp = kmem_zalloc(sizeof (struct ppm_db), KM_SLEEP);
usr/src/uts/i86pc/io/ppm_plat.c
246
KM_SLEEP);
usr/src/uts/i86pc/io/psm/psm_common.c
492
srsp = kmem_zalloc(srs_len, KM_SLEEP);
usr/src/uts/i86pc/io/psm/psm_common.c
729
newent = kmem_alloc(sizeof (acpi_irqlist_t), KM_SLEEP);
usr/src/uts/i86pc/io/psm/psm_common.c
809
KM_SLEEP);
usr/src/uts/i86pc/io/psm/psm_common.c
843
new_arr = kmem_zalloc(newsize * sizeof (irq_cache_t), KM_SLEEP);
usr/src/uts/i86pc/io/rootnex.c
1570
pdp->par_nintr, KM_SLEEP);
usr/src/uts/i86pc/io/rootnex.c
1717
kmflag = KM_SLEEP;
usr/src/uts/i86pc/io/rootnex.c
1975
dma->dp_sleep_flags = kmflag = KM_SLEEP;
usr/src/uts/i86pc/io/rootnex.c
2378
if (dma->dp_sleep_flags != KM_SLEEP &&
usr/src/uts/i86pc/io/rootnex.c
469
rootnex_state = kmem_zalloc(sizeof (rootnex_state_t), KM_SLEEP);
usr/src/uts/i86pc/io/rootnex.c
577
KM_SLEEP);
usr/src/uts/i86pc/io/rootnex.c
733
buf = kmem_alloc(REPORTDEV_BUFSIZE, KM_SLEEP);
usr/src/uts/i86pc/io/tzmon/tzmon.c
322
tzp = kmem_zalloc(sizeof (thermal_zone_t), KM_SLEEP);
usr/src/uts/i86pc/io/xsvc/xsvc.c
719
*mp = kmem_alloc(sizeof (xsvc_mem_t), KM_SLEEP);
usr/src/uts/i86pc/io/xsvc/xsvc.c
894
err = xsvc_umem_cookie_alloc(kva, psize, KM_SLEEP, &cookie);
usr/src/uts/i86pc/os/cmi.c
246
cmi = kmem_zalloc(sizeof (*cmi), KM_SLEEP);
usr/src/uts/i86pc/os/cmi_hw.c
1272
pg = kmem_zalloc(sz, KM_SLEEP);
usr/src/uts/i86pc/os/cmi_hw.c
1334
hdl = kmem_zalloc(sizeof (*hdl), KM_SLEEP);
usr/src/uts/i86pc/os/cmi_hw.c
345
hep = kmem_alloc(sizeof (*hep), KM_SLEEP);
usr/src/uts/i86pc/os/cmi_hw.c
495
hep = kmem_alloc(sizeof (*hep), KM_SLEEP);
usr/src/uts/i86pc/os/cms.c
237
cms = kmem_zalloc(sizeof (cms_t), KM_SLEEP);
usr/src/uts/i86pc/os/cms.c
419
cdp = kmem_alloc(sizeof (*cdp), KM_SLEEP);
usr/src/uts/i86pc/os/cpr_impl.c
1003
KM_SLEEP);
usr/src/uts/i86pc/os/cpr_impl.c
1097
wc_cpu->wc_saved_stack = kmem_zalloc(stack_size, KM_SLEEP);
usr/src/uts/i86pc/os/cpupm/cpu_acpi.c
1067
hspeeds = kmem_zalloc(nspeeds * sizeof (int), KM_SLEEP);
usr/src/uts/i86pc/os/cpupm/cpu_acpi.c
1114
handle = kmem_zalloc(sizeof (cpu_acpi_state_t), KM_SLEEP);
usr/src/uts/i86pc/os/cpupm/cpu_acpi.c
366
KM_SLEEP);
usr/src/uts/i86pc/os/cpupm/cpu_acpi.c
396
KM_SLEEP);
usr/src/uts/i86pc/os/cpupm/cpu_acpi.c
742
CPU_ACPI_CSTATES(handle) = kmem_zalloc(alloc_size, KM_SLEEP);
usr/src/uts/i86pc/os/cpupm/cpu_acpi.c
814
CPU_ACPI_CSTATES_SIZE(count), KM_SLEEP);
usr/src/uts/i86pc/os/cpupm/cpu_acpi.c
995
buffer = kmem_zalloc(bufsize, KM_SLEEP);
usr/src/uts/i86pc/os/cpupm/cpupm_mach.c
156
kmem_zalloc(sizeof (cpupm_mach_state_t), KM_SLEEP);
usr/src/uts/i86pc/os/cpupm/cpupm_mach.c
499
dptr = kmem_zalloc(sizeof (cpupm_state_domains_t), KM_SLEEP);
usr/src/uts/i86pc/os/cpupm/cpupm_mach.c
593
KM_SLEEP);
usr/src/uts/i86pc/os/cpupm/cpupm_mach.c
818
entry = kmem_zalloc(sizeof (cpupm_notification_t), KM_SLEEP);
usr/src/uts/i86pc/os/cpupm/turbo.c
179
turbo_info = kmem_zalloc(sizeof (cpupm_mach_turbo_info_t), KM_SLEEP);
usr/src/uts/i86pc/os/ddi_impl.c
1327
if (page_resv(pgcnt, (cansleep) ? KM_SLEEP : KM_NOSLEEP) == 0) {
usr/src/uts/i86pc/os/ddi_impl.c
1440
raddr = kmem_cache_alloc(cp, (cansleep) ? KM_SLEEP :
usr/src/uts/i86pc/os/ddi_impl.c
152
prop_name = kmem_alloc(proplen, KM_SLEEP);
usr/src/uts/i86pc/os/ddi_impl.c
1984
bop_staging_area = kmem_zalloc(MMU_PAGESIZE, KM_SLEEP);
usr/src/uts/i86pc/os/ddi_impl.c
2043
fp = kmem_zalloc(sizeof (*fp), KM_SLEEP);
usr/src/uts/i86pc/os/ddi_impl.c
2044
bd = kmem_zalloc(sizeof (*bd), KM_SLEEP);
usr/src/uts/i86pc/os/ddi_impl.c
2045
fd = kmem_zalloc(sizeof (*fd), KM_SLEEP);
usr/src/uts/i86pc/os/ddi_impl.c
2064
sizeof (*fd->vf_map[i]), KM_SLEEP);
usr/src/uts/i86pc/os/ddi_impl.c
2068
fd->vf_bytes = kmem_alloc(bd->uncompressed_size, KM_SLEEP);
usr/src/uts/i86pc/os/ddi_impl.c
2668
probe = kmem_alloc(sizeof (*probe), KM_SLEEP);
usr/src/uts/i86pc/os/ddi_impl.c
476
new = pdptr->par_intr = kmem_zalloc(size, KM_SLEEP);
usr/src/uts/i86pc/os/ddi_impl.c
513
new = pdptr->par_intr = kmem_zalloc(size, KM_SLEEP);
usr/src/uts/i86pc/os/ddi_impl.c
608
*ppd = pdptr = kmem_zalloc(sizeof (*pdptr), KM_SLEEP);
usr/src/uts/i86pc/os/ddi_impl.c
676
new = kmem_zalloc(n * sizeof (struct intrspec), KM_SLEEP);
usr/src/uts/i86pc/os/ddi_impl.c
698
out = kmem_alloc(size, KM_SLEEP);
usr/src/uts/i86pc/os/ddi_impl.c
925
hdlp->ih_private = (void *)kmem_zalloc(sizeof (ihdl_plat_t), KM_SLEEP);
usr/src/uts/i86pc/os/dtrace_subr.c
67
hdlr = kmem_alloc(sizeof (dtrace_invop_hdlr_t), KM_SLEEP);
usr/src/uts/i86pc/os/ibft.c
373
initiator->ini_name_len + 1, KM_SLEEP);
usr/src/uts/i86pc/os/ibft.c
544
KM_SLEEP);
usr/src/uts/i86pc/os/ibft.c
568
KM_SLEEP);
usr/src/uts/i86pc/os/ibft.c
589
KM_SLEEP);
usr/src/uts/i86pc/os/ibft.c
606
KM_SLEEP);
usr/src/uts/i86pc/os/ibft.c
631
KM_SLEEP);
usr/src/uts/i86pc/os/ibft.c
767
KM_SLEEP);
usr/src/uts/i86pc/os/lgrpplat.c
3019
buf = kmem_alloc(size, KM_SLEEP);
usr/src/uts/i86pc/os/mp_pc.c
182
ct = kmem_zalloc(ctsize, KM_SLEEP);
usr/src/uts/i86pc/os/mp_startup.c
152
cp->cpu_idstr = kmem_zalloc(CPU_IDSTRLEN, KM_SLEEP);
usr/src/uts/i86pc/os/mp_startup.c
153
cp->cpu_brandstr = kmem_zalloc(CPU_IDSTRLEN, KM_SLEEP);
usr/src/uts/i86pc/os/mp_startup.c
306
cp = kmem_zalloc(sizeof (*cp), KM_SLEEP);
usr/src/uts/i86pc/os/mp_startup.c
415
cp->cpu_gdt = kmem_zalloc(PAGESIZE, KM_SLEEP);
usr/src/uts/i86pc/os/mp_startup.c
422
cp->cpu_m.mcpu_ldt = kmem_zalloc(LDT_CPU_SIZE, KM_SLEEP);
usr/src/uts/i86pc/os/mp_startup.c
432
cp->cpu_idt = kmem_alloc(PAGESIZE, KM_SLEEP);
usr/src/uts/i86pc/os/mp_startup.c
465
ttc->ttc_first = (uintptr_t)kmem_zalloc(trap_trace_bufsize, KM_SLEEP);
usr/src/uts/i86pc/os/pci_bios.c
142
routes = kmem_zalloc(n * sizeof (pci_irq_route_t), KM_SLEEP);
usr/src/uts/i86pc/os/pci_bios.c
154
routes = kmem_zalloc(n * sizeof (pci_irq_route_t), KM_SLEEP);
usr/src/uts/i86pc/os/pci_cfgacc_x86.c
268
entry = kmem_zalloc(sizeof (cfgacc_bus_range_t), KM_SLEEP);
usr/src/uts/i86pc/os/pmem.c
306
kflags = flags & PMEM_NOSLEEP ? KM_NOSLEEP : KM_SLEEP;
usr/src/uts/i86pc/os/startup.c
1456
newpath = kmem_alloc(newlen, KM_SLEEP);
usr/src/uts/i86pc/os/startup.c
2305
KM_SLEEP);
usr/src/uts/i86pc/os/startup.c
3055
tp = kmem_alloc(TBUFSIZE, KM_SLEEP);
usr/src/uts/i86pc/os/startup.c
3087
isa_list = strcpy(kmem_alloc(len, KM_SLEEP), tp);
usr/src/uts/i86pc/os/timestamp.c
1049
tsc_calibration = kmem_zalloc(tsc_name_len + 1, KM_SLEEP);
usr/src/uts/i86pc/os/timestamp.c
1093
tsccpp = kmem_zalloc(tsc_set_size, KM_SLEEP);
usr/src/uts/i86pc/os/timestamp.c
766
tscp = kmem_zalloc(PAGESIZE, KM_SLEEP);
usr/src/uts/i86pc/os/x_call.c
215
msg = kmem_zalloc(sizeof (*msg), KM_SLEEP);
usr/src/uts/i86pc/os/x_call.c
227
msg = kmem_zalloc(sizeof (*msg), KM_SLEEP);
usr/src/uts/i86pc/os/x_call.c
232
msg = kmem_zalloc(sizeof (*msg), KM_SLEEP);
usr/src/uts/i86pc/os/x_call.c
243
msg = kmem_zalloc(sizeof (*msg), KM_SLEEP);
usr/src/uts/i86pc/sys/dr_util.h
39
((t *)kmem_zalloc((size_t)(n) * sizeof (t), KM_SLEEP))
usr/src/uts/i86pc/vm/hat_i86.c
1055
KM_SLEEP);
usr/src/uts/i86pc/vm/hat_i86.c
1088
hci->hci_pcp_l2ptes = kmem_zalloc(MMU_PAGESIZE, KM_SLEEP);
usr/src/uts/i86pc/vm/hat_i86.c
1094
hci->hci_pcp_l3ptes = kmem_zalloc(MMU_PAGESIZE, KM_SLEEP);
usr/src/uts/i86pc/vm/hat_i86.c
475
hat = kmem_cache_alloc(hat_cache, KM_SLEEP);
usr/src/uts/i86pc/vm/hat_i86.c
534
hat->hat_ht_hash = kmem_cache_alloc(hat32_hash_cache, KM_SLEEP);
usr/src/uts/i86pc/vm/hat_i86.c
537
hat->hat_ht_hash = kmem_cache_alloc(hat_hash_cache, KM_SLEEP);
usr/src/uts/i86pc/vm/hat_i86.c
611
hat = kmem_cache_alloc(hat_cache, KM_SLEEP);
usr/src/uts/i86pc/vm/hat_i86.c
619
hat->hat_ht_hash = kmem_cache_alloc(hat_hash_cache, KM_SLEEP);
usr/src/uts/i86pc/vm/hment.c
189
int km_flag = can_steal_post_boot ? KM_NOSLEEP : KM_SLEEP;
usr/src/uts/i86pc/vm/hment.c
639
KM_SLEEP);
usr/src/uts/i86pc/vm/hment.c
641
mlist_lock = kmem_zalloc(MLIST_NUM_LOCK * sizeof (kmutex_t), KM_SLEEP);
usr/src/uts/i86pc/vm/hment.c
643
hash_lock = kmem_zalloc(HASH_NUM_LOCK * sizeof (kmutex_t), KM_SLEEP);
usr/src/uts/i86pc/vm/htable.c
1893
hci = kmem_zalloc(sizeof (*hci), KM_SLEEP);
usr/src/uts/i86pc/vm/htable.c
789
int kmflags = (can_steal_post_boot ? KM_NOSLEEP : KM_SLEEP);
usr/src/uts/i86pc/vm/i86_mmu.c
138
kmem_alloc(htable_cnt * sizeof (htable_t *), KM_SLEEP);
usr/src/uts/i86pc/vm/vm_machdep.c
2242
(flags & PG_WAIT) ? KM_SLEEP : KM_NOSLEEP);
usr/src/uts/i86pc/vm/vm_machdep.c
2767
kflags = flags & PG_WAIT ? KM_SLEEP : KM_NOSLEEP;
usr/src/uts/i86xpv/cpu/generic_cpu/gcpu_mca_xpv.c
66
gcpu_xpv_bankregs = kmem_zalloc(gcpu_xpv_bankregs_sz, KM_SLEEP);
usr/src/uts/i86xpv/cpu/generic_cpu/gcpu_poll_xpv.c
159
gcpu_xpv_poll_bankregs = kmem_zalloc(sz, KM_SLEEP);
usr/src/uts/i86xpv/io/privcmd_hcall.c
1072
kop = (count == 1) ? &single_kop : kmem_alloc(bytes, KM_SLEEP);
usr/src/uts/i86xpv/io/privcmd_hcall.c
172
kreq = (count == 1) ? &single_kreq : kmem_alloc(bytes, KM_SLEEP);
usr/src/uts/i86xpv/io/privcmd_hcall.c
92
iep->ie_kaddr = kmem_alloc(size, KM_SLEEP);
usr/src/uts/i86xpv/io/psm/mp_platform_xpv.c
1108
irqptr = kmem_zalloc(sizeof (apic_irq_t), KM_SLEEP);
usr/src/uts/i86xpv/io/psm/mp_platform_xpv.c
1127
KM_SLEEP);
usr/src/uts/i86xpv/io/psm/mp_platform_xpv.c
240
kmem_zalloc(sizeof (apic_irq_t), KM_SLEEP);
usr/src/uts/i86xpv/io/psm/mp_platform_xpv.c
959
irqptr = kmem_zalloc(sizeof (apic_irq_t), KM_SLEEP);
usr/src/uts/i86xpv/io/psm/xpv_intr.c
207
KM_SLEEP);
usr/src/uts/i86xpv/os/mp_xen.c
335
sizeof (struct xen_evt_data), KM_SLEEP);
usr/src/uts/i86xpv/os/mp_xen.c
805
char *report = kmem_alloc(REPORT_LEN, KM_SLEEP);
usr/src/uts/i86xpv/os/mp_xen.c
889
state = kmem_alloc(MAXPATHLEN, KM_SLEEP);
usr/src/uts/i86xpv/os/xpv_panic.c
809
mp = kmem_zalloc(sizeof (*mp), KM_SLEEP);
usr/src/uts/i86xpv/os/xpv_panic.c
810
mp->filename = kobj_zalloc(strlen(XPV_FILENAME) + 1, KM_SLEEP);
usr/src/uts/i86xpv/os/xpv_panic.c
814
mcp = kmem_zalloc(sizeof (*mcp), KM_SLEEP);
usr/src/uts/i86xpv/os/xpv_panic.c
815
mcp->mod_modname = kobj_zalloc(strlen(XPV_MODNAME) + 1, KM_SLEEP);
usr/src/uts/i86xpv/os/xpv_panic.c
817
mcp->mod_filename = kobj_zalloc(strlen(XPV_FILENAME) + 1, KM_SLEEP);
usr/src/uts/i86xpv/os/xpv_panic.c
851
mp->shdrs = kmem_zalloc(n, KM_SLEEP);
usr/src/uts/i86xpv/os/xpv_panic.c
858
names = kmem_zalloc(shp->sh_size, KM_SLEEP);
usr/src/uts/i86xpv/os/xpv_panic.c
939
mp->symspace = kmem_zalloc(mp->symsize, KM_SLEEP);
usr/src/uts/i86xpv/os/xpv_panic.c
954
mp->ctfdata = kmem_zalloc(ctf_shp->sh_size, KM_SLEEP);
usr/src/uts/i86xpv/vm/seg_mf.c
110
struct segmf_data *data = kmem_zalloc(sizeof (*data), KM_SLEEP);
usr/src/uts/i86xpv/vm/seg_mf.c
135
data->map = kmem_alloc(npages * sizeof (segmf_map_t), KM_SLEEP);
usr/src/uts/i86xpv/vm/seg_mf.c
169
ndata->map = kmem_alloc(sz, KM_SLEEP);
usr/src/uts/intel/dtrace/fasttrap_isa.c
688
sigqueue_t *sqp = kmem_zalloc(sizeof (sigqueue_t), KM_SLEEP);
usr/src/uts/intel/dtrace/fbt.c
298
fbt = kmem_zalloc(sizeof (fbt_probe_t), KM_SLEEP);
usr/src/uts/intel/dtrace/fbt.c
370
fbt = kmem_zalloc(sizeof (fbt_probe_t), KM_SLEEP);
usr/src/uts/intel/dtrace/fbt.c
678
kmem_zalloc(fbt_probetab_size * sizeof (fbt_probe_t *), KM_SLEEP);
usr/src/uts/intel/dtrace/sdt.c
138
nname = kmem_alloc(len = strlen(name) + 1, KM_SLEEP);
usr/src/uts/intel/dtrace/sdt.c
151
sdp = kmem_zalloc(sizeof (sdt_probe_t), KM_SLEEP);
usr/src/uts/intel/dtrace/sdt.c
422
kmem_zalloc(sdt_probetab_size * sizeof (sdt_probe_t *), KM_SLEEP);
usr/src/uts/intel/io/acpica/acpi_enum.c
1083
io = kmem_zalloc(sizeof (int)*(*count), KM_SLEEP);
usr/src/uts/intel/io/acpica/acpi_enum.c
110
int *newar = kmem_alloc(newsz, KM_SLEEP);
usr/src/uts/intel/io/acpica/acpi_enum.c
163
KM_SLEEP);
usr/src/uts/intel/io/acpica/acpi_enum.c
558
MAX_PARSED_ACPI_RESOURCES, KM_SLEEP);
usr/src/uts/intel/io/acpica/acpi_enum.c
749
d = kmem_zalloc(sizeof (device_id_t), KM_SLEEP);
usr/src/uts/intel/io/acpica/acpi_enum.c
755
d = kmem_zalloc(sizeof (device_id_t), KM_SLEEP);
usr/src/uts/intel/io/acpica/acpi_enum.c
811
strs = kmem_zalloc(list_len * sizeof (char *), KM_SLEEP);
usr/src/uts/intel/io/acpica/acpi_enum.c
816
strs[i] = kmem_zalloc(13, KM_SLEEP);
usr/src/uts/intel/io/acpica/acpi_enum.c
922
d = kmem_zalloc(sizeof (device_id_t), KM_SLEEP);
usr/src/uts/intel/io/acpica/acpi_enum.c
928
d = kmem_zalloc(sizeof (device_id_t), KM_SLEEP);
usr/src/uts/intel/io/acpica/acpi_enum.c
945
d = kmem_zalloc(sizeof (device_id_t), KM_SLEEP);
usr/src/uts/intel/io/acpica/osl.c
201
acpi_osl_pr_buffer = kmem_alloc(ACPI_OSL_PR_BUFLEN, KM_SLEEP);
usr/src/uts/intel/io/acpica/osl.c
2021
KM_SLEEP);
usr/src/uts/intel/io/acpica/osl.c
2071
item = kmem_zalloc(sizeof (*item), KM_SLEEP);
usr/src/uts/intel/io/acpica/osl.c
2111
item = kmem_zalloc(sizeof (*item), KM_SLEEP);
usr/src/uts/intel/io/acpica/osl.c
2192
item = kmem_zalloc(sizeof (*item), KM_SLEEP);
usr/src/uts/intel/io/acpica/osl.c
292
buf1 = (char *)kmem_alloc(MAX_DAT_FILE_SIZE, KM_SLEEP);
usr/src/uts/intel/io/acpica/osl.c
299
buf2 = (char *)kmem_alloc(count, KM_SLEEP);
usr/src/uts/intel/io/acpica/osl.c
429
sp = (acpi_sema_t *)kmem_alloc(sizeof (acpi_sema_t), KM_SLEEP);
usr/src/uts/intel/io/acpica/osl.c
477
mp = (kmutex_t *)kmem_alloc(sizeof (kmutex_t), KM_SLEEP);
usr/src/uts/intel/io/acpica/osl.c
525
tmp_ptr = (ACPI_SIZE *)kmem_zalloc(Size, KM_SLEEP);
usr/src/uts/intel/io/acpica/osl.c
589
dummy_ioapicadr = kmem_zalloc(PAGESIZE, KM_SLEEP);
usr/src/uts/intel/io/amd8111s/amd8111s_main.c
1686
kmem_zalloc(sizeof (struct LayerPointers), KM_SLEEP);
usr/src/uts/intel/io/amd8111s/amd8111s_main.c
1693
pOdl = (struct odl *)kmem_zalloc(sizeof (struct odl), KM_SLEEP);
usr/src/uts/intel/io/amdzen/amdzen.c
1245
KM_SLEEP);
usr/src/uts/intel/io/amdzen/amdzen.c
2299
stub = kmem_alloc(sizeof (amdzen_stub_t), KM_SLEEP);
usr/src/uts/intel/io/amdzen/amdzen.c
2856
amdzen_data = kmem_zalloc(sizeof (amdzen_t), KM_SLEEP);
usr/src/uts/intel/io/amdzen/smntemp.c
466
KM_SLEEP);
usr/src/uts/intel/io/amdzen/smntemp.c
478
df->sd_nccd, KM_SLEEP);
usr/src/uts/intel/io/amdzen/zen_umc.c
3902
umc = kmem_zalloc(sizeof (zen_umc_t), KM_SLEEP);
usr/src/uts/intel/io/amr/amr.c
955
result = kmem_zalloc(bufsize, KM_SLEEP);
usr/src/uts/intel/io/coretemp/coretemp.c
356
sensor = kmem_zalloc(sizeof (coretemp_sensor_t), KM_SLEEP);
usr/src/uts/intel/io/coretemp/coretemp.c
455
ct = kmem_zalloc(sizeof (coretemp_t), KM_SLEEP);
usr/src/uts/intel/io/coretemp/coretemp.c
461
ct->coretemp_cpuset = cpuset_alloc(KM_SLEEP);
usr/src/uts/intel/io/devfm_machdep.c
100
wp->hdls = kmem_alloc(sizeof (cmi_hdl_t) * INIT_HDLS, KM_SLEEP);
usr/src/uts/intel/io/devfm_machdep.c
136
cmi_hdl_t *newarray = kmem_alloc(sz << 1, KM_SLEEP);
usr/src/uts/intel/io/devfm_machdep.c
157
(void) nvlist_alloc(nvlp, NV_UNIQUE_NAME, KM_SLEEP);
usr/src/uts/intel/io/devfm_machdep.c
240
cpus = kmem_alloc(sizeof (nvlist_t *) * wk.nhdl, KM_SLEEP);
usr/src/uts/intel/io/devfm_machdep.c
248
(void) nvlist_alloc(&nvl, NV_UNIQUE_NAME, KM_SLEEP);
usr/src/uts/intel/io/devfm_machdep.c
300
(void) nvlist_alloc(&nvl, NV_UNIQUE_NAME, KM_SLEEP);
usr/src/uts/intel/io/devfm_machdep.c
329
(void) nvlist_alloc(&nvl, NV_UNIQUE_NAME, KM_SLEEP);
usr/src/uts/intel/io/devfm_machdep.c
392
(void) nvlist_alloc(&caches[i], NV_UNIQUE_NAME, KM_SLEEP);
usr/src/uts/intel/io/devfm_machdep.c
464
(void) nvlist_alloc(&nvl, NV_UNIQUE_NAME, KM_SLEEP);
usr/src/uts/intel/io/dktp/controller/ata/ata_common.c
1012
ata_ctlp->ac_arq_pktp = kmem_zalloc(sizeof (ata_pkt_t), KM_SLEEP);
usr/src/uts/intel/io/dktp/controller/ata/ata_common.c
1190
ata_drvp = kmem_zalloc(sizeof (ata_drv_t), KM_SLEEP);
usr/src/uts/intel/io/dktp/controller/ata/ata_disk.c
3209
fwfile_memp = kmem_zalloc(size, KM_SLEEP);
usr/src/uts/intel/io/dktp/controller/ata/ata_disk.c
374
devp = kmem_zalloc(scsi_device_size(), KM_SLEEP);
usr/src/uts/intel/io/dktp/dcdev/dadk.c
1056
(size_t)iobp->b_pbytecnt, ((kmsflg == KM_SLEEP) ? 1 : 0), 0, NULL,
usr/src/uts/intel/io/dktp/dcdev/dadk.c
1694
if ((bp = getrbuf(KM_SLEEP)) == NULL) {
usr/src/uts/intel/io/dktp/dcdev/dadk.c
1745
bp = getrbuf(KM_SLEEP);
usr/src/uts/intel/io/dktp/dcdev/dadk.c
743
secbuf = kmem_zalloc(NBPSCTR, KM_SLEEP);
usr/src/uts/intel/io/dktp/dcdev/dadk.c
746
bp = getrbuf(KM_SLEEP);
usr/src/uts/intel/io/dktp/dcdev/dadk.c
854
bp = getrbuf(KM_SLEEP);
usr/src/uts/intel/io/dktp/dcdev/dadk.c
867
sizeof (struct dk_callback), KM_SLEEP);
usr/src/uts/intel/io/dktp/disk/cmdk.c
1444
handle = dadk_iob_alloc(DKTP_DATA, start, buflen, KM_SLEEP);
usr/src/uts/intel/io/dktp/disk/cmdk.c
1611
hwid = kmem_alloc(CMDK_HWIDLEN, KM_SLEEP);
usr/src/uts/intel/io/dktp/disk/cmdk.c
1703
handle = dadk_iob_alloc(DKTP_DATA, blk, NBPSCTR, KM_SLEEP);
usr/src/uts/intel/io/dktp/disk/cmdk.c
1730
dkp->dk_devid = kmem_alloc(sz, KM_SLEEP);
usr/src/uts/intel/io/dktp/disk/cmdk.c
1766
handle = dadk_iob_alloc(DKTP_DATA, blk, NBPSCTR, KM_SLEEP);
usr/src/uts/intel/io/dktp/disk/cmdk.c
1856
handle = dadk_iob_alloc(DKTP_DATA, slcb, NBPSCTR, KM_SLEEP);
usr/src/uts/intel/io/dktp/disk/cmdk.c
1882
(altlast - altbase + 1) << SCTRSHFT, KM_SLEEP);
usr/src/uts/intel/io/dktp/disk/cmdk.c
1897
(sizeof (long) + sizeof (struct alts_ent *)), KM_SLEEP);
usr/src/uts/intel/io/dktp/disk/cmdk.c
2089
(cnt * sizeof (*ckp))), KM_SLEEP);
usr/src/uts/intel/io/dktp/disk/cmdk.c
992
rwcmdp = kmem_alloc(sizeof (struct dadkio_rwcmd), KM_SLEEP);
usr/src/uts/intel/io/dktp/hba/ghd/ghd.c
849
KM_SLEEP);
usr/src/uts/intel/io/dktp/hba/ghd/ghd_gcmd.c
72
gwp = kmem_zalloc(gwrap_len, (sleep ? KM_SLEEP : KM_NOSLEEP));
usr/src/uts/intel/io/dktp/hba/ghd/ghd_waitq.c
107
gdevp = kmem_zalloc(sizeof (*gdevp), KM_SLEEP);
usr/src/uts/intel/io/dktp/hba/ghd/ghd_waitq.c
51
gtgtp = kmem_zalloc(size, KM_SLEEP);
usr/src/uts/intel/io/dnet/dnet.c
2230
KM_SLEEP);
usr/src/uts/intel/io/dnet/dnet.c
2257
KM_SLEEP);
usr/src/uts/intel/io/dnet/dnet.c
2260
KM_SLEEP);
usr/src/uts/intel/io/dnet/dnet.c
2572
rp = kmem_zalloc(sizeof (struct rbuf_list), KM_SLEEP);
usr/src/uts/intel/io/dnet/dnet.c
2670
rp = kmem_zalloc(sizeof (struct rbuf_list), KM_SLEEP);
usr/src/uts/intel/io/dnet/dnet.c
3592
kmem_zalloc(sizeof (struct hackintr_inf), KM_SLEEP);
usr/src/uts/intel/io/dnet/dnet.c
4006
kmem_zalloc(sr->adapters * sizeof (LEAF_FORMAT), KM_SLEEP);
usr/src/uts/intel/io/dnet/dnet.c
576
dnetp = kmem_zalloc(sizeof (struct dnetinstance), KM_SLEEP);
usr/src/uts/intel/io/ecpp.c
699
pp->ioblock = (caddr_t)kmem_alloc(IO_BLOCK_SZ, KM_SLEEP);
usr/src/uts/intel/io/hotplug/pcicfg/pcicfg.c
1688
new = (pcicfg_phdl_t *)kmem_zalloc(sizeof (pcicfg_phdl_t), KM_SLEEP);
usr/src/uts/intel/io/hotplug/pcicfg/pcicfg.c
2397
KM_SLEEP);
usr/src/uts/intel/io/hotplug/pcicfg/pcicfg.c
2969
newreg = kmem_zalloc(alen+sizeof (*newone), KM_SLEEP);
usr/src/uts/intel/io/hotplug/pcicfg/pcicfg.c
3021
newreg = kmem_zalloc(rlen+sizeof (ppb_ranges_t), KM_SLEEP);
usr/src/uts/intel/io/hotplug/pcicfg/pcicfg.c
3071
newreg = kmem_zalloc(rlen+sizeof (pci_regspec_t), KM_SLEEP);
usr/src/uts/intel/io/hotplug/pcicfg/pcicfg.c
799
char *path = kmem_alloc(MAXPATHLEN, KM_SLEEP);
usr/src/uts/intel/io/imc/imc.c
1407
kmflag = KM_SLEEP;
usr/src/uts/intel/io/imc/imc.c
2550
stub = kmem_zalloc(sizeof (imc_stub_t), KM_SLEEP);
usr/src/uts/intel/io/imc/imc.c
2942
imc_data = kmem_zalloc(sizeof (imc_t), KM_SLEEP);
usr/src/uts/intel/io/intel_nb5000/dimm_addr.c
173
nb_number_memory_controllers * num_ranks_per_branch, KM_SLEEP);
usr/src/uts/intel/io/intel_nb5000/intel_nbdrv.c
115
newrank = kmem_zalloc(sizeof (nvlist_t *) * nb_dimm->nranks, KM_SLEEP);
usr/src/uts/intel/io/intel_nb5000/intel_nbdrv.c
128
(void) nvlist_alloc(&newrank[i], NV_UNIQUE_NAME, KM_SLEEP);
usr/src/uts/intel/io/intel_nb5000/intel_nbdrv.c
165
(void) nvlist_alloc(&newdimm, NV_UNIQUE_NAME, KM_SLEEP);
usr/src/uts/intel/io/intel_nb5000/intel_nbdrv.c
233
KM_SLEEP);
usr/src/uts/intel/io/intel_nb5000/intel_nbdrv.c
234
newchannel = kmem_zalloc(sizeof (nvlist_t *) * nchannels, KM_SLEEP);
usr/src/uts/intel/io/intel_nb5000/intel_nbdrv.c
237
(void) nvlist_alloc(&newchannel[i], NV_UNIQUE_NAME, KM_SLEEP);
usr/src/uts/intel/io/intel_nb5000/intel_nbdrv.c
307
(void) nvlist_alloc(&nvl, NV_UNIQUE_NAME, KM_SLEEP);
usr/src/uts/intel/io/intel_nb5000/intel_nbdrv.c
343
NV_ENCODE_XDR, KM_SLEEP) != 0)
usr/src/uts/intel/io/intel_nb5000/nb5000_init.c
406
dp = kmem_zalloc(sizeof (nb_dimm_t), KM_SLEEP);
usr/src/uts/intel/io/intel_nb5000/nb5000_init.c
432
dp = kmem_zalloc(sizeof (nb_dimm_t), KM_SLEEP);
usr/src/uts/intel/io/intel_nb5000/nb5000_init.c
796
nb_dimm_slots, KM_SLEEP);
usr/src/uts/intel/io/intel_nb5000/nb5000_init.c
862
nb_dimm_slots, KM_SLEEP);
usr/src/uts/intel/io/intel_nhm/dimm_topo.c
109
newrank = kmem_zalloc(sizeof (nvlist_t *) * nhm_dimm->nranks, KM_SLEEP);
usr/src/uts/intel/io/intel_nhm/dimm_topo.c
111
(void) nvlist_alloc(&newrank[i], NV_UNIQUE_NAME, KM_SLEEP);
usr/src/uts/intel/io/intel_nhm/dimm_topo.c
143
(void) nvlist_alloc(&newdimm, NV_UNIQUE_NAME, KM_SLEEP);
usr/src/uts/intel/io/intel_nhm/dimm_topo.c
206
KM_SLEEP);
usr/src/uts/intel/io/intel_nhm/dimm_topo.c
207
newchannel = kmem_zalloc(sizeof (nvlist_t *) * nchannels, KM_SLEEP);
usr/src/uts/intel/io/intel_nhm/dimm_topo.c
215
(void) nvlist_alloc(&newchannel[i], NV_UNIQUE_NAME, KM_SLEEP);
usr/src/uts/intel/io/intel_nhm/dimm_topo.c
261
(void) nvlist_alloc(&nvl, NV_UNIQUE_NAME, KM_SLEEP);
usr/src/uts/intel/io/intel_nhm/intel_nhmdrv.c
108
&inhm_mc_snapshotsz[i], NV_ENCODE_XDR, KM_SLEEP) != 0)
usr/src/uts/intel/io/intel_nhm/nhm_init.c
287
MAX_DIMMS_PER_CHANNEL, KM_SLEEP);
usr/src/uts/intel/io/intel_nhm/nhm_init.c
303
KM_SLEEP);
usr/src/uts/intel/io/iommulib.c
247
nexp = kmem_zalloc(sizeof (iommulib_nex_t), KM_SLEEP);
usr/src/uts/intel/io/iommulib.c
437
unitp = kmem_zalloc(sizeof (iommulib_unit_t), KM_SLEEP);
usr/src/uts/intel/io/iommulib.c
576
char *buf = kmem_alloc(MAXPATHLEN, KM_SLEEP);
usr/src/uts/intel/io/iommulib.c
629
char *buf = kmem_alloc(MAXPATHLEN, KM_SLEEP);
usr/src/uts/intel/io/ipmi/ipmi.c
64
KM_SLEEP);
usr/src/uts/intel/io/ipmi/ipmi_main.c
171
dev = kmem_zalloc(sizeof (ipmi_device_t), KM_SLEEP);
usr/src/uts/intel/io/mc-amd/mcamd_drv.c
124
NV_ENCODE_XDR, KM_SLEEP) != 0)
usr/src/uts/intel/io/mc-amd/mcamd_drv.c
1352
mc = kmem_zalloc(sizeof (mc_t), KM_SLEEP);
usr/src/uts/intel/io/mc-amd/mcamd_drv.c
266
(void) nvlist_alloc(csp, NV_UNIQUE_NAME, KM_SLEEP);
usr/src/uts/intel/io/mc-amd/mcamd_drv.c
312
(void) nvlist_alloc(dimmp, NV_UNIQUE_NAME, KM_SLEEP);
usr/src/uts/intel/io/mc-amd/mcamd_drv.c
352
(void) nvlist_alloc(&nvl, NV_UNIQUE_NAME, KM_SLEEP);
usr/src/uts/intel/io/mc-amd/mcamd_drv.c
391
(void) nvlist_alloc(&mcnvl, NV_UNIQUE_NAME, KM_SLEEP);
usr/src/uts/intel/io/mc-amd/mcamd_drv.c
461
mc_dimm_t *mcd = kmem_zalloc(sizeof (mc_dimm_t), KM_SLEEP);
usr/src/uts/intel/io/mc-amd/mcamd_drv.c
592
mc_cs_t *mccs = kmem_zalloc(sizeof (mc_cs_t), KM_SLEEP);
usr/src/uts/intel/io/mc-amd/mcamd_pcicfg.c
60
*cookiep = hdlp = kmem_alloc(sizeof (struct _mc_pcicfg_hdl), KM_SLEEP);
usr/src/uts/intel/io/pci-ide/pci-ide.c
529
pdptr = kmem_zalloc(PCIIDE_PDSIZE, KM_SLEEP);
usr/src/uts/intel/io/pci/pci_boot.c
2099
newundo = kmem_alloc(sizeof (struct pci_fixundo), KM_SLEEP);
usr/src/uts/intel/io/pci/pci_boot.c
2338
entry = kmem_zalloc(sizeof (*entry), KM_SLEEP);
usr/src/uts/intel/io/pci/pci_boot.c
2422
gfxp = kmem_zalloc(sizeof (*gfxp), KM_SLEEP);
usr/src/uts/intel/io/pci/pci_boot.c
3406
next_rp = rp = kmem_alloc(alloc_size, KM_SLEEP);
usr/src/uts/intel/io/pci/pci_boot.c
3488
sp = kmem_alloc(count * sizeof (*sp), KM_SLEEP);
usr/src/uts/intel/io/pci/pci_boot.c
3522
array_size * sizeof (struct pci_bus_resource), KM_SLEEP);
usr/src/uts/intel/io/pci/pci_boot.c
446
node = kmem_zalloc(sizeof (pua_node_t), KM_SLEEP);
usr/src/uts/intel/io/pci/pci_boot.c
467
rval = nvlist_alloc(&nvl, NV_UNIQUE_NAME, KM_SLEEP);
usr/src/uts/intel/io/pci/pci_boot.c
475
rval = nvlist_alloc(&sub_nvl, NV_UNIQUE_NAME, KM_SLEEP);
usr/src/uts/intel/io/pci/pci_boot.c
569
node = kmem_zalloc(sizeof (pua_node_t), KM_SLEEP);
usr/src/uts/intel/io/pci/pci_memlist.c
62
KM_SLEEP));
usr/src/uts/intel/io/pci/pci_pci.c
710
sizeof (struct intrspec)), KM_SLEEP);
usr/src/uts/intel/io/pciex/hotplug/pciehpc_acpi.c
171
acpi_p = kmem_zalloc(sizeof (pciehpc_acpi_t), KM_SLEEP);
usr/src/uts/intel/io/pciex/pcieb_x86.c
185
sizeof (struct intrspec)), KM_SLEEP);
usr/src/uts/intel/io/scsi/adapters/arcmsr/arcmsr.c
2423
acb->phandle = kmem_zalloc(acb->intr_size, KM_SLEEP);
usr/src/uts/intel/io/scsi/adapters/arcmsr/arcmsr.c
4274
ver_addr = kmem_zalloc(MSGDATABUFLEN, KM_SLEEP);
usr/src/uts/intel/io/scsi/adapters/arcmsr/arcmsr.c
4324
ver_addr = kmem_zalloc(MSGDATABUFLEN, KM_SLEEP);
usr/src/uts/intel/io/scsi/adapters/arcmsr/arcmsr.c
488
pktioctlfld = kmem_zalloc(sizeof (struct CMD_MESSAGE_FIELD), KM_SLEEP);
usr/src/uts/intel/io/scsi/adapters/arcmsr/arcmsr.c
510
ver_addr = kmem_zalloc(MSGDATABUFLEN, KM_SLEEP);
usr/src/uts/intel/io/scsi/adapters/arcmsr/arcmsr.c
571
ver_addr = kmem_zalloc(MSGDATABUFLEN, KM_SLEEP);
usr/src/uts/intel/io/ucode_drv.c
164
revp = kmem_zalloc(bufsz, KM_SLEEP);
usr/src/uts/intel/io/ucode_drv.c
218
ucodep = kmem_zalloc(size, KM_SLEEP);
usr/src/uts/intel/io/viona/viona_hook.c
307
nip = kmem_zalloc(sizeof (*nip), KM_SLEEP);
usr/src/uts/intel/io/viona/viona_main.c
1014
link = kmem_zalloc(sizeof (viona_link_t), KM_SLEEP);
usr/src/uts/intel/io/viona/viona_main.c
1674
void *packed = kmem_alloc(packed_sz, KM_SLEEP);
usr/src/uts/intel/io/viona/viona_main.c
1682
if (nvlist_unpack(packed, packed_sz, &parsed, KM_SLEEP) == 0) {
usr/src/uts/intel/io/viona/viona_main.c
959
sizeof (viona_vring_t) * VIONA_NRINGS(link), KM_SLEEP);
usr/src/uts/intel/io/viona/viona_ring.c
555
KM_SLEEP);
usr/src/uts/intel/io/viona/viona_tx.c
155
kmem_zalloc(sizeof (viona_desb_t) * qsz, KM_SLEEP);
usr/src/uts/intel/io/viona/viona_tx.c
164
dp->d_headers = kmem_zalloc(header_sz, KM_SLEEP);
usr/src/uts/intel/io/viona/viona_tx.c
169
ring->vr_tx.vrt_iov = kmem_alloc(sizeof (struct iovec) * qsz, KM_SLEEP);
usr/src/uts/intel/io/vmm/amd/ivrs_drv.c
375
ivhd_hdrs = kmem_zalloc(sizeof(void *) * count, KM_SLEEP);
usr/src/uts/intel/io/vmm/amd/ivrs_drv.c
396
ivhd_devs = kmem_zalloc(sizeof(device_t) * ivhd_count, KM_SLEEP);
usr/src/uts/intel/io/vmm/amd/svm.c
2528
vlapic = kmem_zalloc(sizeof (struct vlapic), KM_SLEEP);
usr/src/uts/intel/io/vmm/amd/svm.c
422
svm_sc = kmem_zalloc(sizeof (*svm_sc), KM_SLEEP);
usr/src/uts/intel/io/vmm/intel/vmx.c
3762
vlapic_vtx = kmem_zalloc(sizeof (struct vlapic_vtx), KM_SLEEP);
usr/src/uts/intel/io/vmm/intel/vmx.c
696
vmx = kmem_zalloc(sizeof (struct vmx), KM_SLEEP);
usr/src/uts/intel/io/vmm/intel/vmx.c
741
vmx->apic_access_page = kmem_zalloc(PAGESIZE, KM_SLEEP);
usr/src/uts/intel/io/vmm/intel/vmx_msr.c
156
bitmap = kmem_alloc(PAGESIZE, KM_SLEEP);
usr/src/uts/intel/io/vmm/intel/vtd.c
410
+ sizeof (struct regspec), KM_SLEEP);
usr/src/uts/intel/io/vmm/intel/vtd.c
849
dom = kmem_zalloc(sizeof (struct domain), KM_SLEEP);
usr/src/uts/intel/io/vmm/io/ppt.c
1347
ppt->msi.inth = kmem_zalloc(ppt->msi.inth_sz, KM_SLEEP);
usr/src/uts/intel/io/vmm/io/ppt.c
1434
ppt->msix.arg = kmem_zalloc(ppt->msix.arg_sz, KM_SLEEP);
usr/src/uts/intel/io/vmm/io/ppt.c
1436
ppt->msix.inth = kmem_zalloc(ppt->msix.inth_sz, KM_SLEEP);
usr/src/uts/intel/io/vmm/io/vatpic.c
788
vatpic = kmem_zalloc(sizeof (struct vatpic), KM_SLEEP);
usr/src/uts/intel/io/vmm/io/vatpit.c
481
vatpit = kmem_zalloc(sizeof (struct vatpit), KM_SLEEP);
usr/src/uts/intel/io/vmm/io/vhpet.c
700
vhpet = kmem_zalloc(sizeof (struct vhpet), KM_SLEEP);
usr/src/uts/intel/io/vmm/io/vioapic.c
430
vioapic = kmem_zalloc(sizeof (struct vioapic), KM_SLEEP);
usr/src/uts/intel/io/vmm/io/vpmtmr.c
77
vpmtmr = kmem_zalloc(sizeof (struct vpmtmr), KM_SLEEP);
usr/src/uts/intel/io/vmm/io/vrtc.c
1268
vrtc = kmem_zalloc(sizeof (struct vrtc), KM_SLEEP);
usr/src/uts/intel/io/vmm/seg_vmm.c
156
data = kmem_zalloc(sizeof (*data), KM_SLEEP);
usr/src/uts/intel/io/vmm/seg_vmm.c
191
newsvmd = kmem_zalloc(sizeof (segvmm_data_t), KM_SLEEP);
usr/src/uts/intel/io/vmm/vmm.c
413
vcpu->guestfpu = hma_fpu_alloc(KM_SLEEP);
usr/src/uts/intel/io/vmm/vmm.c
5243
ents = kmem_alloc(count * esz, KM_SLEEP);
usr/src/uts/intel/io/vmm/vmm.c
5294
ents = kmem_alloc(count * esz, KM_SLEEP);
usr/src/uts/intel/io/vmm/vmm.c
639
vm = kmem_zalloc(sizeof (struct vm), KM_SLEEP);
usr/src/uts/intel/io/vmm/vmm_cpuid.c
490
cfg->vcc_entries = kmem_alloc(entries_sz, KM_SLEEP);
usr/src/uts/intel/io/vmm/vmm_gpt.c
338
node = kmem_zalloc(sizeof (*node), KM_SLEEP);
usr/src/uts/intel/io/vmm/vmm_gpt.c
343
page = kmem_zalloc(PAGESIZE, KM_SLEEP);
usr/src/uts/intel/io/vmm/vmm_gpt.c
356
vmm_gpt_t *gpt = kmem_zalloc(sizeof (vmm_gpt_t), KM_SLEEP);
usr/src/uts/intel/io/vmm/vmm_instruction_emul.c
488
return (kmem_zalloc(sizeof (struct vie), KM_SLEEP));
usr/src/uts/intel/io/vmm/vmm_ioport.c
198
new_ents = kmem_alloc(new_count * sizeof (ioport_entry_t), KM_SLEEP);
usr/src/uts/intel/io/vmm/vmm_ioport.c
260
new_ents = kmem_alloc(new_count * sizeof (ioport_entry_t), KM_SLEEP);
usr/src/uts/intel/io/vmm/vmm_ioport.c
90
ents = kmem_zalloc(ndefault * sizeof (ioport_entry_t), KM_SLEEP);
usr/src/uts/intel/io/vmm/vmm_reservoir.c
345
kmem_zalloc(sizeof (vmmr_span_t), KM_SLEEP);
usr/src/uts/intel/io/vmm/vmm_reservoir.c
512
region = kmem_zalloc(sizeof (vmmr_region_t), KM_SLEEP);
usr/src/uts/intel/io/vmm/vmm_reservoir.c
764
if (page_xresv(sz >> PAGESHIFT, KM_SLEEP, vmmr_resv_wait) == 0) {
usr/src/uts/intel/io/vmm/vmm_reservoir.c
785
span = kmem_zalloc(sizeof (vmmr_span_t), KM_SLEEP);
usr/src/uts/intel/io/vmm/vmm_sol_dev.c
1222
kbuf = kmem_zalloc(req.len, KM_SLEEP);
usr/src/uts/intel/io/vmm/vmm_sol_dev.c
1245
kbuf = kmem_alloc(req.len, KM_SLEEP);
usr/src/uts/intel/io/vmm/vmm_sol_dev.c
1270
entries = kmem_zalloc(entries_size, KM_SLEEP);
usr/src/uts/intel/io/vmm/vmm_sol_dev.c
1326
entries = kmem_alloc(entries_size, KM_SLEEP);
usr/src/uts/intel/io/vmm/vmm_sol_dev.c
1719
bitmap = kmem_zalloc(len, KM_SLEEP);
usr/src/uts/intel/io/vmm/vmm_sol_dev.c
1775
bitmap = kmem_zalloc(bitmap_size, KM_SLEEP);
usr/src/uts/intel/io/vmm/vmm_sol_dev.c
1834
buf = kmem_alloc(len, KM_SLEEP);
usr/src/uts/intel/io/vmm/vmm_sol_dev.c
1895
buf = kmem_alloc(len, KM_SLEEP);
usr/src/uts/intel/io/vmm/vmm_sol_dev.c
2198
hold = kmem_zalloc(sizeof (*hold), KM_SLEEP);
usr/src/uts/intel/io/vmm/vmm_sol_dev.c
224
entry = kmem_zalloc(sizeof (*entry), KM_SLEEP);
usr/src/uts/intel/io/vmm/vmm_sol_dev.c
2267
lease = kmem_alloc(sizeof (*lease), KM_SLEEP);
usr/src/uts/intel/io/vmm/vmm_sol_dev.c
848
buf = kmem_zalloc(buf_sz, KM_SLEEP);
usr/src/uts/intel/io/vmm/vmm_sol_glue.c
198
p = kmem_zalloc(PAGE_SIZE, KM_SLEEP);
usr/src/uts/intel/io/vmm/vmm_sol_glue.c
199
i = kmem_alloc(sizeof (struct vmm_ptp_item), KM_SLEEP);
usr/src/uts/intel/io/vmm/vmm_stat.c
120
return (kmem_alloc(vst_size, KM_SLEEP));
usr/src/uts/intel/io/vmm/vmm_vm.c
1020
vmc = kmem_zalloc(sizeof (vm_client_t), KM_SLEEP);
usr/src/uts/intel/io/vmm/vmm_vm.c
1323
vmp = kmem_alloc(sizeof (*vmp), KM_SLEEP);
usr/src/uts/intel/io/vmm/vmm_vm.c
264
vms = kmem_zalloc(sizeof (*vms), KM_SLEEP);
usr/src/uts/intel/io/vmm/vmm_vm.c
536
vmo = kmem_alloc(sizeof (*vmo), KM_SLEEP);
usr/src/uts/intel/io/vmm/vmm_vm.c
557
vmo = kmem_alloc(sizeof (*vmo), KM_SLEEP);
usr/src/uts/intel/io/vmm/vmm_vm.c
807
vmsm = kmem_alloc(sizeof (*vmsm), KM_SLEEP);
usr/src/uts/intel/io/vmm/vmm_zsd.c
113
zsd = kmem_zalloc(sizeof (*zsd), KM_SLEEP);
usr/src/uts/intel/io/vmxnet3s/vmxnet3_main.c
1255
dp = kmem_zalloc(sizeof (vmxnet3_softc_t), KM_SLEEP);
usr/src/uts/intel/io/vmxnet3s/vmxnet3_main.c
359
sizeof (vmxnet3_metatx_t), KM_SLEEP);
usr/src/uts/intel/io/vmxnet3s/vmxnet3_main.c
409
sizeof (vmxnet3_bufdesc_t), KM_SLEEP);
usr/src/uts/intel/io/vmxnet3s/vmxnet3_rx.c
35
int flag = canSleep ? KM_SLEEP : KM_NOSLEEP;
usr/src/uts/intel/os/bootdev.c
96
new_path = kmem_alloc(*len, KM_SLEEP);
usr/src/uts/intel/os/cpuid.c
2173
kmem_zalloc(sizeof (*cpu->cpu_m.mcpu_cpi), KM_SLEEP);
usr/src/uts/intel/os/cpuid.c
5831
kmem_alloc(size * sizeof (cp), KM_SLEEP);
usr/src/uts/intel/os/cpuid.c
5847
kmem_zalloc(sizeof (regs), KM_SLEEP);
usr/src/uts/intel/os/cpuid.c
7895
ret = kmem_zalloc(mwait_size, KM_SLEEP);
usr/src/uts/intel/os/cpuid.c
7903
ret = kmem_zalloc(mwait_size * 2, KM_SLEEP);
usr/src/uts/intel/os/cpuid.c
8321
argdata = kmem_zalloc(sizeof (x86_featureset) * NCPU, KM_SLEEP);
usr/src/uts/intel/os/ddi_i86.c
155
sleepflag = ((waitfp == (int (*)())KM_SLEEP) ? KM_SLEEP : KM_NOSLEEP);
usr/src/uts/intel/os/ddi_i86.c
177
if ((waitfp != (int (*)())KM_SLEEP) &&
usr/src/uts/intel/os/fmsmb.c
116
types = kmem_zalloc(sizeof (smbs_cnt_t), KM_SLEEP);
usr/src/uts/intel/os/fmsmb.c
119
count * sizeof (smbs_con_ids_t *), KM_SLEEP);
usr/src/uts/intel/os/fmsmb.c
123
sizeof (smbs_con_ids_t), KM_SLEEP);
usr/src/uts/intel/os/fmsmb.c
128
MAX_CONT * sizeof (uint16_t *), KM_SLEEP);
usr/src/uts/intel/os/fmsmb.c
134
sizeof (uint16_t), KM_SLEEP);
usr/src/uts/intel/os/fmsmb.c
284
cont_hdl = kmem_zalloc(cont_count * cont_len, KM_SLEEP);
usr/src/uts/intel/os/fmsmb.c
419
sys_ma = kmem_zalloc(sizeof (uint16_t) * ma_cnt, KM_SLEEP);
usr/src/uts/intel/os/fmsmb.c
567
KM_SLEEP);
usr/src/uts/intel/os/fmsmb.c
654
cont_hdl = kmem_zalloc(cont_count * cont_len, KM_SLEEP);
usr/src/uts/intel/os/fpu.c
1328
kmem_cache_alloc(fpsave_cachep, KM_SLEEP);
usr/src/uts/intel/os/fpu.c
3069
kmem_cache_alloc(fpsave_cachep, KM_SLEEP);
usr/src/uts/intel/os/hma.c
195
reg = kmem_zalloc(sizeof (*reg), KM_SLEEP);
usr/src/uts/intel/os/hma.c
411
va = kmem_alloc(PAGESIZE, KM_SLEEP);
usr/src/uts/intel/os/hma.c
928
va = kmem_alloc(PAGESIZE, KM_SLEEP);
usr/src/uts/intel/os/hma_fpu.c
359
kmem_cache_alloc(fpsave_cachep, KM_SLEEP);
usr/src/uts/intel/os/microcode.c
121
kmem_zalloc(sizeof (*cp->cpu_m.mcpu_ucode_info), KM_SLEEP);
usr/src/uts/intel/os/sendsig.c
312
tuc = kmem_alloc(sizeof (*tuc), KM_SLEEP);
usr/src/uts/intel/os/sendsig.c
549
tuc = kmem_alloc(sizeof (*tuc), KM_SLEEP);
usr/src/uts/intel/os/sysi86.c
702
ldt = kmem_zalloc(ldtsz, KM_SLEEP);
usr/src/uts/intel/os/sysi86.c
825
nldt = kmem_zalloc(nldtsz, KM_SLEEP);
usr/src/uts/intel/pcbe/core_pcbe.c
1245
*data = kmem_alloc(sizeof (core_pcbe_config_t), KM_SLEEP);
usr/src/uts/intel/pcbe/core_pcbe.c
1271
conf = kmem_alloc(sizeof (core_pcbe_config_t), KM_SLEEP);
usr/src/uts/intel/pcbe/core_pcbe.c
542
gpc_names = kmem_alloc(num_gpc * sizeof (char *), KM_SLEEP);
usr/src/uts/intel/pcbe/core_pcbe.c
585
kmem_alloc(size + common_size + 1, KM_SLEEP);
usr/src/uts/intel/pcbe/core_pcbe.c
744
ffc_allnames = kmem_alloc(num_ffc * sizeof (char *), KM_SLEEP);
usr/src/uts/intel/pcbe/core_pcbe.c
748
KM_SLEEP);
usr/src/uts/intel/pcbe/core_pcbe.c
799
gpc_names = kmem_alloc(num_gpc * sizeof (char *), KM_SLEEP);
usr/src/uts/intel/pcbe/core_pcbe.c
836
gpc_names[i] = kmem_alloc(size + 1, KM_SLEEP);
usr/src/uts/intel/pcbe/opteron_pcbe.c
719
evlist = kmem_alloc(evlist_sz + 1, KM_SLEEP);
usr/src/uts/intel/pcbe/opteron_pcbe.c
919
cfg = kmem_alloc(sizeof (*cfg), KM_SLEEP);
usr/src/uts/intel/pcbe/p4_pcbe.c
476
p4_eventlist[i] = (char *)kmem_alloc(size + 1, KM_SLEEP);
usr/src/uts/intel/pcbe/p4_pcbe.c
827
KM_SLEEP);
usr/src/uts/intel/promif/prom_emul.c
50
q = kmem_zalloc(sizeof (*q), KM_SLEEP);
usr/src/uts/intel/promif/prom_emul.c
51
q->pp_name = kmem_zalloc(strlen(name) + 1, KM_SLEEP);
usr/src/uts/intel/promif/prom_emul.c
53
q->pp_val = len > 0 ? kmem_alloc(len, KM_SLEEP) : NULL;
usr/src/uts/intel/promif/prom_emul.c
91
pnp = kmem_zalloc(sizeof (prom_node_t), KM_SLEEP);
usr/src/uts/sfmmu/vm/hat_sfmmu.c
1104
mmu_ctxs_tbl = kmem_zalloc(size, KM_SLEEP);
usr/src/uts/sfmmu/vm/hat_sfmmu.c
11066
sleep = ((sfmmup == KHATID) ? KM_NOSLEEP : KM_SLEEP);
usr/src/uts/sfmmu/vm/hat_sfmmu.c
12678
sfmmu_tsbinfo_cache, KM_SLEEP);
usr/src/uts/sfmmu/vm/hat_sfmmu.c
12910
vaddr = (caddr_t)kmem_cache_alloc(kmem_cachep, KM_SLEEP);
usr/src/uts/sfmmu/vm/hat_sfmmu.c
13626
newsrdp = kmem_cache_alloc(srd_cache, KM_SLEEP);
usr/src/uts/sfmmu/vm/hat_sfmmu.c
1377
sizeof (srd_buckets[0]), KM_SLEEP);
usr/src/uts/sfmmu/vm/hat_sfmmu.c
1401
KM_SLEEP);
usr/src/uts/sfmmu/vm/hat_sfmmu.c
14022
new_rgnp = kmem_cache_alloc(region_cache, KM_SLEEP);
usr/src/uts/sfmmu/vm/hat_sfmmu.c
1405
KM_SLEEP);
usr/src/uts/sfmmu/vm/hat_sfmmu.c
1466
sfmmup = kmem_cache_alloc(sfmmuid_cache, KM_SLEEP);
usr/src/uts/sfmmu/vm/hat_sfmmu.c
14870
new_scdp = kmem_cache_alloc(scd_cache, KM_SLEEP);
usr/src/uts/sfmmu/vm/hat_sfmmu.c
14872
scsfmmup = kmem_cache_alloc(sfmmuid_cache, KM_SLEEP);
usr/src/uts/sfmmu/vm/hat_sfmmu.c
1620
mmu_ctxp = kmem_cache_alloc(mmuctxdom_cache, KM_SLEEP);
usr/src/uts/sfmmu/vm/hat_sfmmu.c
4303
int kmflags = (flags & HAC_SLEEP)? KM_SLEEP : KM_NOSLEEP;
usr/src/uts/sfmmu/vm/hat_sfmmu.c
8494
new_iblk = kmem_cache_alloc(ism_blk_cache, KM_SLEEP);
usr/src/uts/sfmmu/vm/hat_sfmmu.c
8495
ism_ment = kmem_cache_alloc(ism_ment_cache, KM_SLEEP);
usr/src/uts/sfmmu/vm/hat_sfmmu.h
483
lnkp = kmem_zalloc(SFMMU_L2_HMERLINKS_SIZE, KM_SLEEP); \
usr/src/uts/sfmmu/vm/hat_sfmmu.h
496
lnkp = kmem_zalloc(SFMMU_L2_HMERLINKS_SIZE, KM_SLEEP); \
usr/src/uts/sparc/dtrace/fbt.c
1360
fbt = kmem_zalloc(sizeof (fbt_probe_t), KM_SLEEP);
usr/src/uts/sparc/dtrace/fbt.c
1406
fbt = kmem_zalloc(sizeof (fbt_probe_t), KM_SLEEP);
usr/src/uts/sparc/dtrace/sdt.c
198
nname = kmem_alloc(len = strlen(name) + 1, KM_SLEEP);
usr/src/uts/sparc/dtrace/sdt.c
211
sdp = kmem_zalloc(sizeof (sdt_probe_t), KM_SLEEP);
usr/src/uts/sparc/io/pciex/pcieb_sparc.c
374
reg_spec = kmem_alloc(new_rsize, KM_SLEEP);
usr/src/uts/sparc/os/bootdev.c
128
KM_SLEEP);
usr/src/uts/sparc/os/bootdev.c
235
dev_path = kmem_zalloc(MAXPATHLEN, KM_SLEEP);
usr/src/uts/sparc/os/bootdev.c
264
prom_path = kmem_zalloc(MAXPATHLEN, KM_SLEEP);
usr/src/uts/sparc/os/bootdev.c
281
offline = kmem_zalloc(len, KM_SLEEP); /* offline paths */
usr/src/uts/sparc/os/bootdev.c
445
fullname = kmem_alloc(MAXPATHLEN, KM_SLEEP);
usr/src/uts/sparc/os/bootdev.c
489
new_path = kmem_alloc(*len, KM_SLEEP);
usr/src/uts/sparc/os/cpr_sparc.c
276
new_def_info = kmem_zalloc(sizeof (*new_def_info), KM_SLEEP);
usr/src/uts/sparc/os/cpr_sparc.c
509
buf = kmem_alloc(size, KM_SLEEP);
usr/src/uts/sparc/os/iscsi_boot.c
156
(uchar_t *)kmem_zalloc(proplen + 1, KM_SLEEP);
usr/src/uts/sparc/os/iscsi_boot.c
181
(uchar_t *)kmem_zalloc(proplen + 1, KM_SLEEP);
usr/src/uts/sparc/os/iscsi_boot.c
191
(uchar_t *)kmem_zalloc(2, KM_SLEEP);
usr/src/uts/sparc/os/iscsi_boot.c
229
(uchar_t *)kmem_zalloc(chap_user_len + 1, KM_SLEEP);
usr/src/uts/sparc/os/iscsi_boot.c
235
(uchar_t *)kmem_zalloc(chap_pwd_len + 1, KM_SLEEP);
usr/src/uts/sparc/os/iscsi_boot.c
256
(uchar_t *)kmem_zalloc(proplen + 1, KM_SLEEP);
usr/src/uts/sparc/os/iscsi_boot.c
417
KM_SLEEP);
usr/src/uts/sparc/syscall/getcontext.c
280
gwin = kmem_zalloc(sizeof (gwindows_t), KM_SLEEP);
usr/src/uts/sparc/syscall/getcontext.c
528
gwin = kmem_zalloc(sizeof (gwindows32_t), KM_SLEEP);
usr/src/uts/sparc/syscall/getcontext.c
558
xregs = kmem_zalloc(xregs_size, KM_SLEEP);
usr/src/uts/sparc/v9/os/v9dep.c
1024
tuc = kmem_alloc(sizeof (ucontext_t), KM_SLEEP);
usr/src/uts/sparc/v9/os/v9dep.c
1032
xregs = kmem_alloc(xregs_size, KM_SLEEP);
usr/src/uts/sparc/v9/os/v9dep.c
1091
gwp = kmem_alloc(gwin_size, KM_SLEEP);
usr/src/uts/sparc/v9/os/v9dep.c
1354
tuc = kmem_alloc(sizeof (ucontext32_t), KM_SLEEP);
usr/src/uts/sparc/v9/os/v9dep.c
1362
xregs = kmem_alloc(xregs_size, KM_SLEEP);
usr/src/uts/sparc/v9/os/v9dep.c
1419
gwp = kmem_alloc(gwin_size, KM_SLEEP);
usr/src/uts/sparc/v9/os/v9dep.c
837
mpcb->mpcb_wbuf = kmem_cache_alloc(wbuf64_cache, KM_SLEEP);
usr/src/uts/sparc/v9/os/v9dep.c
844
mpcb->mpcb_wbuf = kmem_cache_alloc(wbuf32_cache, KM_SLEEP);
usr/src/uts/sparc/v9/syscall/install_utrap.c
120
sizeof (utrap_handler_t *), KM_SLEEP);
usr/src/uts/sparc/v9/syscall/install_utrap.c
231
sizeof (utrap_handler_t *), KM_SLEEP);
usr/src/uts/sparc/v9/syscall/install_utrap.c
87
sizeof (utrap_handler_t *), KM_SLEEP);
usr/src/uts/sparc/v9/vm/seg_nf.c
203
nfpp = kmem_alloc(sizeof (*nfpp) * vacpgs, KM_SLEEP);
usr/src/uts/sparc/zfs/spa_boot.c
48
value = kmem_zalloc(proplen, KM_SLEEP);
usr/src/uts/sun/io/audio/drv/audiocs/audio_4231.c
1972
eng = kmem_zalloc(sizeof (*eng), KM_SLEEP);
usr/src/uts/sun/io/audio/drv/audiocs/audio_4231.c
509
state = kmem_zalloc(sizeof (*state), KM_SLEEP);
usr/src/uts/sun/io/audio/drv/audiocs/audio_4231.c
739
cc = kmem_zalloc(sizeof (*cc), KM_SLEEP);
usr/src/uts/sun/io/dada/conf/dcd_confsubr.c
121
KM_SLEEP : KM_NOSLEEP));
usr/src/uts/sun/io/dada/impl/dcd_hba.c
136
elem = kmem_alloc(sizeof (struct dcd_hba_inst), KM_SLEEP);
usr/src/uts/sun/io/dada/impl/dcd_hba.c
271
(flags & DCD_HBA_CANSLEEP) ? KM_SLEEP: KM_NOSLEEP));
usr/src/uts/sun/io/dada/impl/dcd_hba.c
349
(callback = SLEEP_FUNC) ? KM_SLEEP: KM_NOSLEEP);
usr/src/uts/sun/io/dada/impl/dcd_resource.c
68
kmflag = (callback == SLEEP_FUNC) ? KM_SLEEP: KM_NOSLEEP;
usr/src/uts/sun/io/dada/targets/dad.c
3472
kmem_zalloc(sizeof (*dkc2), KM_SLEEP);
usr/src/uts/sun/io/dada/targets/dad.c
3648
cdb = kmem_zalloc(sizeof (struct dcd_cmd), KM_SLEEP);
usr/src/uts/sun/io/dada/targets/dad.c
3658
scmd = (struct udcd_cmd *)kmem_alloc(sizeof (*scmd), KM_SLEEP);
usr/src/uts/sun/io/dada/targets/dad.c
3902
dkdevid = kmem_zalloc(un->un_secsize, KM_SLEEP);
usr/src/uts/sun/io/dada/targets/dad.c
3972
dkdevid = kmem_alloc(un->un_secsize, KM_SLEEP);
usr/src/uts/sun/io/dada/targets/dad.c
4035
un->un_devid = (ddi_devid_t)kmem_alloc(sz, KM_SLEEP);
usr/src/uts/sun/io/dada/targets/dad.c
4131
hwid = kmem_alloc(total_len, KM_SLEEP);
usr/src/uts/sun/io/dada/targets/dad.c
898
int km_flags = (canwait != NULL_FUNC)? KM_SLEEP : KM_NOSLEEP;
usr/src/uts/sun/io/eri/eri.c
698
erip = kmem_zalloc(sizeof (struct eri), KM_SLEEP);
usr/src/uts/sun/io/fd.c
2729
fa = kmem_zalloc(fc, KM_SLEEP);
usr/src/uts/sun/io/fd.c
2821
fa = kmem_zalloc(fc, KM_SLEEP);
usr/src/uts/sun/io/fd.c
3040
fd = kmem_zalloc(csb->csb_len, KM_SLEEP);
usr/src/uts/sun/io/fd.c
3263
KM_SLEEP);
usr/src/uts/sun/io/fd.c
5266
kmem_zalloc(sizeof (struct dk_label), KM_SLEEP);
usr/src/uts/sun/io/fd.c
647
fdc = kmem_zalloc(sizeof (*fdc), KM_SLEEP);
usr/src/uts/sun/io/fd.c
728
fdc->c_un = kmem_zalloc(sizeof (struct fdunit), KM_SLEEP);
usr/src/uts/sun/io/fd.c
729
fdc->c_un->un_chars = kmem_alloc(sizeof (struct fd_char), KM_SLEEP);
usr/src/uts/sun/io/fd.c
737
fdc->c_un->un_drive = kmem_zalloc(sizeof (struct fd_drive), KM_SLEEP);
usr/src/uts/sun/io/ms.c
290
msd = kmem_zalloc(sizeof (struct msdata), KM_SLEEP);
usr/src/uts/sun/io/ms.c
378
b = kmem_zalloc((uint_t)ms->ms_bufbytes, KM_SLEEP);
usr/src/uts/sun/io/scsi/adapters/fas.c
2085
kf = (callback == SLEEP_FUNC)? KM_SLEEP: KM_NOSLEEP;
usr/src/uts/sun/io/scsi/adapters/fas.c
2341
int (*callback)(caddr_t) = (kmflags == KM_SLEEP) ? DDI_DMA_SLEEP:
usr/src/uts/sun/io/scsi/adapters/fas.c
754
(void) fas_alloc_active_slots(fas, slot, KM_SLEEP);
usr/src/uts/sun/io/scsi/adapters/fas.c
8223
pkt = kmem_alloc(scsi_pkt_size(), KM_SLEEP);
usr/src/uts/sun/io/scsi/adapters/fas.c
8546
pkt = kmem_alloc(scsi_pkt_size(), KM_SLEEP);
usr/src/uts/sun/io/zs_common.c
357
zscom = kmem_zalloc(maxzs * sizeof (struct zscom), KM_SLEEP);
usr/src/uts/sun/io/zs_common.c
359
KM_SLEEP);
usr/src/uts/sun/io/zs_common.c
360
zssoftCAR = kmem_zalloc(maxzs, KM_SLEEP);
usr/src/uts/sun/io/zs_common.c
476
zs->zs_excl = kmem_zalloc(sizeof (kmutex_t), KM_SLEEP);
usr/src/uts/sun/io/zs_common.c
478
zs->zs_ocexcl = kmem_zalloc(sizeof (kmutex_t), KM_SLEEP);
usr/src/uts/sun4/io/cbe.c
188
cbe_data_t *new_data = kmem_alloc(sizeof (cbe_data_t), KM_SLEEP);
usr/src/uts/sun4/io/efcode/fc_ops.c
108
rp = kmem_zalloc(sizeof (struct fc_resource_list), KM_SLEEP);
usr/src/uts/sun4/io/efcode/fc_ops.c
115
up = kmem_zalloc(strlen(unit_address) + 1, KM_SLEEP);
usr/src/uts/sun4/io/efcode/fc_ops.c
437
ip = kmem_zalloc(sizeof (struct fc_resource), KM_SLEEP);
usr/src/uts/sun4/io/efcode/fc_ops.c
553
unit_address = kmem_zalloc(OBP_MAXPATHLEN, KM_SLEEP);
usr/src/uts/sun4/io/efcode/fc_ops.c
715
buf = kmem_zalloc(len, KM_SLEEP);
usr/src/uts/sun4/io/efcode/fc_physio.c
69
bp = getrbuf(KM_SLEEP);
usr/src/uts/sun4/io/efcode/fc_subr.c
157
fp = kmem_zalloc(sizeof (struct fc_request), KM_SLEEP);
usr/src/uts/sun4/io/efcode/fc_subr.c
496
np = kmem_zalloc(sizeof (struct fc_phandle_entry), KM_SLEEP);
usr/src/uts/sun4/io/efcode/fc_subr.c
539
np = kmem_zalloc(sizeof (struct fc_phandle_entry), KM_SLEEP);
usr/src/uts/sun4/io/efcode/fc_subr.c
596
dp = kmem_zalloc(sizeof (struct fc_device_tree), KM_SLEEP);
usr/src/uts/sun4/io/efcode/fc_subr.c
685
q = kmem_zalloc(sizeof (struct fc_device_tree), KM_SLEEP);
usr/src/uts/sun4/io/efcode/fcode.c
206
fc_max_opens * sizeof (struct fc_state), KM_SLEEP);
usr/src/uts/sun4/io/efcode/fcode.c
327
cp = kmem_zalloc(sizeof (struct fc_client_interface), KM_SLEEP);
usr/src/uts/sun4/io/efcode/fcode.c
525
fcp = kmem_zalloc(sizeof (struct fc_parameters), KM_SLEEP);
usr/src/uts/sun4/io/efcode/fcode.c
658
cp = kmem_zalloc(csize, KM_SLEEP);
usr/src/uts/sun4/io/efcode/fcode.c
678
name = kmem_zalloc(FC_SVC_NAME_LEN, KM_SLEEP);
usr/src/uts/sun4/io/efcode/fcode.c
801
cp = kmem_zalloc(sizeof (struct fc_client_interface), KM_SLEEP);
usr/src/uts/sun4/io/efcode/fcpci.c
1106
name = kmem_zalloc(FC_SVC_NAME_LEN, KM_SLEEP);
usr/src/uts/sun4/io/efcode/fcpci.c
1113
fcode = kmem_zalloc(fcode_len, KM_SLEEP);
usr/src/uts/sun4/io/efcode/fcpci.c
1151
name = kmem_zalloc(FC_SVC_NAME_LEN, KM_SLEEP);
usr/src/uts/sun4/io/efcode/fcpci.c
1700
*handlep = impl_acc_hdl_alloc(KM_SLEEP, NULL);
usr/src/uts/sun4/io/efcode/fcpci.c
1783
newreg = kmem_zalloc(alen+sizeof (*newone), KM_SLEEP);
usr/src/uts/sun4/io/efcode/fcpci.c
190
rp = kmem_zalloc(sizeof (struct fc_resource_list), KM_SLEEP);
usr/src/uts/sun4/io/efcode/fcpci.c
200
buf = kmem_zalloc(strlen(unit_address) + 1, KM_SLEEP);
usr/src/uts/sun4/io/efcode/fcpci.c
205
bp = kmem_zalloc(sizeof (struct pci_ops_bus_args), KM_SLEEP);
usr/src/uts/sun4/io/efcode/fcpci.c
369
ip = kmem_zalloc(sizeof (struct fc_resource), KM_SLEEP);
usr/src/uts/sun4/io/efcode/fcpci.c
596
ip = kmem_zalloc(sizeof (struct fc_resource), KM_SLEEP);
usr/src/uts/sun4/io/efcode/fcpci.c
601
ph = kmem_zalloc(sizeof (pci_regspec_t), KM_SLEEP);
usr/src/uts/sun4/io/fpc/fpc-impl.c
99
kmem_zalloc(strlen(pathname)+1, KM_SLEEP);
usr/src/uts/sun4/io/fpc/fpc-kstats.c
298
ksinfop = kmem_zalloc(sizeof (fi_ksinfo_t), KM_SLEEP);
usr/src/uts/sun4/io/ivintr.c
156
iv_p = kmem_cache_alloc(intr_vec_cache, KM_SLEEP);
usr/src/uts/sun4/io/pcicfg.c
1742
KM_SLEEP);
usr/src/uts/sun4/io/pcicfg.c
2523
KM_SLEEP);
usr/src/uts/sun4/io/pcicfg.c
3095
newreg = kmem_zalloc(alen+sizeof (*newone), KM_SLEEP);
usr/src/uts/sun4/io/pcicfg.c
3152
newreg = kmem_zalloc(rlen + sizeof (pcicfg_range_t), KM_SLEEP);
usr/src/uts/sun4/io/pcicfg.c
3200
newreg = kmem_zalloc(rlen+sizeof (pci_regspec_t), KM_SLEEP);
usr/src/uts/sun4/io/pcicfg.c
3279
new_avail = kmem_zalloc(alen+sizeof (*newone), KM_SLEEP);
usr/src/uts/sun4/io/pcicfg.c
3689
compat[n] = kmem_alloc(strlen(buffer) + 1, KM_SLEEP);
usr/src/uts/sun4/io/pcicfg.c
3706
compat[n] = kmem_alloc(strlen(buffer) + 1, KM_SLEEP);
usr/src/uts/sun4/io/pcicfg.c
3712
compat[n] = kmem_alloc(strlen(buffer) + 1, KM_SLEEP);
usr/src/uts/sun4/io/pcicfg.c
3718
compat[n] = kmem_alloc(strlen(buffer) + 1, KM_SLEEP);
usr/src/uts/sun4/io/pcicfg.c
3722
compat[n] = kmem_alloc(strlen(buffer) + 1, KM_SLEEP);
usr/src/uts/sun4/io/pcicfg.c
3728
compat[n] = kmem_alloc(strlen(buffer) + 1, KM_SLEEP);
usr/src/uts/sun4/io/pcicfg.c
3733
compat[n] = kmem_alloc(strlen(buffer) + 1, KM_SLEEP);
usr/src/uts/sun4/io/pcicfg.c
3738
compat[n] = kmem_alloc(strlen(buffer) + 1, KM_SLEEP);
usr/src/uts/sun4/io/pcicfg.c
3745
compat[n] = kmem_alloc(strlen(buffer) + 1, KM_SLEEP);
usr/src/uts/sun4/io/pcicfg.c
3750
compat[n] = kmem_alloc(strlen(buffer) + 1, KM_SLEEP);
usr/src/uts/sun4/io/pcicfg.c
5983
*fcode_addr = kmem_zalloc(ptob(btopr(*fcode_size)), KM_SLEEP);
usr/src/uts/sun4/io/pcicfg.c
6686
assigned_copy = kmem_alloc(alen, KM_SLEEP);
usr/src/uts/sun4/io/pcicfg.c
6742
*handlep = impl_acc_hdl_alloc(KM_SLEEP, NULL);
usr/src/uts/sun4/io/px/px_debug.c
266
KM_SLEEP);
usr/src/uts/sun4/io/px/px_dma.c
1267
mmu_p->dvma_alloc_rec = kmem_alloc(sz, KM_SLEEP);
usr/src/uts/sun4/io/px/px_dma.c
1268
mmu_p->dvma_free_rec = kmem_alloc(sz, KM_SLEEP);
usr/src/uts/sun4/io/px/px_dma.c
1330
ptr = kmem_alloc(sizeof (struct px_dvma_rec), KM_SLEEP);
usr/src/uts/sun4/io/px/px_dma.c
576
waitfp == DDI_DMA_SLEEP ? KM_SLEEP : KM_NOSLEEP))) {
usr/src/uts/sun4/io/px/px_dma.c
63
int sleep = (waitfp == DDI_DMA_SLEEP) ? KM_SLEEP : KM_NOSLEEP;
usr/src/uts/sun4/io/px/px_dma.c
966
waitfp == DDI_DMA_SLEEP ? KM_SLEEP : KM_NOSLEEP);
usr/src/uts/sun4/io/px/px_fdvma.c
168
mp = kmem_zalloc(sizeof (px_dma_hdl_t), KM_SLEEP);
usr/src/uts/sun4/io/px/px_fdvma.c
189
fdvma_p = kmem_alloc(sizeof (fdvma_t), KM_SLEEP);
usr/src/uts/sun4/io/px/px_fdvma.c
190
fdvma_p->pagecnt = kmem_alloc(npages * sizeof (uint_t), KM_SLEEP);
usr/src/uts/sun4/io/px/px_ib.c
469
ino_p = kmem_zalloc(sizeof (px_ino_t), KM_SLEEP);
usr/src/uts/sun4/io/px/px_ib.c
487
px_ino_pil_t *ipil_p = kmem_zalloc(sizeof (px_ino_pil_t), KM_SLEEP);
usr/src/uts/sun4/io/px/px_ib.c
70
ib_p = kmem_zalloc(sizeof (px_ib_t), KM_SLEEP);
usr/src/uts/sun4/io/px/px_ib.c
788
ih_p = kmem_alloc(sizeof (px_ih_t), KM_SLEEP);
usr/src/uts/sun4/io/px/px_mmu.c
55
mmu_p = kmem_zalloc(sizeof (px_mmu_t), KM_SLEEP);
usr/src/uts/sun4/io/px/px_mmu.c
90
kmem_zalloc(px_dvma_page_cache_entries, KM_SLEEP);
usr/src/uts/sun4/io/px/px_msi.c
74
sizeof (px_msi_t), KM_SLEEP);
usr/src/uts/sun4/io/px/px_msiq.c
81
sizeof (px_msiq_t), KM_SLEEP);
usr/src/uts/sun4/io/px/px_pec.c
63
pec_p = kmem_zalloc(sizeof (px_pec_t), KM_SLEEP);
usr/src/uts/sun4/io/px/px_tools.c
173
iget = kmem_zalloc(iget_kmem_alloc_size, KM_SLEEP);
usr/src/uts/sun4/io/su_driver.c
634
kmem_zalloc(sizeof (kmutex_t), KM_SLEEP);
usr/src/uts/sun4/io/su_driver.c
636
kmem_zalloc(sizeof (kmutex_t), KM_SLEEP);
usr/src/uts/sun4/io/su_driver.c
638
kmem_zalloc(sizeof (kmutex_t), KM_SLEEP);
usr/src/uts/sun4/io/trapstat.c
2549
sizeof (tstat_percpu_t), KM_SLEEP);
usr/src/uts/sun4/io/trapstat.c
2560
tstat_enabled = kmem_alloc(TSTAT_TOTAL_NENT * sizeof (int), KM_SLEEP);
usr/src/uts/sun4/io/trapstat.c
2561
tstat_buffer = kmem_alloc(tstat_data_t_size, KM_SLEEP);
usr/src/uts/sun4/os/bus_func.c
45
bus_func_desc_t *bfd = kmem_alloc(sizeof (bus_func_desc_t), KM_SLEEP);
usr/src/uts/sun4/os/ddi_impl.c
1272
sleepflag = ((waitfp == (int (*)())KM_SLEEP) ? KM_SLEEP : KM_NOSLEEP);
usr/src/uts/sun4/os/ddi_impl.c
1295
if ((waitfp != (int (*)())KM_SLEEP) &&
usr/src/uts/sun4/os/ddi_impl.c
203
*ppd = pdptr = kmem_zalloc(sizeof (*pdptr), KM_SLEEP);
usr/src/uts/sun4/os/ddi_impl.c
515
CELLS_1275_TO_BYTES(intr_cells), KM_SLEEP);
usr/src/uts/sun4/os/ddi_impl.c
592
CELLS_1275_TO_BYTES(new_intr_cells), KM_SLEEP);
usr/src/uts/sun4/os/dtrace_subr.c
103
sigqueue_t *sqp = kmem_zalloc(sizeof (sigqueue_t), KM_SLEEP);
usr/src/uts/sun4/os/dvma.c
93
sizeof (ddi_dma_lim_t), KM_SLEEP);
usr/src/uts/sun4/os/dvma.c
97
np * sizeof (ddi_dma_handle_t), KM_SLEEP);
usr/src/uts/sun4/os/forthdebug.c
123
fth_buf = (char *)kobj_zalloc(fsz + 1, KM_SLEEP);
usr/src/uts/sun4/os/intr.c
242
siron_cpu_inum = kmem_zalloc(sizeof (uint64_t) * NCPU, KM_SLEEP);
usr/src/uts/sun4/os/intr.c
457
struct intr_dist *new = kmem_alloc(sizeof (*new), KM_SLEEP);
usr/src/uts/sun4/os/machdep.c
148
mpcb->mpcb_wbuf = kmem_cache_alloc(wbuf32_cache, KM_SLEEP);
usr/src/uts/sun4/os/machdep.c
151
mpcb->mpcb_wbuf = kmem_cache_alloc(wbuf64_cache, KM_SLEEP);
usr/src/uts/sun4/os/machdep.c
222
wbuf = kmem_cache_alloc(wbuf64_cache, KM_SLEEP);
usr/src/uts/sun4/os/machdep.c
226
wbuf = kmem_cache_alloc(wbuf32_cache, KM_SLEEP);
usr/src/uts/sun4/os/startup.c
1655
hblk_base = kmem_zalloc(nhblksz, KM_SLEEP);
usr/src/uts/sun4/os/startup.c
2953
bp = (char *)kobj_zalloc(MMU_PAGESIZE, KM_SLEEP);
usr/src/uts/sun4/vm/sfmmu.c
1151
ppa = kmem_zalloc(npages * sizeof (page_t *), KM_SLEEP);
usr/src/uts/sun4u/chicago/io/fpc/fpc-impl-4u.c
154
nodename = kmem_zalloc(nodename_size, KM_SLEEP);
usr/src/uts/sun4u/chicago/io/fpc/fpc-impl-4u.c
157
kmem_zalloc(sizeof (fire4u_specific_t), KM_SLEEP);
usr/src/uts/sun4u/chicago/io/fpc/fpc-impl-4u.c
224
kmem_zalloc(sizeof (fire_counter_handle_impl_t), KM_SLEEP);
usr/src/uts/sun4u/cpu/opl_olympus.c
1160
kmem_alloc(ERRLOG_ALLOC_SZ, KM_SLEEP);
usr/src/uts/sun4u/cpu/opl_olympus.c
2234
KM_SLEEP);
usr/src/uts/sun4u/cpu/spitfire.c
3835
sfprp = CPU_PRIVATE(cp) = kmem_cache_alloc(sf_private_cache, KM_SLEEP);
usr/src/uts/sun4u/cpu/spitfire.c
4181
mem_ce_simm = kmem_zalloc(size, KM_SLEEP);
usr/src/uts/sun4u/cpu/spitfire.c
4197
KM_SLEEP);
usr/src/uts/sun4u/cpu/us3_cheetah.c
626
chprp = CPU_PRIVATE(cp) = kmem_cache_alloc(ch_private_cache, KM_SLEEP);
usr/src/uts/sun4u/cpu/us3_cheetahplus.c
833
chprp = CPU_PRIVATE(cp) = kmem_cache_alloc(ch_private_cache, KM_SLEEP);
usr/src/uts/sun4u/cpu/us3_common.c
3301
cbargp = kmem_alloc(sizeof (ce_lkychk_cb_t), KM_SLEEP);
usr/src/uts/sun4u/cpu/us3_jalapeno.c
848
chprp = CPU_PRIVATE(cp) = kmem_cache_alloc(ch_private_cache, KM_SLEEP);
usr/src/uts/sun4u/daktari/io/hpc3130_dak.c
857
sizeof (hpc3130_slot_table_entry_t), KM_SLEEP);
usr/src/uts/sun4u/daktari/io/hpc3130_dak.c
937
hpc3130_p->hpc3130_slot_ops = hpc_alloc_slot_ops(KM_SLEEP);
usr/src/uts/sun4u/excalibur/io/xcalppm.c
997
kmflag = KM_SLEEP;
usr/src/uts/sun4u/io/gptwocfg.c
167
gptwo_new_nodes = kmem_zalloc(size, KM_SLEEP);
usr/src/uts/sun4u/io/gptwocfg.c
198
gptwocfg_ops_t *ops = kmem_zalloc(sizeof (gptwocfg_ops_t), KM_SLEEP);
usr/src/uts/sun4u/io/gptwocfg.c
301
config = kmem_zalloc(sizeof (gptwocfg_config_t), KM_SLEEP);
usr/src/uts/sun4u/io/gptwocfg.c
358
KM_SLEEP);
usr/src/uts/sun4u/io/gptwocfg.c
432
char *path = kmem_alloc(MAXPATHLEN, KM_SLEEP);
usr/src/uts/sun4u/io/gptwocfg.c
597
h = kmem_zalloc(sizeof (gptwocfg_handle_list_t), KM_SLEEP);
usr/src/uts/sun4u/io/i2c/misc/i2c_svc.c
101
hdl = kmem_alloc(sizeof (struct i2c_client_hdl_impl), KM_SLEEP);
usr/src/uts/sun4u/io/i2c/misc/i2c_svc.c
197
sleep = KM_SLEEP;
usr/src/uts/sun4u/io/i2c/misc/i2c_svc.c
257
KM_SLEEP);
usr/src/uts/sun4u/io/i2c/nexus/pcf8584.c
930
ppvt = kmem_alloc(sizeof (pcf8584_ppvt_t), KM_SLEEP);
usr/src/uts/sun4u/io/i2c/nexus/smbus.c
523
ppvt = kmem_zalloc(sizeof (smbus_ppvt_t), KM_SLEEP);
usr/src/uts/sun4u/io/iommu.c
1029
KM_SLEEP);
usr/src/uts/sun4u/io/iommu.c
1035
(npages + 1), KM_SLEEP);
usr/src/uts/sun4u/io/iommu.c
1364
mp = kmem_zalloc(sizeof (*mp), KM_SLEEP);
usr/src/uts/sun4u/io/iommu.c
1388
KM_SLEEP);
usr/src/uts/sun4u/io/iommu.c
1396
sizeof (uint_t), KM_SLEEP);
usr/src/uts/sun4u/io/iommu.c
1400
sizeof (int), KM_SLEEP);
usr/src/uts/sun4u/io/iommu.c
1404
kmem_zalloc(np * sizeof (uint64_t), KM_SLEEP);
usr/src/uts/sun4u/io/iommu.c
1527
iomemp = kmem_alloc(sizeof (struct io_mem_list), KM_SLEEP);
usr/src/uts/sun4u/io/iommu.c
1533
KM_SLEEP);
usr/src/uts/sun4u/io/iommu.c
464
iomemp = kmem_alloc(sizeof (struct io_mem_list), KM_SLEEP);
usr/src/uts/sun4u/io/iommu.c
470
KM_SLEEP);
usr/src/uts/sun4u/io/iommu.c
611
iomemp = kmem_alloc(sizeof (struct io_mem_list), KM_SLEEP);
usr/src/uts/sun4u/io/iommu.c
616
KM_SLEEP);
usr/src/uts/sun4u/io/iommu.c
771
(waitfp == DDI_DMA_SLEEP) ? KM_SLEEP : KM_NOSLEEP);
usr/src/uts/sun4u/io/isadma.c
659
hp = kmem_alloc(sizeof (ddi_acc_impl_t), KM_SLEEP);
usr/src/uts/sun4u/io/mc-us3.c
1499
mctrl = kmem_zalloc(sizeof (struct mctrl_info), KM_SLEEP);
usr/src/uts/sun4u/io/mc-us3.c
1524
dgrp = kmem_zalloc(sizeof (struct dgrp_info), KM_SLEEP);
usr/src/uts/sun4u/io/mc-us3.c
1537
KM_SLEEP);
usr/src/uts/sun4u/io/mc-us3.c
1618
bank_curr = kmem_zalloc(sizeof (struct bank_info), KM_SLEEP);
usr/src/uts/sun4u/io/mc-us3.c
1722
kmem_zalloc(sizeof (struct seg_info), KM_SLEEP);
usr/src/uts/sun4u/io/mc-us3.c
2051
sizeof (dimm_sid_t) * (NDGRPS * NDIMMS), KM_SLEEP);
usr/src/uts/sun4u/io/mc-us3.c
558
mcmem = kmem_zalloc(size, KM_SLEEP);
usr/src/uts/sun4u/io/mc-us3.c
616
mcseg = kmem_zalloc(size, KM_SLEEP);
usr/src/uts/sun4u/io/mc-us3.c
756
mcctrlconf = kmem_zalloc(size, KM_SLEEP);
usr/src/uts/sun4u/io/mc-us3.c
820
mccontrol = kmem_zalloc(size, KM_SLEEP);
usr/src/uts/sun4u/io/mc-us3i.c
1233
dgrp = kmem_zalloc(sizeof (*dgrp), KM_SLEEP);
usr/src/uts/sun4u/io/mc-us3i.c
1280
dev = kmem_zalloc(sizeof (*dev), KM_SLEEP);
usr/src/uts/sun4u/io/mc-us3i.c
1328
mctrl = kmem_zalloc(sizeof (*mctrl), KM_SLEEP);
usr/src/uts/sun4u/io/mc-us3i.c
496
mcmem = kmem_zalloc(size, KM_SLEEP);
usr/src/uts/sun4u/io/mc-us3i.c
551
mcseg = kmem_zalloc(size, KM_SLEEP);
usr/src/uts/sun4u/io/mc-us3i.c
679
mcctrlconf = kmem_zalloc(size, KM_SLEEP);
usr/src/uts/sun4u/io/mc-us3i.c
743
mccontrol = kmem_zalloc(size, KM_SLEEP);
usr/src/uts/sun4u/io/mc-us3i.c
847
banki = kmem_zalloc(sizeof (*banki), KM_SLEEP);
usr/src/uts/sun4u/io/mc-us3i.c
913
segi = kmem_zalloc(sizeof (*segi), KM_SLEEP);
usr/src/uts/sun4u/io/opl_cfg.c
1153
rp = kmem_zalloc(sizeof (struct fc_resource_list), KM_SLEEP);
usr/src/uts/sun4u/io/opl_cfg.c
1163
buf = kmem_zalloc(UNIT_ADDR_SIZE, KM_SLEEP);
usr/src/uts/sun4u/io/opl_cfg.c
1317
resp = kmem_zalloc(sizeof (struct fc_resource), KM_SLEEP);
usr/src/uts/sun4u/io/opl_cfg.c
1669
resp = kmem_zalloc(sizeof (struct fc_resource), KM_SLEEP);
usr/src/uts/sun4u/io/opl_cfg.c
1822
dropin_name = kmem_zalloc(FC_SVC_NAME_LEN, KM_SLEEP);
usr/src/uts/sun4u/io/opl_cfg.c
1834
fcode = kmem_zalloc(fcode_len, KM_SLEEP);
usr/src/uts/sun4u/io/opl_cfg.c
1872
dropin_name = kmem_zalloc(FC_SVC_NAME_LEN, KM_SLEEP);
usr/src/uts/sun4u/io/opl_cfg.c
1907
*handlep = impl_acc_hdl_alloc(KM_SLEEP, NULL);
usr/src/uts/sun4u/io/opl_cfg.c
1915
rspecp = kmem_zalloc(sizeof (struct regspec), KM_SLEEP);
usr/src/uts/sun4u/io/opl_cfg.c
2354
probe_string = kmem_zalloc(PROBE_STR_SIZE, KM_SLEEP);
usr/src/uts/sun4u/io/opl_cfg.c
2664
probe = kmem_zalloc(sizeof (opl_probe_t), KM_SLEEP);
usr/src/uts/sun4u/io/opl_cfg.c
364
hwdp = kmem_alloc(HWD_DATA_SIZE, KM_SLEEP);
usr/src/uts/sun4u/io/opl_cfg.c
722
char *path = kmem_alloc(MAXPATHLEN, KM_SLEEP);
usr/src/uts/sun4u/io/pci/db21554.c
1849
db_pvt = kmem_zalloc(sizeof (db_acc_pvt_t), KM_SLEEP);
usr/src/uts/sun4u/io/pci/pci_cb.c
211
cb_p->cb_imr_save = kmem_alloc(inos * sizeof (uint64_t), KM_SLEEP);
usr/src/uts/sun4u/io/pci/pci_cb.c
47
cb_t *cb_p = (cb_t *)kmem_zalloc(sizeof (cb_t), KM_SLEEP);
usr/src/uts/sun4u/io/pci/pci_dma.c
1187
waitfp == DDI_DMA_SLEEP ? KM_SLEEP : KM_NOSLEEP);
usr/src/uts/sun4u/io/pci/pci_dma.c
1512
iommu_p->dvma_alloc_rec = kmem_zalloc(sz, KM_SLEEP);
usr/src/uts/sun4u/io/pci/pci_dma.c
1513
iommu_p->dvma_free_rec = kmem_zalloc(sz, KM_SLEEP);
usr/src/uts/sun4u/io/pci/pci_dma.c
1570
ptr = kmem_alloc(sizeof (struct dvma_rec), KM_SLEEP);
usr/src/uts/sun4u/io/pci/pci_dma.c
254
int sleep = (waitfp == DDI_DMA_SLEEP) ? KM_SLEEP : KM_NOSLEEP;
usr/src/uts/sun4u/io/pci/pci_dma.c
783
waitfp == DDI_DMA_SLEEP ? KM_SLEEP : KM_NOSLEEP))) {
usr/src/uts/sun4u/io/pci/pci_ecc.c
69
ecc_p = (ecc_t *)kmem_zalloc(sizeof (ecc_t), KM_SLEEP);
usr/src/uts/sun4u/io/pci/pci_fdvma.c
216
mp = kmem_zalloc(sizeof (pci_dma_hdl_t), KM_SLEEP);
usr/src/uts/sun4u/io/pci/pci_fdvma.c
237
fdvma_p = kmem_alloc(sizeof (fdvma_t), KM_SLEEP);
usr/src/uts/sun4u/io/pci/pci_fdvma.c
238
fdvma_p->kvbase = kmem_zalloc(npages * sizeof (caddr_t), KM_SLEEP);
usr/src/uts/sun4u/io/pci/pci_fdvma.c
239
fdvma_p->pagecnt = kmem_zalloc(npages * sizeof (uint_t), KM_SLEEP);
usr/src/uts/sun4u/io/pci/pci_fdvma.c
240
fdvma_p->cbcookie = kmem_zalloc(npages * sizeof (void *), KM_SLEEP);
usr/src/uts/sun4u/io/pci/pci_ib.c
513
ib_ino_pil_t *ipil_p = kmem_zalloc(sizeof (ib_ino_pil_t), KM_SLEEP);
usr/src/uts/sun4u/io/pci/pci_ib.c
517
ino_p = kmem_zalloc(sizeof (ib_ino_info_t), KM_SLEEP);
usr/src/uts/sun4u/io/pci/pci_ib.c
62
ib_p = kmem_zalloc(sizeof (ib_t), KM_SLEEP);
usr/src/uts/sun4u/io/pci/pci_ib.c
808
ih_p = kmem_alloc(sizeof (ih_t), KM_SLEEP);
usr/src/uts/sun4u/io/pci/pci_iommu.c
67
iommu_p = (iommu_t *)kmem_zalloc(sizeof (iommu_t), KM_SLEEP);
usr/src/uts/sun4u/io/pci/pci_iommu.c
98
kmem_zalloc(pci_dvma_page_cache_entries, KM_SLEEP);
usr/src/uts/sun4u/io/pci/pci_pbm.c
75
pbm_p = (pbm_t *)kmem_zalloc(sizeof (pbm_t), KM_SLEEP);
usr/src/uts/sun4u/io/pci/pci_pci.c
1076
kmem_zalloc(sizeof (pci_pwr_t), KM_SLEEP);
usr/src/uts/sun4u/io/pci/pci_pwr.c
173
kmem_alloc(sizeof (int) * num_comps, KM_SLEEP);
usr/src/uts/sun4u/io/pci/pci_pwr.c
89
p = kmem_zalloc(sizeof (struct pci_pwr_chld), KM_SLEEP);
usr/src/uts/sun4u/io/pci/pci_sc.c
63
sc_p = (sc_t *)kmem_zalloc(sizeof (sc_t), KM_SLEEP);
usr/src/uts/sun4u/io/pci/pci_tools.c
339
iget = kmem_alloc(iget_kmem_alloc_size, KM_SLEEP);
usr/src/uts/sun4u/io/pci/pcipsy.c
588
buf1 = kmem_alloc(MAXNAMELEN, KM_SLEEP); /* strcmp */
usr/src/uts/sun4u/io/pci/pcipsy.c
589
buf2 = kmem_alloc(MAXNAMELEN, KM_SLEEP); /* strncmp */
usr/src/uts/sun4u/io/pci/pcisch.c
1204
(tm_mtlb_maxpgs + 1), KM_SLEEP);
usr/src/uts/sun4u/io/pci/pcisch.c
1227
kmem_zalloc(IOMMU_CTX_BITMAP_SIZE, KM_SLEEP);
usr/src/uts/sun4u/io/pci/pcisch.c
273
new_intr_buf = kmem_alloc(CELLS_1275_TO_BYTES(intr_cnt), KM_SLEEP);
usr/src/uts/sun4u/io/pmubus.c
772
KM_SLEEP);
usr/src/uts/sun4u/io/ppm_xgsubr.c
249
new = kmem_zalloc(sizeof (*new), KM_SLEEP);
usr/src/uts/sun4u/io/ppm_xgsubr.c
250
new->name = kmem_zalloc(strlen(*dev_namep) + 1, KM_SLEEP);
usr/src/uts/sun4u/io/ppm_xgsubr.c
340
new = kmem_zalloc(sizeof (*new), KM_SLEEP);
usr/src/uts/sun4u/io/ppm_xgsubr.c
341
new->path = kmem_zalloc(strlen(path) + 1, KM_SLEEP);
usr/src/uts/sun4u/io/px/px_lib4u.c
1403
OBERON_UBC_ID_MAX, KM_SLEEP);
usr/src/uts/sun4u/io/px/px_lib4u.c
205
pxu_p = kmem_zalloc(sizeof (pxu_t), KM_SLEEP);
usr/src/uts/sun4u/io/px/px_lib4u.c
2187
cb_p = kmem_zalloc(sizeof (px_cb_t), KM_SLEEP);
usr/src/uts/sun4u/io/px/px_lib4u.c
2213
pxl = kmem_zalloc(sizeof (px_cb_list_t), KM_SLEEP);
usr/src/uts/sun4u/io/px/px_lib4u.c
2229
pxl_new = kmem_zalloc(sizeof (px_cb_list_t), KM_SLEEP);
usr/src/uts/sun4u/io/px/px_lib4u.c
738
msiq_state_p->msiq_buf_p = kmem_zalloc(size, KM_SLEEP);
usr/src/uts/sun4u/io/rmcadm.c
383
rr.req.msg_buf = kmem_alloc(rr.req.msg_len, KM_SLEEP);
usr/src/uts/sun4u/io/rmcadm.c
405
rr.resp.msg_buf = kmem_alloc(rr.resp.msg_len, KM_SLEEP);
usr/src/uts/sun4u/io/rmcadm.c
584
ssbp.data_buf = kmem_alloc(ssbp.data_len, KM_SLEEP);
usr/src/uts/sun4u/io/rmcadm.c
603
kmem_alloc(ssbp.resp_bp.msg_len, KM_SLEEP);
usr/src/uts/sun4u/io/rmclomv.c
604
rmclomv_cache_section_t *ptr = kmem_zalloc(len, KM_SLEEP);
usr/src/uts/sun4u/io/sbbc.c
683
childintr = kmem_zalloc(sizeof (struct sbbc_child_intr), KM_SLEEP);
usr/src/uts/sun4u/io/sbd.c
1448
shp = kmem_zalloc(sizeof (sbd_priv_handle_t), KM_SLEEP);
usr/src/uts/sun4u/io/sbd.c
1543
hdp = kmem_zalloc(sizeof (sbdp_handle_t), KM_SLEEP);
usr/src/uts/sun4u/io/sbd.c
1544
hdp->h_err = kmem_zalloc(sizeof (sbd_error_t), KM_SLEEP);
usr/src/uts/sun4u/io/sbd.c
4366
dstatp = kmem_zalloc(sz, KM_SLEEP);
usr/src/uts/sun4u/io/sbd.c
4371
dstat32p = kmem_zalloc(sz32, KM_SLEEP);
usr/src/uts/sun4u/io/sbd.c
4911
sbp->sb_cpupath[i] = kmem_zalloc(MAXPATHLEN, KM_SLEEP);
usr/src/uts/sun4u/io/sbd.c
4915
sbp->sb_mempath[i] = kmem_zalloc(MAXPATHLEN, KM_SLEEP);
usr/src/uts/sun4u/io/sbd.c
4919
sbp->sb_iopath[i] = kmem_zalloc(MAXPATHLEN, KM_SLEEP);
usr/src/uts/sun4u/io/sbd.c
5113
status_buf = kmem_zalloc(sizeof (char) * OBP_MAXPROPNAME, KM_SLEEP);
usr/src/uts/sun4u/io/sbd_io.c
197
sep = kmem_zalloc(sizeof (sbd_error_t), KM_SLEEP);
usr/src/uts/sun4u/io/sbd_io.c
333
sep = kmem_zalloc(sizeof (sbd_error_t), KM_SLEEP);
usr/src/uts/sun4u/io/sysiosbus.c
1425
msgbuf = kmem_zalloc(REPORTDEV_BUFSIZE, KM_SLEEP);
usr/src/uts/sun4u/io/sysiosbus.c
1696
intr_handler = kmem_zalloc(sizeof (struct sbus_intr_handler), KM_SLEEP);
usr/src/uts/sun4u/io/sysiosbus.c
1740
KM_SLEEP);
usr/src/uts/sun4u/io/sysiosbus.c
935
pdptr = kmem_zalloc(sizeof (*pdptr), KM_SLEEP);
usr/src/uts/sun4u/lw2plus/io/lombus.c
1955
lcip = kmem_zalloc(sizeof (*lcip), KM_SLEEP);
usr/src/uts/sun4u/lw8/io/lw8.c
1128
lw8_progp = kmem_alloc(sizeof (*lw8_progp), KM_SLEEP);
usr/src/uts/sun4u/lw8/io/lw8.c
1216
lw8_eventlogp = kmem_alloc(sizeof (*lw8_eventlogp), KM_SLEEP);
usr/src/uts/sun4u/lw8/io/lw8.c
1217
lw8_eventresp = kmem_zalloc(sizeof (*lw8_eventresp), KM_SLEEP);
usr/src/uts/sun4u/lw8/io/lw8.c
1326
lw8_logmsgp = kmem_zalloc(sizeof (*lw8_logmsgp), KM_SLEEP);
usr/src/uts/sun4u/lw8/io/ntwdt.c
625
kmem_zalloc(sizeof (ntwdt_wdog_t), KM_SLEEP);
usr/src/uts/sun4u/lw8/io/sgenv.c
1140
env_cache_snapshot_size, KM_SLEEP);
usr/src/uts/sun4u/lw8/io/sgfru.c
1002
datap = kmem_zalloc(size, KM_SLEEP);
usr/src/uts/sun4u/lw8/io/sgfru.c
1058
datap = kmem_zalloc(size, KM_SLEEP);
usr/src/uts/sun4u/lw8/io/sgfru.c
398
datap = kmem_zalloc(size, KM_SLEEP);
usr/src/uts/sun4u/lw8/io/sgfru.c
413
clistp = (node_t *)kmem_zalloc(ssize, KM_SLEEP);
usr/src/uts/sun4u/lw8/io/sgfru.c
469
datap = kmem_zalloc(size, KM_SLEEP);
usr/src/uts/sun4u/lw8/io/sgfru.c
520
datap = kmem_zalloc(size, KM_SLEEP);
usr/src/uts/sun4u/lw8/io/sgfru.c
575
datap = kmem_zalloc(size, KM_SLEEP);
usr/src/uts/sun4u/lw8/io/sgfru.c
586
sectp = (section_t *)kmem_zalloc(ssize, KM_SLEEP);
usr/src/uts/sun4u/lw8/io/sgfru.c
639
datap = kmem_zalloc(size, KM_SLEEP);
usr/src/uts/sun4u/lw8/io/sgfru.c
649
segp = (segment_t *)kmem_zalloc(ssize, KM_SLEEP);
usr/src/uts/sun4u/lw8/io/sgfru.c
704
datap = kmem_zalloc(size, KM_SLEEP);
usr/src/uts/sun4u/lw8/io/sgfru.c
760
datap = kmem_zalloc(size, KM_SLEEP);
usr/src/uts/sun4u/lw8/io/sgfru.c
816
datap = kmem_zalloc(size, KM_SLEEP);
usr/src/uts/sun4u/lw8/io/sgfru.c
870
datap = kmem_zalloc(size, KM_SLEEP);
usr/src/uts/sun4u/lw8/io/sgfru.c
881
packp = (packet_t *)kmem_zalloc(ssize, KM_SLEEP);
usr/src/uts/sun4u/lw8/io/sgfru.c
935
datap = kmem_zalloc(size, KM_SLEEP);
usr/src/uts/sun4u/lw8/os/lw8_platmod.c
1106
sleep_flag = KM_SLEEP;
usr/src/uts/sun4u/lw8/os/lw8_platmod.c
1112
sleep_flag = KM_SLEEP;
usr/src/uts/sun4u/lw8/os/lw8_platmod.c
1119
sleep_flag = KM_SLEEP;
usr/src/uts/sun4u/lw8/os/lw8_platmod.c
1125
sleep_flag = KM_SLEEP;
usr/src/uts/sun4u/ngdr/io/dr.c
1611
list = kmem_zalloc(len, KM_SLEEP);
usr/src/uts/sun4u/ngdr/io/dr_cpu.c
429
MAX_CPU_UNITS_PER_BOARD, KM_SLEEP);
usr/src/uts/sun4u/ngdr/io/dr_mem.c
776
char *path = kmem_alloc(MAXPATHLEN, KM_SLEEP);
usr/src/uts/sun4u/ngdr/io/dr_quiesce.c
1065
buf = (char *)kmem_zalloc(MAXPATHLEN, KM_SLEEP);
usr/src/uts/sun4u/ngdr/sys/dr_util.h
42
((t *)kmem_zalloc((size_t)(n) * sizeof (t), KM_SLEEP))
usr/src/uts/sun4u/opl/io/dr_mem.c
759
char *path = kmem_alloc(MAXPATHLEN, KM_SLEEP);
usr/src/uts/sun4u/opl/io/drmach.c
1039
bp = kmem_zalloc(sizeof (drmach_board_t), KM_SLEEP);
usr/src/uts/sun4u/opl/io/drmach.c
1155
floating = (int *)kmem_alloc(len, KM_SLEEP);
usr/src/uts/sun4u/opl/io/drmach.c
1273
ip = kmem_zalloc(sizeof (drmach_io_t), KM_SLEEP);
usr/src/uts/sun4u/opl/io/drmach.c
1837
cp = kmem_zalloc(sizeof (drmach_cpu_t), KM_SLEEP);
usr/src/uts/sun4u/opl/io/drmach.c
2229
mp = kmem_zalloc(sizeof (drmach_mem_t), KM_SLEEP);
usr/src/uts/sun4u/opl/io/drmach.c
2716
char *path = kmem_alloc(MAXPATHLEN, KM_SLEEP);
usr/src/uts/sun4u/opl/io/drmach.c
2878
km_flag = (flag == SE_SLEEP) ? KM_SLEEP : KM_NOSLEEP;
usr/src/uts/sun4u/opl/io/drmach.c
2949
str = (char *)kmem_zalloc(len+1, KM_SLEEP);
usr/src/uts/sun4u/opl/io/drmach.c
3534
DRMACH_FMEM_LOCKED_PAGES * PAGESIZE, KM_SLEEP);
usr/src/uts/sun4u/opl/io/drmach.c
750
np = kmem_zalloc(sizeof (drmach_node_t), KM_SLEEP);
usr/src/uts/sun4u/opl/io/drmach.c
846
arr = kmem_zalloc(sizeof (drmach_array_t), KM_SLEEP);
usr/src/uts/sun4u/opl/io/drmach.c
853
arr->arr = kmem_zalloc(arr->arr_sz, KM_SLEEP);
usr/src/uts/sun4u/opl/io/drmach.c
965
char *path = kmem_alloc(MAXPATHLEN, KM_SLEEP);
usr/src/uts/sun4u/opl/io/mc-opl.c
1544
p = kmem_zalloc(sizeof (scf_log_t), KM_SLEEP);
usr/src/uts/sun4u/opl/io/mc-opl.c
2459
*mlp = kmem_alloc(sizeof (struct memlist), KM_SLEEP);
usr/src/uts/sun4u/opl/io/mc-opl.c
2509
KM_SLEEP);
usr/src/uts/sun4u/opl/io/mc-opl.c
3794
bd_dimmp = (board_dimm_info_t *)kmem_alloc(bufsz, KM_SLEEP);
usr/src/uts/sun4u/opl/io/mc-opl.c
3845
KM_SLEEP);
usr/src/uts/sun4u/opl/io/mc-opl.c
3871
*unum = kmem_alloc(fpag->fmri_sz, KM_SLEEP);
usr/src/uts/sun4u/opl/io/mc-opl.c
3899
sid = kmem_zalloc(sid_sz, KM_SLEEP);
usr/src/uts/sun4u/opl/io/mc-opl.c
4046
buf = (caddr_t)kmem_alloc(PAGESIZE, KM_SLEEP);
usr/src/uts/sun4u/opl/io/mc-opl.c
4093
kbuf = kmem_alloc(512 * 1024 * 1024, KM_SLEEP);
usr/src/uts/sun4u/opl/io/oplkmdrv.c
511
msgbuf = kmem_alloc(len, KM_SLEEP);
usr/src/uts/sun4u/opl/io/oplmsu/oplmsu.c
1287
mpath = (struct msu_path *)kmem_zalloc((size_t)len, KM_SLEEP);
usr/src/uts/sun4u/opl/io/oplmsu/oplmsu.c
1419
mpath = (struct msu_path *)kmem_zalloc((size_t)len, KM_SLEEP);
usr/src/uts/sun4u/opl/io/oplmsu/oplmsu.c
1532
kmem_zalloc(sizeof (ser_devl_t), KM_SLEEP);
usr/src/uts/sun4u/opl/io/oplmsu/oplmsu.c
1584
mpath = (struct msu_path *)kmem_zalloc((size_t)size, KM_SLEEP);
usr/src/uts/sun4u/opl/io/oplmsu/oplmsu.c
1585
plink_id = (int *)kmem_zalloc((sizeof (int) * devcnt), KM_SLEEP);
usr/src/uts/sun4u/opl/io/oplmsu/oplmsu.c
1742
upath = (upath_t *)kmem_zalloc(sizeof (upath_t), KM_SLEEP);
usr/src/uts/sun4u/opl/io/oplmsu/oplmsu.c
384
(sizeof (msu_trc_t) * oplmsu_ltrc_size), KM_SLEEP);
usr/src/uts/sun4u/opl/io/oplmsu/oplmsu.c
549
ctrl = (ctrl_t *)kmem_zalloc(sizeof (ctrl_t), KM_SLEEP);
usr/src/uts/sun4u/opl/io/oplmsu/oplmsu.c
559
(struct buf_tbl *)kmem_zalloc(sizeof (struct buf_tbl), KM_SLEEP);
usr/src/uts/sun4u/opl/io/pcicmu/pcicmu.c
1346
buf1 = kmem_alloc(MAXNAMELEN, KM_SLEEP); /* strcmp */
usr/src/uts/sun4u/opl/io/pcicmu/pcicmu.c
1347
buf2 = kmem_alloc(MAXNAMELEN, KM_SLEEP); /* strncmp */
usr/src/uts/sun4u/opl/io/pcicmu/pcicmu.c
1685
kmem_zalloc(sizeof (u2u_ittrans_data_t), KM_SLEEP);
usr/src/uts/sun4u/opl/io/pcicmu/pcmu_cb.c
251
pcb_p->pcb_imr_save = kmem_alloc(inos * sizeof (uint64_t), KM_SLEEP);
usr/src/uts/sun4u/opl/io/pcicmu/pcmu_cb.c
46
kmem_zalloc(sizeof (pcmu_cb_t), KM_SLEEP);
usr/src/uts/sun4u/opl/io/pcicmu/pcmu_ecc.c
63
pecc_p = (pcmu_ecc_t *)kmem_zalloc(sizeof (pcmu_ecc_t), KM_SLEEP);
usr/src/uts/sun4u/opl/io/pcicmu/pcmu_ib.c
443
KM_SLEEP);
usr/src/uts/sun4u/opl/io/pcicmu/pcmu_ib.c
56
pib_p = kmem_zalloc(sizeof (pcmu_ib_t), KM_SLEEP);
usr/src/uts/sun4u/opl/io/pcicmu/pcmu_ib.c
713
ih_p = kmem_alloc(sizeof (ih_t), KM_SLEEP);
usr/src/uts/sun4u/opl/io/pcicmu/pcmu_pbm.c
65
pcbm_p = (pcmu_pbm_t *)kmem_zalloc(sizeof (pcmu_pbm_t), KM_SLEEP);
usr/src/uts/sun4u/opl/os/opl.c
1212
msg = (nm_msg_t *)kmem_zalloc(NM_LEN(len), KM_SLEEP);
usr/src/uts/sun4u/opl/os/opl.c
340
new = kmem_zalloc(sizeof (struct memlist), KM_SLEEP);
usr/src/uts/sun4u/os/cpr_impl.c
1391
cdef = kmem_alloc(sizeof (*cdef), KM_SLEEP);
usr/src/uts/sun4u/os/mach_mp_startup.c
189
cp->cpu_idstr = kmem_alloc(strlen(buf) + 1, KM_SLEEP);
usr/src/uts/sun4u/os/mach_mp_startup.c
192
cp->cpu_brandstr = kmem_alloc(strlen(cpunode->name) + 1, KM_SLEEP);
usr/src/uts/sun4u/os/mach_startup.c
133
fpras_chkfngrps_base = kmem_alloc(chkfngrpsallocsz, KM_SLEEP);
usr/src/uts/sun4u/os/mach_startup.c
140
KM_SLEEP);
usr/src/uts/sun4u/os/plat_ecc_dimm.c
120
*max_entries, KM_SLEEP);
usr/src/uts/sun4u/os/plat_ecc_dimm.c
366
wrapperp = kmem_zalloc(sizeof (plat_ecc_message_t), KM_SLEEP);
usr/src/uts/sun4u/os/plat_ecc_dimm.c
372
wrapperp->ecc_msg_data = kmem_zalloc(wrapperp->ecc_msg_len, KM_SLEEP);
usr/src/uts/sun4u/os/plat_ecc_unum.c
629
kmem_zalloc(sizeof (plat_ecc_message_t), KM_SLEEP);
usr/src/uts/sun4u/os/plat_ecc_unum.c
634
wrapperp->ecc_msg_data = kmem_zalloc(wrapperp->ecc_msg_len, KM_SLEEP);
usr/src/uts/sun4u/os/plat_ecc_unum.c
744
kmem_zalloc(sizeof (plat_ecc_message_t), KM_SLEEP);
usr/src/uts/sun4u/os/plat_ecc_unum.c
750
wrapperp->ecc_msg_data = kmem_zalloc(wrapperp->ecc_msg_len, KM_SLEEP);
usr/src/uts/sun4u/os/plat_ecc_unum.c
791
wrapperp = kmem_zalloc(sizeof (plat_ecc_message_t), KM_SLEEP);
usr/src/uts/sun4u/os/plat_ecc_unum.c
799
wrapperp->ecc_msg_data = kmem_zalloc(wrapperp->ecc_msg_len, KM_SLEEP);
usr/src/uts/sun4u/pcbe/opl_pcbe.c
550
pic_events[i] = kmem_alloc(size + 1, KM_SLEEP);
usr/src/uts/sun4u/pcbe/opl_pcbe.c
700
conf = kmem_alloc(sizeof (opl_pcbe_config_t), KM_SLEEP);
usr/src/uts/sun4u/pcbe/us234_pcbe.c
659
pic_events[i] = kmem_alloc(size + 1, KM_SLEEP);
usr/src/uts/sun4u/pcbe/us234_pcbe.c
805
conf = kmem_alloc(sizeof (us_pcbe_config_t), KM_SLEEP);
usr/src/uts/sun4u/serengeti/io/sbdp.c
426
hp = kmem_zalloc(sizeof (sbdp_handle_t), KM_SLEEP);
usr/src/uts/sun4u/serengeti/io/sbdp.c
429
hp->h_err = kmem_zalloc(sizeof (*hp->h_err), KM_SLEEP);
usr/src/uts/sun4u/serengeti/io/sbdp.c
477
KM_SLEEP);
usr/src/uts/sun4u/serengeti/io/sbdp.c
514
wnodep->bds = kmem_zalloc(sizeof (sbdp_bd_t) * boards, KM_SLEEP);
usr/src/uts/sun4u/serengeti/io/sbdp.c
653
wnodep = kmem_zalloc(sizeof (sbdp_wnode_t), KM_SLEEP);
usr/src/uts/sun4u/serengeti/io/sbdp_dr.c
365
KM_SLEEP);
usr/src/uts/sun4u/serengeti/io/sbdp_dr.c
386
char *path = kmem_alloc(MAXPATHLEN, KM_SLEEP);
usr/src/uts/sun4u/serengeti/io/sbdp_error.c
147
arg_str = kmem_alloc(len, KM_SLEEP);
usr/src/uts/sun4u/serengeti/io/sbdp_mem.c
1819
new = kmem_zalloc(sizeof (sbdp_bank_t), KM_SLEEP);
usr/src/uts/sun4u/serengeti/io/sbdp_mem.c
1962
cur_seg = kmem_zalloc(sizeof (sbdp_seg_t), KM_SLEEP);
usr/src/uts/sun4u/serengeti/io/sbdp_mem.c
2168
cph = kmem_zalloc(sizeof (sbdp_cr_handle_t), KM_SLEEP);
usr/src/uts/sun4u/serengeti/io/sbdp_mem.c
2171
rsbuffer = kmem_zalloc(size, KM_SLEEP);
usr/src/uts/sun4u/serengeti/io/sbdp_mem.c
299
cph = kmem_zalloc(sizeof (sbdp_cr_handle_t), KM_SLEEP);
usr/src/uts/sun4u/serengeti/io/sbdp_mem.c
327
mempage = kmem_alloc(PAGESIZE, KM_SLEEP);
usr/src/uts/sun4u/serengeti/io/sbdp_mem.c
352
rsbuffer = kmem_zalloc(size, KM_SLEEP);
usr/src/uts/sun4u/serengeti/io/sbdp_mem.c
528
char *path = kmem_alloc(MAXPATHLEN, KM_SLEEP);
usr/src/uts/sun4u/serengeti/io/sbdp_mem.c
908
phys_banks = kmem_zalloc(bsize, KM_SLEEP);
usr/src/uts/sun4u/serengeti/io/sbdp_mem.c
909
mc_idle_regs = kmem_zalloc(msize, KM_SLEEP);
usr/src/uts/sun4u/serengeti/io/sbdp_quiesce.c
152
srh = kmem_zalloc(sizeof (sbdp_sr_handle_t), KM_SLEEP);
usr/src/uts/sun4u/serengeti/io/sgcn.c
198
sgcn_state = kmem_zalloc(sizeof (sgcn_t), KM_SLEEP);
usr/src/uts/sun4u/serengeti/io/sgcn.c
273
kmem_alloc(sgcn_state->sgcn_inbuf_size, KM_SLEEP);
usr/src/uts/sun4u/serengeti/io/sghsc.c
1747
sizeof (sghsc_event_t) * rb_head->size, KM_SLEEP);
usr/src/uts/sun4u/serengeti/io/sghsc.c
400
(sghsc->sghsc_num_slots * sizeof (sghsc_slot_t)), KM_SLEEP);
usr/src/uts/sun4u/serengeti/io/sghsc.c
666
slot_ops = hpc_alloc_slot_ops(KM_SLEEP);
usr/src/uts/sun4u/serengeti/io/sgsbbc_mailbox.c
2346
dparray = kmem_zalloc(num * sizeof (uint16_t *), KM_SLEEP);
usr/src/uts/sun4u/serengeti/io/sgsbbc_mailbox.c
2429
snarray = kmem_zalloc(jj * sizeof (uint64_t), KM_SLEEP);
usr/src/uts/sun4u/serengeti/io/sgsbbc_mailbox.c
627
intr = kmem_zalloc(sizeof (sbbc_intrs_t), KM_SLEEP);
usr/src/uts/sun4u/serengeti/io/ssm.c
420
tsp = kmem_zalloc(sizeof (struct ssm_node2inst), KM_SLEEP);
usr/src/uts/sun4u/serengeti/io/ssm.c
963
KM_SLEEP);
usr/src/uts/sun4u/serengeti/io/ssm.c
967
rv = sysevent_add_attr(&evnt_attr_list, DR_AP_ID, &evnt_val, KM_SLEEP);
usr/src/uts/sun4u/serengeti/io/ssm.c
981
rv = sysevent_add_attr(&evnt_attr_list, DR_HINT, &evnt_val, KM_SLEEP);
usr/src/uts/sun4u/serengeti/os/serengeti.c
1093
sleep_flag = KM_SLEEP;
usr/src/uts/sun4u/serengeti/os/serengeti.c
1099
sleep_flag = KM_SLEEP;
usr/src/uts/sun4u/serengeti/os/serengeti.c
1106
sleep_flag = KM_SLEEP;
usr/src/uts/sun4u/serengeti/os/serengeti.c
1112
sleep_flag = KM_SLEEP;
usr/src/uts/sun4u/sunfire/io/ac.c
520
pkt->errbuf = kmem_zalloc(SYSC_OUTPUT_LEN, KM_SLEEP);
usr/src/uts/sun4u/sunfire/io/ac_add.c
142
fill_buf = kmem_zalloc(ADD_PAGESIZE, KM_SLEEP);
usr/src/uts/sun4u/sunfire/io/ac_del.c
398
fill_buf = kmem_zalloc(DEL_PAGESIZE, KM_SLEEP);
usr/src/uts/sun4u/sunfire/io/ac_del.c
84
dsp = (struct del_status *)kmem_zalloc(sizeof (*dsp), KM_SLEEP);
usr/src/uts/sun4u/sunfire/io/ac_stat.c
100
statp = kmem_zalloc(sizeof (ac_stat_t), KM_SLEEP);
usr/src/uts/sun4u/sunfire/io/ac_stat.c
180
stat32p = kmem_zalloc(sizeof (ac_stat32_t), KM_SLEEP);
usr/src/uts/sun4u/sunfire/io/ac_test.c
185
test = kmem_zalloc(sizeof (struct test_info), KM_SLEEP);
usr/src/uts/sun4u/sunfire/io/ac_test.c
192
test->bufp = kmem_alloc(TEST_PAGESIZE, KM_SLEEP);
usr/src/uts/sun4u/sunfire/io/fhc.c
1240
fhc_arg = kmem_alloc(sizeof (struct fhc_wrapper_arg), KM_SLEEP);
usr/src/uts/sun4u/sunfire/io/fhc.c
2476
mfgmode = kmem_alloc(mfgmode_len+1, KM_SLEEP);
usr/src/uts/sun4u/sunfire/io/fhc.c
2643
list = kmem_zalloc(sizeof (struct ft_link_list), KM_SLEEP);
usr/src/uts/sun4u/sunfire/io/fhc.c
2782
p = kmem_alloc(sizeof (struct fhc_memloc), KM_SLEEP);
usr/src/uts/sun4u/sunfire/io/fhc_bd.c
299
temp = kmem_alloc(newsize, KM_SLEEP);
usr/src/uts/sun4u/sunfire/io/fhc_bd.c
338
kmem_zalloc(sizeof (fhc_bd_t), KM_SLEEP);
usr/src/uts/sun4u/sunfire/io/fhc_bd.c
345
kmem_zalloc(sizeof (fhc_bd_t), KM_SLEEP);
usr/src/uts/sun4u/sunfire/io/fhc_bd.c
523
dlist = kmem_alloc(len, KM_SLEEP);
usr/src/uts/sun4u/sunfire/io/fhc_bd.c
728
kmem_zalloc(sizeof (fhc_bd_t), KM_SLEEP);
usr/src/uts/sun4u/sunfire/io/sysctrl.c
1186
pkt->errbuf = kmem_zalloc(SYSC_OUTPUT_LEN, KM_SLEEP);
usr/src/uts/sun4u/sunfire/io/sysctrl.c
1261
KM_SLEEP);
usr/src/uts/sun4u/sunfire/io/sysctrl.c
1264
fhc_max_boards(), KM_SLEEP);
usr/src/uts/sun4u/sunfire/io/sysctrl_dr.c
1488
KM_SLEEP);
usr/src/uts/sun4u/sunfire/io/sysctrl_dr.c
1505
regp = kmem_alloc(len, KM_SLEEP);
usr/src/uts/sun4u/sys/sbdpriv.h
167
((t *)kmem_zalloc((size_t)(n) * sizeof (t), KM_SLEEP))
usr/src/uts/sun4v/io/cnex.c
1306
listp = (mde_cookie_t *)kmem_zalloc(listsz, KM_SLEEP);
usr/src/uts/sun4v/io/cnex.c
508
listp = (mde_cookie_t *)kmem_zalloc(listsz, KM_SLEEP);
usr/src/uts/sun4v/io/cnex.c
567
new_cldcp = kmem_zalloc(sizeof (*new_cldcp), KM_SLEEP);
usr/src/uts/sun4v/io/dr_cpu.c
1019
listp = kmem_zalloc(listsz, KM_SLEEP);
usr/src/uts/sun4v/io/dr_cpu.c
1448
listp = kmem_zalloc(listsz, KM_SLEEP);
usr/src/uts/sun4v/io/dr_cpu.c
1506
char *path = kmem_alloc(MAXPATHLEN, KM_SLEEP);
usr/src/uts/sun4v/io/dr_cpu.c
354
resp = kmem_alloc(size, KM_SLEEP);
usr/src/uts/sun4v/io/dr_cpu.c
433
drctl_req = kmem_zalloc(drctl_req_len, KM_SLEEP);
usr/src/uts/sun4v/io/dr_cpu.c
559
res = kmem_zalloc(nrsrc * sizeof (dr_cpu_res_t), KM_SLEEP);
usr/src/uts/sun4v/io/dr_cpu.c
590
res[idx].string = kmem_alloc(err_len, KM_SLEEP);
usr/src/uts/sun4v/io/dr_cpu.c
661
resp = kmem_zalloc(resp_len, KM_SLEEP);
usr/src/uts/sun4v/io/dr_cpu.c
792
psrset = kmem_zalloc(sizeof (*psrset) * nres, KM_SLEEP);
usr/src/uts/sun4v/io/dr_cpu.c
849
res[cpu_idx].string = kmem_alloc(err_len, KM_SLEEP);
usr/src/uts/sun4v/io/dr_cpu.c
939
res->string = kmem_alloc(err_len, KM_SLEEP);
usr/src/uts/sun4v/io/dr_cpu.c
976
rp = kmem_zalloc(rlen, KM_SLEEP);
usr/src/uts/sun4v/io/dr_io.c
406
listp = kmem_zalloc(listsz, KM_SLEEP);
usr/src/uts/sun4v/io/dr_io.c
479
listp = kmem_zalloc(listsz, KM_SLEEP);
usr/src/uts/sun4v/io/dr_io.c
528
drctl_req = kmem_zalloc(drctl_req_len, KM_SLEEP);
usr/src/uts/sun4v/io/dr_io.c
673
drctl_req = kmem_zalloc(drctl_req_len, KM_SLEEP);
usr/src/uts/sun4v/io/dr_io.c
723
char *path = kmem_alloc(MAXPATHLEN, KM_SLEEP);
usr/src/uts/sun4v/io/dr_io.c
789
res = kmem_zalloc(res_len, KM_SLEEP);
usr/src/uts/sun4v/io/dr_mem.c
1021
listp = kmem_zalloc(listsz, KM_SLEEP);
usr/src/uts/sun4v/io/dr_mem.c
399
return (i_ddi_strdup(dr_mem_estr[result], KM_SLEEP));
usr/src/uts/sun4v/io/dr_mem.c
404
errstr = kmem_alloc(len, KM_SLEEP);
usr/src/uts/sun4v/io/dr_mem.c
472
drctl_req = kmem_zalloc(drctl_req_len, KM_SLEEP);
usr/src/uts/sun4v/io/dr_mem.c
588
res = kmem_zalloc(nrsrc * sizeof (dr_mem_res_t), KM_SLEEP);
usr/src/uts/sun4v/io/dr_mem.c
618
res[idx].string = kmem_alloc(err_len, KM_SLEEP);
usr/src/uts/sun4v/io/dr_mem.c
680
resp = kmem_zalloc(resp_len, KM_SLEEP);
usr/src/uts/sun4v/io/dr_mem.c
787
rp = kmem_zalloc(rlen, KM_SLEEP);
usr/src/uts/sun4v/io/dr_mem.c
958
rp = kmem_zalloc(rlen, KM_SLEEP);
usr/src/uts/sun4v/io/dr_mem.c
987
rp = kmem_zalloc(rlen, KM_SLEEP);
usr/src/uts/sun4v/io/dr_util.c
100
rv = sysevent_add_attr(&evnt_attr_list, DR_AP_ID, &evnt_val, KM_SLEEP);
usr/src/uts/sun4v/io/dr_util.c
113
rv = sysevent_add_attr(&evnt_attr_list, DR_HINT, &evnt_val, KM_SLEEP);
usr/src/uts/sun4v/io/dr_util.c
157
KM_SLEEP);
usr/src/uts/sun4v/io/dr_util.c
96
ev = sysevent_alloc(EC_DR, ESC_DR_AP_STATE_CHANGE, pubname, KM_SLEEP);
usr/src/uts/sun4v/io/drctl.c
289
resp = kmem_alloc(size, KM_SLEEP);
usr/src/uts/sun4v/io/drctl.c
320
resp = kmem_alloc(*size, KM_SLEEP);
usr/src/uts/sun4v/io/drctl.c
632
kmem_alloc(*osize, KM_SLEEP);
usr/src/uts/sun4v/io/drctl.c
686
msgp = kmem_alloc(*osize, KM_SLEEP);
usr/src/uts/sun4v/io/ds_drv.c
218
portp = kmem_zalloc(listsz, KM_SLEEP);
usr/src/uts/sun4v/io/ds_drv.c
219
chanp = kmem_zalloc(listsz, KM_SLEEP);
usr/src/uts/sun4v/io/ds_drv.c
543
new = kmem_zalloc(sizeof (ds_log_entry_t), KM_SLEEP);
usr/src/uts/sun4v/io/ds_drv.c
698
data = kmem_alloc(sz, KM_SLEEP);
usr/src/uts/sun4v/io/ds_pri.c
571
tmpbufp = kmem_alloc(len, KM_SLEEP);
usr/src/uts/sun4v/io/ds_pri.c
858
data = kmem_alloc(pri_size, KM_SLEEP);
usr/src/uts/sun4v/io/ds_pri.c
927
pri_data = kmem_alloc(pri_size, KM_SLEEP);
usr/src/uts/sun4v/io/ds_snmp.c
1002
sp->data = kmem_alloc(snmp_size, KM_SLEEP);
usr/src/uts/sun4v/io/ds_snmp.c
622
tmpbufp = kmem_alloc(len, KM_SLEEP);
usr/src/uts/sun4v/io/ds_snmp.c
674
tmpbufp = kmem_alloc(len, KM_SLEEP);
usr/src/uts/sun4v/io/iospc/iospc.c
272
sizeof (kstat_t)), KM_SLEEP);
usr/src/uts/sun4v/io/iospc/iospc.c
314
sizeof (iospc_ksinfo_t), KM_SLEEP);
usr/src/uts/sun4v/io/ldc.c
2609
ldcp = kmem_zalloc(sizeof (ldc_chan_t), KM_SLEEP);
usr/src/uts/sun4v/io/ldc.c
2682
ldcp->stream_bufferp = kmem_alloc(ldcp->mtu, KM_SLEEP);
usr/src/uts/sun4v/io/ldc.c
2761
KM_SLEEP);
usr/src/uts/sun4v/io/ldc.c
390
ldcssp = kmem_zalloc(sizeof (ldc_soft_state_t), KM_SLEEP);
usr/src/uts/sun4v/io/ldc_shm.c
1326
kmem_cache_alloc(ldcssp->memseg_cache, KM_SLEEP);
usr/src/uts/sun4v/io/ldc_shm.c
1329
memseg->pages = kmem_zalloc((sizeof (ldc_page_t) * npages), KM_SLEEP);
usr/src/uts/sun4v/io/ldc_shm.c
1331
kmem_zalloc((sizeof (ldc_mem_cookie_t) * ccount), KM_SLEEP);
usr/src/uts/sun4v/io/ldc_shm.c
1461
memseg->vaddr = kmem_zalloc(exp_size, KM_SLEEP);
usr/src/uts/sun4v/io/ldc_shm.c
1713
dringp = kmem_zalloc(sizeof (ldc_dring_t), KM_SLEEP);
usr/src/uts/sun4v/io/ldc_shm.c
1727
dringp->base = kmem_zalloc(dringp->size, KM_SLEEP);
usr/src/uts/sun4v/io/ldc_shm.c
216
mhdl = kmem_cache_alloc(ldcssp->memhdl_cache, KM_SLEEP);
usr/src/uts/sun4v/io/ldc_shm.c
2217
dringp = kmem_zalloc(sizeof (ldc_dring_t), KM_SLEEP);
usr/src/uts/sun4v/io/ldc_shm.c
400
mtbl = kmem_zalloc(sizeof (ldc_mtbl_t), KM_SLEEP);
usr/src/uts/sun4v/io/ldc_shm.c
412
mtbl->table = kmem_alloc(MMU_PAGESIZE, KM_SLEEP);
usr/src/uts/sun4v/io/ldc_shm.c
489
kmem_cache_alloc(ldcssp->memseg_cache, KM_SLEEP);
usr/src/uts/sun4v/io/ldc_shm.c
492
memseg->pages = kmem_zalloc((sizeof (ldc_page_t) * npages), KM_SLEEP);
usr/src/uts/sun4v/io/ldc_shm.c
494
kmem_zalloc((sizeof (ldc_mem_cookie_t) * npages), KM_SLEEP);
usr/src/uts/sun4v/io/mdeg.c
156
mdeg.tbl = kmem_zalloc(tblsz, KM_SLEEP);
usr/src/uts/sun4v/io/mdeg.c
246
newtbl = kmem_zalloc(newtblsz, KM_SLEEP);
usr/src/uts/sun4v/io/mdeg.c
359
mdeg_res = kmem_zalloc(sizeof (mdeg_result_t), KM_SLEEP);
usr/src/uts/sun4v/io/mdeg.c
380
listp = kmem_alloc(sizeof (mde_cookie_t) * nnodes, KM_SLEEP);
usr/src/uts/sun4v/io/mdeg.c
665
nodesp = kmem_alloc(sizeof (mde_cookie_t) * nnodes, KM_SLEEP);
usr/src/uts/sun4v/io/n2piupc/n2piupc_biterr.c
54
*arg = kmem_zalloc(sizeof (n2piupc_sw_biterr_t), KM_SLEEP);
usr/src/uts/sun4v/io/n2piupc/n2piupc_kstats.c
112
sizeof (n2piu_ksinfo_t), KM_SLEEP);
usr/src/uts/sun4v/io/n2piupc/n2piupc_kstats.c
69
sizeof (kstat_t)), KM_SLEEP);
usr/src/uts/sun4v/io/n2rng/n2rng.c
1030
n2rng->n_ctl_data = kmem_alloc(sizeof (rng_ctl_data_t), KM_SLEEP);
usr/src/uts/sun4v/io/n2rng/n2rng.c
1054
sizeof (rng_entry_t), KM_SLEEP);
usr/src/uts/sun4v/io/niumx/niumx.c
650
int sleep = (waitfp == DDI_DMA_SLEEP) ? KM_SLEEP : KM_NOSLEEP;
usr/src/uts/sun4v/io/niumx/niumx.c
774
waitfp == DDI_DMA_SLEEP ? KM_SLEEP : KM_NOSLEEP))) {
usr/src/uts/sun4v/io/niumx/niumx_tools.c
338
iget_p = kmem_zalloc(iget_kmem_alloc_size, KM_SLEEP);
usr/src/uts/sun4v/io/ntwdt.c
279
kmem_zalloc(sizeof (ntwdt_runstate_t), KM_SLEEP);
usr/src/uts/sun4v/io/platsvc.c
488
KM_SLEEP);
usr/src/uts/sun4v/io/platsvc.c
583
ps_suspend_data = kmem_alloc(sizeof (ps_suspend_data_t), KM_SLEEP);
usr/src/uts/sun4v/io/platsvc.c
584
ps_suspend_data->buf = kmem_alloc(buflen, KM_SLEEP);
usr/src/uts/sun4v/io/platsvc.c
612
error_reason = (char *)kmem_zalloc(SUSPEND_MAX_REASON_SIZE, KM_SLEEP);
usr/src/uts/sun4v/io/px/px_lib4v.c
1608
kmem_zalloc(sizeof (px_config_acc_pvt_t), KM_SLEEP);
usr/src/uts/sun4v/io/qcn.c
200
qcn_state = kmem_zalloc(sizeof (qcn_t), KM_SLEEP);
usr/src/uts/sun4v/io/qcn.c
265
qcn_state->qcn_htable = kmem_zalloc(qcn_state->qcn_intr_size, KM_SLEEP);
usr/src/uts/sun4v/io/vcc.c
2044
buf = kmem_alloc(uio_size, KM_SLEEP);
usr/src/uts/sun4v/io/vcc.c
2262
channel = kmem_zalloc(size, KM_SLEEP);
usr/src/uts/sun4v/io/vcc.c
882
pspecp = kmem_alloc(sz, KM_SLEEP);
usr/src/uts/sun4v/io/vcc.c
889
ispecp = kmem_zalloc(sizeof (mdeg_node_spec_t), KM_SLEEP);
usr/src/uts/sun4v/io/vdc.c
2293
listp = kmem_zalloc(listsz, KM_SLEEP);
usr/src/uts/sun4v/io/vdc.c
2388
portp = kmem_zalloc(listsz, KM_SLEEP);
usr/src/uts/sun4v/io/vdc.c
2389
chanp = kmem_zalloc(listsz, KM_SLEEP);
usr/src/uts/sun4v/io/vdc.c
2409
srvr = kmem_zalloc(sizeof (vdc_server_t), KM_SLEEP);
usr/src/uts/sun4v/io/vdc.c
2696
kmem_zalloc(sizeof (ldc_mem_cookie_t), KM_SLEEP);
usr/src/uts/sun4v/io/vdc.c
2728
KM_SLEEP);
usr/src/uts/sun4v/io/vdc.c
3688
P2ROUNDUP(nbytes, 8), KM_SLEEP);
usr/src/uts/sun4v/io/vdc.c
4183
vdcp->local_dring_backup = kmem_alloc(dring_size, KM_SLEEP);
usr/src/uts/sun4v/io/vdc.c
5754
buf = kmem_alloc(sizeof (buf_t), KM_SLEEP);
usr/src/uts/sun4v/io/vdc.c
5789
vd_scsi = kmem_zalloc(vd_scsi_len, KM_SLEEP);
usr/src/uts/sun4v/io/vdc.c
6706
buffer = kmem_alloc(vdc->vdisk_bsize, KM_SLEEP);
usr/src/uts/sun4v/io/vdc.c
6754
vio = kmem_alloc(sizeof (vdc_io_t), KM_SLEEP);
usr/src/uts/sun4v/io/vdc.c
7114
vd_cap = kmem_zalloc(alloc_len, KM_SLEEP);
usr/src/uts/sun4v/io/vdc.c
733
vdc->vtoc = kmem_zalloc(sizeof (struct extvtoc), KM_SLEEP);
usr/src/uts/sun4v/io/vdc.c
734
vdc->geom = kmem_zalloc(sizeof (struct dk_geom), KM_SLEEP);
usr/src/uts/sun4v/io/vdc.c
735
vdc->minfo = kmem_zalloc(sizeof (struct dk_minfo), KM_SLEEP);
usr/src/uts/sun4v/io/vdc.c
7561
dkarg = kmem_zalloc(sizeof (vdc_dk_arg_t), KM_SLEEP);
usr/src/uts/sun4v/io/vdc.c
7604
mem_p = kmem_zalloc(alloc_len, KM_SLEEP);
usr/src/uts/sun4v/io/vdc.c
7990
tmp_mem = kmem_alloc(copy_len, KM_SLEEP);
usr/src/uts/sun4v/io/vdc.c
8037
dk_efi.dki_data = kmem_alloc(dk_efi.dki_length, KM_SLEEP);
usr/src/uts/sun4v/io/vdc.c
8077
dk_efi.dki_data = kmem_alloc(dk_efi.dki_length, KM_SLEEP);
usr/src/uts/sun4v/io/vdc.c
8119
vdc->cinfo = kmem_zalloc(sizeof (struct dk_cinfo), KM_SLEEP);
usr/src/uts/sun4v/io/vdc.c
8169
vdc->minfo = kmem_zalloc(sizeof (struct dk_minfo), KM_SLEEP);
usr/src/uts/sun4v/io/vdc.c
8430
label = kmem_alloc(vdc->vdisk_bsize, KM_SLEEP);
usr/src/uts/sun4v/io/vdc.c
8549
vd_devid = kmem_zalloc(bufsize, KM_SLEEP);
usr/src/uts/sun4v/io/vdc.c
8570
vd_devid = kmem_zalloc(bufsize, KM_SLEEP);
usr/src/uts/sun4v/io/vds.c
1246
dkdevid = kmem_zalloc(DEV_BSIZE, KM_SLEEP);
usr/src/uts/sun4v/io/vds.c
1284
*devid = kmem_alloc(sz, KM_SLEEP);
usr/src/uts/sun4v/io/vds.c
1327
dkdevid = kmem_zalloc(DEV_BSIZE, KM_SLEEP);
usr/src/uts/sun4v/io/vds.c
1575
buf = kmem_zalloc(sizeof (caddr_t) * plen, KM_SLEEP);
usr/src/uts/sun4v/io/vds.c
2325
vd->vio_msgp = kmem_alloc(vd->max_msglen, KM_SLEEP);
usr/src/uts/sun4v/io/vds.c
2682
dk_efi->dki_data = kmem_zalloc(vd_efi->length, KM_SLEEP);
usr/src/uts/sun4v/io/vds.c
2709
dk_efi->dki_data = kmem_alloc(vd_efi->length, KM_SLEEP);
usr/src/uts/sun4v/io/vds.c
3703
buf = kmem_zalloc(request->nbytes, KM_SLEEP);
usr/src/uts/sun4v/io/vds.c
3743
devid = kmem_alloc(sz, KM_SLEEP);
usr/src/uts/sun4v/io/vds.c
3765
vd_devid = kmem_zalloc(bufbytes, KM_SLEEP);
usr/src/uts/sun4v/io/vds.c
4527
vd->inband_task.msg = kmem_alloc(vd->max_msglen, KM_SLEEP);
usr/src/uts/sun4v/io/vds.c
4663
kmem_zalloc((sizeof (*vd->dring_task)) * vd->dring_len, KM_SLEEP);
usr/src/uts/sun4v/io/vds.c
4681
sizeof (vio_dring_entry_hdr_t)), KM_SLEEP);
usr/src/uts/sun4v/io/vds.c
4682
vd->dring_task[i].msg = kmem_alloc(vd->max_msglen, KM_SLEEP);
usr/src/uts/sun4v/io/vds.c
4687
kmem_zalloc(sizeof (buf_t *) * vd->dring_len, KM_SLEEP);
usr/src/uts/sun4v/io/vds.c
5271
kmem_alloc(vd->max_msglen, KM_SLEEP);
usr/src/uts/sun4v/io/vds.c
5750
vd->flabel = kmem_zalloc(vd->flabel_size, KM_SLEEP);
usr/src/uts/sun4v/io/vds.c
5826
vd->flabel = kmem_zalloc(vd->flabel_size, KM_SLEEP);
usr/src/uts/sun4v/io/vds.c
6808
vd->vio_msgp = kmem_alloc(vd->max_msglen, KM_SLEEP);
usr/src/uts/sun4v/io/vds.c
7061
channel = kmem_zalloc(size, KM_SLEEP);
usr/src/uts/sun4v/io/vds.c
7163
KM_SLEEP);
usr/src/uts/sun4v/io/vds.c
7432
pspecp = kmem_alloc(sz, KM_SLEEP);
usr/src/uts/sun4v/io/vds.c
7438
ispecp = kmem_zalloc(sizeof (mdeg_node_spec_t), KM_SLEEP);
usr/src/uts/sun4v/io/vdsk_common.c
219
gpt = kmem_zalloc(gpt_len, KM_SLEEP);
usr/src/uts/sun4v/io/vdsk_common.c
243
data = kmem_zalloc(data_len, KM_SLEEP);
usr/src/uts/sun4v/io/vdsk_common.c
301
gpe = kmem_zalloc(gpe_len, KM_SLEEP);
usr/src/uts/sun4v/io/vio_util.c
325
tbuf = kmem_zalloc(vmultip->tbsz, KM_SLEEP);
usr/src/uts/sun4v/io/vio_util.c
65
vmplp = kmem_zalloc(sizeof (*vmplp), KM_SLEEP);
usr/src/uts/sun4v/io/vio_util.c
75
vmplp->basep = kmem_zalloc(num_mblks * sizeof (vio_mblk_t), KM_SLEEP);
usr/src/uts/sun4v/io/vio_util.c
77
vmplp->datap = kmem_zalloc(num_mblks * mblk_size, KM_SLEEP);
usr/src/uts/sun4v/io/vio_util.c
86
sizeof (vio_mblk_t *), KM_SLEEP);
usr/src/uts/sun4v/io/vldc.c
1041
vport->recv_buf = kmem_alloc(vport->mtu, KM_SLEEP);
usr/src/uts/sun4v/io/vldc.c
1042
vport->send_buf = kmem_alloc(vport->mtu, KM_SLEEP);
usr/src/uts/sun4v/io/vldc.c
1045
vport->cookie_buf = kmem_alloc(vldc_max_cookie, KM_SLEEP);
usr/src/uts/sun4v/io/vldc.c
1371
vport->recv_buf = kmem_alloc(new_mtu, KM_SLEEP);
usr/src/uts/sun4v/io/vldc.c
1374
vport->send_buf = kmem_alloc(new_mtu, KM_SLEEP);
usr/src/uts/sun4v/io/vldc.c
459
pspecp = kmem_alloc(templatesz, KM_SLEEP);
usr/src/uts/sun4v/io/vldc.c
465
name = kmem_alloc(namesz, KM_SLEEP);
usr/src/uts/sun4v/io/vldc.c
475
inst_specp = kmem_alloc(sizeof (mdeg_node_spec_t), KM_SLEEP);
usr/src/uts/sun4v/io/vldc.c
548
listp = kmem_alloc(listsz, KM_SLEEP);
usr/src/uts/sun4v/io/vlds.c
1174
listp = kmem_alloc(listsz, KM_SLEEP);
usr/src/uts/sun4v/io/vlds.c
1286
vlds_nodes = kmem_zalloc(listsz, KM_SLEEP);
usr/src/uts/sun4v/io/vlds.c
1378
if (nvlist_alloc(&nvl, NV_UNIQUE_NAME, KM_SLEEP) ||
usr/src/uts/sun4v/io/vlds.c
1429
if (nvlist_alloc(&nvl, NV_UNIQUE_NAME, KM_SLEEP) ||
usr/src/uts/sun4v/io/vlds.c
1467
if (nvlist_alloc(&nvl, NV_UNIQUE_NAME, KM_SLEEP) ||
usr/src/uts/sun4v/io/vlds.c
210
BT_SIZEOFMAP(vlds_minor_bits + BT_NBIPUL), KM_SLEEP);
usr/src/uts/sun4v/io/vnet.c
1575
vresp = kmem_zalloc(sizeof (vnet_res_t), KM_SLEEP);
usr/src/uts/sun4v/io/vnet.c
436
vnetp = kmem_zalloc(sizeof (vnet_t), KM_SLEEP);
usr/src/uts/sun4v/io/vnet.c
979
VNET_NUM_PSEUDO_TXRINGS, KM_SLEEP);
usr/src/uts/sun4v/io/vnet.c
994
rx_grp->max_ring_cnt, KM_SLEEP);
usr/src/uts/sun4v/io/vnet_dds.c
831
(sizeof (vdds_ranges_t) * nranges), KM_SLEEP);
usr/src/uts/sun4v/io/vnet_gen.c
1313
listp = (mde_cookie_t *)kmem_zalloc(listsz, KM_SLEEP);
usr/src/uts/sun4v/io/vnet_gen.c
1478
*vidspp = kmem_zalloc(vids_size, KM_SLEEP);
usr/src/uts/sun4v/io/vnet_gen.c
1660
vgenp->pri_types = kmem_zalloc(size * sizeof (uint16_t), KM_SLEEP);
usr/src/uts/sun4v/io/vnet_gen.c
2095
portp = kmem_zalloc(sizeof (vgen_port_t), KM_SLEEP);
usr/src/uts/sun4v/io/vnet_gen.c
2220
portp->ldc_ids = kmem_zalloc(sizeof (uint64_t) * num_ldcs, KM_SLEEP);
usr/src/uts/sun4v/io/vnet_gen.c
2433
portp->vids = kmem_zalloc(sizeof (uint16_t) * nvids, KM_SLEEP);
usr/src/uts/sun4v/io/vnet_gen.c
2516
ldcp->ldcmsg = kmem_alloc(ldcp->msglen, KM_SLEEP);
usr/src/uts/sun4v/io/vnet_gen.c
3348
msg = kmem_zalloc(msgsize, KM_SLEEP);
usr/src/uts/sun4v/io/vnet_gen.c
508
vgenp = kmem_zalloc(sizeof (vgen_t), KM_SLEEP);
usr/src/uts/sun4v/io/vnet_gen.c
519
sizeof (struct ether_addr), KM_SLEEP);
usr/src/uts/sun4v/io/vnet_rxdring.c
155
KM_SLEEP);
usr/src/uts/sun4v/io/vnet_rxdring.c
180
datap = kmem_zalloc(ldcp->rx_data_sz, KM_SLEEP);
usr/src/uts/sun4v/io/vnet_rxdring.c
192
sizeof (ldc_mem_cookie_t), KM_SLEEP);
usr/src/uts/sun4v/io/vnet_rxdring.c
560
sizeof (ldc_mem_cookie_t), KM_SLEEP);
usr/src/uts/sun4v/io/vnet_txdring.c
193
datap = kmem_zalloc(ldcp->tx_data_sz, KM_SLEEP);
usr/src/uts/sun4v/io/vnex.c
594
vnex_id_t *vid_p = kmem_alloc(sizeof (vnex_id_t), KM_SLEEP);
usr/src/uts/sun4v/io/vsw.c
1388
pspecp = kmem_zalloc(templatesz, KM_SLEEP);
usr/src/uts/sun4v/io/vsw.c
1395
inst_specp = kmem_zalloc(sizeof (mdeg_node_spec_t), KM_SLEEP);
usr/src/uts/sun4v/io/vsw.c
1686
listp = (mde_cookie_t *)kmem_zalloc(listsz, KM_SLEEP);
usr/src/uts/sun4v/io/vsw.c
1888
*vidspp = kmem_zalloc(vids_size, KM_SLEEP);
usr/src/uts/sun4v/io/vsw.c
1976
vswp->pri_types = kmem_zalloc(size * sizeof (uint16_t), KM_SLEEP);
usr/src/uts/sun4v/io/vsw.c
2484
listp = kmem_zalloc(listsz, KM_SLEEP);
usr/src/uts/sun4v/io/vsw.c
2543
kmem_zalloc(sizeof (uint64_t) * nchan, KM_SLEEP);
usr/src/uts/sun4v/io/vsw.c
2580
portp = kmem_zalloc(sizeof (vsw_port_t), KM_SLEEP);
usr/src/uts/sun4v/io/vsw_hio.c
156
hiop->vh_num_shares), KM_SLEEP);
usr/src/uts/sun4v/io/vsw_hio.c
959
size, KM_SLEEP);
usr/src/uts/sun4v/io/vsw_ldc.c
4428
dp = kmem_zalloc(sizeof (dring_info_t), KM_SLEEP);
usr/src/uts/sun4v/io/vsw_ldc.c
4436
(sizeof (vsw_private_desc_t) * vsw_num_descriptors), KM_SLEEP);
usr/src/uts/sun4v/io/vsw_ldc.c
4520
dp = kmem_zalloc(sizeof (dring_info_t), KM_SLEEP);
usr/src/uts/sun4v/io/vsw_ldc.c
4657
sizeof (ldc_mem_cookie_t), KM_SLEEP);
usr/src/uts/sun4v/io/vsw_ldc.c
651
ldcp->ldcmsg = kmem_alloc(ldcp->msglen, KM_SLEEP);
usr/src/uts/sun4v/io/vsw_phys.c
1409
mrp = kmem_zalloc(sizeof (*mrp), KM_SLEEP);
usr/src/uts/sun4v/io/vsw_rxdring.c
125
KM_SLEEP);
usr/src/uts/sun4v/io/vsw_rxdring.c
176
dp = (dring_info_t *)kmem_zalloc(sizeof (dring_info_t), KM_SLEEP);
usr/src/uts/sun4v/io/vsw_rxdring.c
212
KM_SLEEP);
usr/src/uts/sun4v/io/vsw_rxdring.c
284
data_addr = kmem_zalloc(dp->data_sz, KM_SLEEP);
usr/src/uts/sun4v/io/vsw_rxdring.c
299
sizeof (ldc_mem_cookie_t), KM_SLEEP);
usr/src/uts/sun4v/io/vsw_switching.c
1138
fp = kmem_zalloc(sizeof (vsw_fdbe_t), KM_SLEEP);
usr/src/uts/sun4v/io/vsw_switching.c
1669
ment = kmem_alloc(sizeof (mfdb_ent_t), KM_SLEEP);
usr/src/uts/sun4v/io/vsw_switching.c
1715
new_ent = kmem_alloc(sizeof (mfdb_ent_t), KM_SLEEP);
usr/src/uts/sun4v/io/vsw_txdring.c
123
mp = kmem_zalloc(sizeof (vio_dring_reg_msg_t), KM_SLEEP);
usr/src/uts/sun4v/io/vsw_txdring.c
155
dp = (dring_info_t *)kmem_zalloc(sizeof (dring_info_t), KM_SLEEP);
usr/src/uts/sun4v/io/vsw_txdring.c
191
(sizeof (vsw_private_desc_t) * vsw_num_descriptors), KM_SLEEP);
usr/src/uts/sun4v/io/vsw_txdring.c
273
data_addr = kmem_alloc(dp->data_sz, KM_SLEEP);
usr/src/uts/sun4v/os/fillsysinfo.c
1097
pali->pali_aliases = kmem_alloc(i * sizeof (char *), KM_SLEEP);
usr/src/uts/sun4v/os/fillsysinfo.c
1153
KM_SLEEP);
usr/src/uts/sun4v/os/fillsysinfo.c
1245
cp = kmem_alloc(sizeof (mde_cookie_t) * NCPU, KM_SLEEP);
usr/src/uts/sun4v/os/fillsysinfo.c
1246
cpids = kmem_alloc(sizeof (uint64_t) * NCPU, KM_SLEEP);
usr/src/uts/sun4v/os/fillsysinfo.c
1286
ppset = kmem_alloc(sizeof (cpuset_t), KM_SLEEP);
usr/src/uts/sun4v/os/fillsysinfo.c
1354
KM_SLEEP);
usr/src/uts/sun4v/os/fillsysinfo.c
1355
nctxs = kmem_alloc(sizeof (uint_t) * NCPU, KM_SLEEP);
usr/src/uts/sun4v/os/hsvc.c
221
hsvcp = kmem_zalloc(sizeof (hsvc_t), KM_SLEEP);
usr/src/uts/sun4v/os/mach_descrip.c
491
return (kmem_alloc(size, KM_SLEEP));
usr/src/uts/sun4v/os/mach_mp_startup.c
195
listp = kmem_zalloc(listsz, KM_SLEEP);
usr/src/uts/sun4v/os/mach_mp_startup.c
290
cp->cpu_idstr = kmem_alloc(strlen(buf) + 1, KM_SLEEP);
usr/src/uts/sun4v/os/mach_mp_startup.c
293
cp->cpu_brandstr = kmem_alloc(strlen(cpunode->name) + 1, KM_SLEEP);
usr/src/uts/sun4v/os/mpo.c
1485
mb = (struct mblock_md *)kmem_zalloc(allocsz, KM_SLEEP);
usr/src/uts/sun4v/os/wdt.c
119
listp = kmem_zalloc(listsz, KM_SLEEP);
usr/src/uts/sun4v/pcbe/niagara2_pcbe.c
308
evlist = kmem_alloc(evlist_sz + 1, KM_SLEEP);
usr/src/uts/sun4v/pcbe/niagara2_pcbe.c
597
cfg = kmem_alloc(sizeof (*cfg), KM_SLEEP);
usr/src/uts/sun4v/pcbe/niagara_pcbe.c
223
pic_events[i] = kmem_alloc(size + 1, KM_SLEEP);
usr/src/uts/sun4v/pcbe/niagara_pcbe.c
382
conf = kmem_alloc(sizeof (ni_pcbe_config_t), KM_SLEEP);
usr/src/uts/sun4v/promif/promif_emul.c
221
transroot = (struct translation *)kmem_zalloc(translen, KM_SLEEP);
usr/src/uts/sun4v/promif/promif_emul.c
253
p = kmem_zalloc(strlen(isa_list) + 1, KM_SLEEP);
usr/src/uts/sun4v/promif/promif_emul.c
400
listp = kmem_zalloc(listsz, KM_SLEEP);
usr/src/uts/sun4v/promif/promif_io.c
348
regval = kmem_zalloc(rlen, KM_SLEEP);
usr/src/uts/sun4v/promif/promif_prop.c
198
req = kmem_zalloc(sizeof (var_config_hdr_t) + paylen, KM_SLEEP);
usr/src/uts/sun4v/promif/promif_stree.c
302
prop->pp_val = kmem_zalloc(len, KM_SLEEP);
usr/src/uts/sun4v/promif/promif_stree.c
390
pnp = kmem_zalloc(sizeof (prom_node_t), KM_SLEEP);
usr/src/uts/sun4v/promif/promif_stree.c
405
propval = kmem_zalloc(proplen, KM_SLEEP);
usr/src/uts/sun4v/promif/promif_stree.c
429
newprop = kmem_zalloc(sizeof (*newprop), KM_SLEEP);
usr/src/uts/sun4v/promif/promif_stree.c
430
newprop->pp_name = kmem_zalloc(prom_strlen(name) + 1, KM_SLEEP);
usr/src/uts/sun4v/sys/ds_impl.h
416
#define DS_MALLOC(size) kmem_zalloc(size, KM_SLEEP)
usr/src/uts/sun4v/vm/mach_vm_dep.c
465
ppa = kmem_zalloc(npages * sizeof (page_t *), KM_SLEEP);