Searched refs:mp_list (Results 1 – 2 of 2) sorted by relevance
| /xnu-12377.41.6/bsd/kern/ |
| H A D | uipc_mbuf_mcache.c | 2028 mcache_obj_t *mp_list = NULL; in mbuf_cslab_alloc() local 2076 needed = mcache_alloc_ext(m_cache(MC_MBUF), &mp_list, needed, wait); in mbuf_cslab_alloc() 2078 ASSERT(mp_list == NULL); in mbuf_cslab_alloc() 2110 m = ms = (struct mbuf *)mp_list; in mbuf_cslab_alloc() 2111 mp_list = mp_list->obj_next; in mbuf_cslab_alloc() 2191 if (mp_list != NULL) { in mbuf_cslab_alloc() 2192 mcache_free_ext(m_cache(MC_MBUF), mp_list); in mbuf_cslab_alloc() 3439 mcache_obj_t *mp_list = NULL; local 3472 needed = mcache_alloc_ext(cp, &mp_list, needed, mcflags); 3475 m = (struct mbuf *)mp_list; [all …]
|
| H A D | uipc_mbuf.c | 2121 zstack_t mp_list = {}; in m_getpackets_internal() local 2154 mp_list = mz_composite_alloc_n(class, needed, wait); in m_getpackets_internal() 2155 needed = zstack_count(mp_list); in m_getpackets_internal() 2158 m = zstack_pop(&mp_list); in m_getpackets_internal() 2189 ASSERT(pnum != *num_needed || zstack_empty(mp_list)); in m_getpackets_internal() 2190 if (!zstack_empty(mp_list)) { in m_getpackets_internal() 2191 mz_composite_free_n(class, mp_list); in m_getpackets_internal() 2236 zstack_t mp_list = {}, rmp_list = {}; in m_allocpacket_internal() local 2318 mp_list = mz_alloc_n((*numlist) * nsegs, wait); in m_allocpacket_internal() 2319 needed = zstack_count(mp_list); in m_allocpacket_internal() [all …]
|