Home | History | Annotate | Download | only in linux

Lines Matching refs:nlm

135 	struct linux_malloc *olm, *nlm;
139 nlm = kmem_intr_zalloc(sizeof(*nlm) + size, kmflags);
141 nlm = kmem_intr_alloc(sizeof(*nlm) + size, kmflags);
142 if (nlm == NULL)
145 nlm->lm_size = size;
148 memcpy(nlm + 1, olm + 1, MIN(nlm->lm_size, olm->lm_size));
151 return nlm + 1;