Searched refs:VM_NOSLEEP (Results 1 - 25 of 66) sorted by relevance

123

/opensolaris-onvv-gate/usr/src/uts/common/os/
H A Drmap.c38 VM_NOSLEEP));
57 return ((ulong_t)vmem_alloc(mp, size, VM_NOSLEEP));
71 else if (vmem_add(mp, (void *)addr, size, VM_NOSLEEP) == NULL)
H A Did_space.c109 return (ADDR_TO_ID(vmem_alloc(isp, 1, VM_NOSLEEP | VM_NEXTFIT)));
130 return (ADDR_TO_ID(vmem_alloc(isp, 1, VM_NOSLEEP | VM_FIRSTFIT)));
148 minaddr, maxaddr, VM_NOSLEEP)));
H A Dvmem.c290 * for VM_SLEEP and VM_NOSLEEP allocations. Similarly, VM_PUSHPAGE allocations
693 else if (vmflag & VM_NOSLEEP)
872 * a VM_NOSLEEP allocation, let vmem_xalloc() handle it.
876 (vmflag & VM_NOSLEEP)) {
965 (vmflag & (VM_NOSLEEP | VM_PANIC)) == VM_NOSLEEP)
1146 if (vmflag & VM_NOSLEEP)
1238 * on success, NULL on failure. vmflag specifies VM_SLEEP or VM_NOSLEEP,
1257 (vmflag & (VM_NOSLEEP | VM_PANIC)) == VM_NOSLEEP)
[all...]
H A Dlog_sysevent.c978 VM_NOSLEEP | VMC_IDENTIFIER)) == NULL) {
984 VM_NOSLEEP | VMC_IDENTIFIER)) == NULL) {
1050 VM_NOSLEEP | VM_NEXTFIT);
1056 VM_NOSLEEP | VM_NEXTFIT);
/opensolaris-onvv-gate/usr/src/lib/libumem/common/
H A Dvmem_mmap.c58 ASSERT((vmflags & VM_NOSLEEP) == VM_NOSLEEP);
83 ret = vmem_alloc(src, size, VM_NOSLEEP);
109 ASSERT((vmflags & VM_NOSLEEP) == VM_NOSLEEP);
H A Dvmem_sbrk.c163 ret = vmem_alloc(src, size, VM_NOSLEEP);
197 ASSERT((vmflags & VM_NOSLEEP) == VM_NOSLEEP);
H A Dvmem_stand.c113 if ((ret = vmem_alloc(src, size, VM_NOSLEEP)) != NULL) {
H A Dumem.c323 * * All invocations of vmem are VM_NOSLEEP.
381 #define UMEM_VMFLAGS(umflag) (VM_NOSLEEP)
1021 NULL, NULL, VM_NOSLEEP);
1034 lhp->lh_chunksize * nchunks, VM_NOSLEEP);
1039 nchunks * sizeof (int), VM_NOSLEEP);
2011 * satisfied, so it will either fail immediately (VM_NOSLEEP)
2162 VM_NOSLEEP);
2449 0, NULL, NULL, VM_NOSLEEP);
2631 UMEM_HASH_INITIAL * sizeof (void *), VM_NOSLEEP);
2880 8 * pagesize, VM_NOSLEEP);
[all...]
H A Dvmem.c178 * For now, we only support VM_NOSLEEP allocations, so as long as we
585 ASSERT(vmflag & VM_NOSLEEP); /* we do not allow sleep allocations */
773 * a VM_NOSLEEP allocation, let vmem_xalloc() handle it.
777 (vmflag & VM_NOSLEEP)) {
849 (vmflag & (VM_NOSLEEP | VM_PANIC)) == VM_NOSLEEP)
940 if (vmflag & VM_NOSLEEP)
972 if (vmflag & VM_NOSLEEP)
1059 * on success, NULL on failure. vmflag specifies VM_SLEEP or VM_NOSLEEP,
1074 ASSERT(vmflag & VM_NOSLEEP);
[all...]
H A Dmalloc.c186 0, NULL, NULL, VM_NOSLEEP);
/opensolaris-onvv-gate/usr/src/uts/common/inet/
H A Dinet_common.c81 1, VM_NOSLEEP));
/opensolaris-onvv-gate/usr/src/uts/common/sys/
H A Dvmem.h39 #define VM_NOSLEEP 0x00000001 /* same as KM_NOSLEEP */ macro
57 * VM_ABORT requests that vmem_alloc() *ignore* the VM_SLEEP/VM_NOSLEEP flags
/opensolaris-onvv-gate/usr/src/uts/common/io/
H A Dptms_conf.c368 vmem_alloc(ptms_minor_arena, 1, VM_NOSLEEP);
584 new_size - old_size, VM_NOSLEEP);
599 vmem_alloc(ptms_minor_arena, 1, VM_NOSLEEP));
/opensolaris-onvv-gate/usr/src/uts/common/vm/
H A Dseg_kmem.c291 VM_NOSLEEP | VM_BESTFIT | VM_PANIC);
298 0, 0, kernelheap, first_avail, VM_NOSLEEP | VM_BESTFIT | VM_PANIC);
311 VM_NOSLEEP | VM_BESTFIT | VM_PANIC);
315 VM_NOSLEEP | VM_BESTFIT | VM_PANIC);
838 if ((vmflag & VM_NOSLEEP) == 0)
845 ASSERT(vmflag & VM_NOSLEEP);
1111 if (!(vmflag & VM_NOSLEEP))
1141 vmflag |= VM_NOSLEEP;
1300 if (!(vmflag & VM_NOSLEEP) &&
1363 if (vmflag & VM_NOSLEEP)
[all...]
/opensolaris-onvv-gate/usr/src/uts/common/io/ib/clients/iser/
H A Diser_resource.c399 VM_NOSLEEP | VM_FIRSTFIT);
424 next_chunk->is_mrlen, VM_NOSLEEP) == NULL) {
435 VM_NOSLEEP | VM_FIRSTFIT);
/opensolaris-onvv-gate/usr/src/uts/sun4v/vm/
H A Dmach_vm_dep.c647 NULL, NULL, VM_NOSLEEP | VM_NORELOC);
652 NULL, NULL, VM_NOSLEEP));
657 NULL, NULL, VM_NOSLEEP);
/opensolaris-onvv-gate/usr/src/uts/i86pc/io/gfx_private/
H A Dgfxp_vm.c118 cvaddr = vmem_alloc(heap_arena, ptob(npages), VM_NOSLEEP);
/opensolaris-onvv-gate/usr/src/uts/sun4/io/px/
H A Dpx_fdvma.c179 dmareq->dmar_fp == DDI_DMA_SLEEP ? VM_SLEEP : VM_NOSLEEP));
H A Dpx_mmu.c141 VM_NOSLEEP | VM_BESTFIT | VM_PANIC);
/opensolaris-onvv-gate/usr/src/uts/common/io/ib/mgt/ibmf/
H A Dibmf_wqe.c89 IBMF_MEM_PER_WQE, kmflags == KM_SLEEP ? VM_SLEEP : VM_NOSLEEP);
201 IBMF_MEM_PER_WQE, kmflags == KM_SLEEP ? VM_SLEEP : VM_NOSLEEP);
314 kmflags == KM_SLEEP ? VM_SLEEP : VM_NOSLEEP);
427 kmflags == KM_SLEEP ? VM_SLEEP : VM_NOSLEEP);
1203 (block == B_TRUE ? VM_SLEEP : VM_NOSLEEP)) == NULL) {
/opensolaris-onvv-gate/usr/src/uts/sun4/os/
H A Dstartup.c1403 VM_NOSLEEP | VM_BESTFIT | VM_PANIC);
1492 VM_NOSLEEP | VM_BESTFIT | VM_PANIC);
3188 VM_NOSLEEP | VM_BESTFIT | VM_PANIC);
3197 VM_NOSLEEP | VM_BESTFIT | VM_PANIC);
3225 VM_NOSLEEP | VM_BESTFIT);
3291 VM_BESTFIT | VM_NOSLEEP));
H A Dprom_subr.c494 return (vmem_alloc(promplat_arena, size, VM_NOSLEEP));
/opensolaris-onvv-gate/usr/src/cmd/mdb/common/kmdb/kctl/
H A Dkctl_main.c155 if (segkmem_xalloc(NULL, addr, sz, VM_NOSLEEP, 0, segkmem_page_create,
/opensolaris-onvv-gate/usr/src/uts/i86pc/os/
H A Dmp_implfuncs.c231 cvaddr = device_arena_alloc(ptob(npages), VM_NOSLEEP);
/opensolaris-onvv-gate/usr/src/uts/sun4u/io/pci/
H A Dpci_fdvma.c227 dmareq->dmar_fp == DDI_DMA_SLEEP ? VM_SLEEP : VM_NOSLEEP));

Completed in 304 milliseconds

123