Home
last modified time | relevance | path

Searched refs:M_WAIT (Results 1 – 13 of 13) sorted by relevance

/xnu-12377.41.6/bsd/kern/
H A Duipc_mbuf_mcache.c1037 static_assert(MBUF_WAITOK == M_WAIT); in mbinit()
1160 freelist_populate(m_class(MC_BIGCL), initmcl, M_WAIT); in mbinit()
1648 (wait & MCR_NOSLEEP) ? M_DONTWAIT : M_WAIT); in mbuf_slab_alloc()
2859 (void) freelist_populate(class, m_minlimit(class), M_WAIT);
4641 freelist_populate(MC_CL, n, M_WAIT);
4660 freelist_populate(MC_BIGCL, n, M_WAIT);
4679 (void) freelist_populate(MC_16KCL, n, M_WAIT);
4701 if (freelist_populate(MC_MBUF, 1, M_WAIT) == 0) {
H A Duipc_mbuf2.c1486 tag = m_tag_create(id, type, len, M_WAIT, m); in do_m_tag_test()
1567 tag = m_tag_create(id, type, len, M_WAIT, m); in do_test_m_tag_unlink()
H A Duipc_socket.c2229 hdrs_needed, M_WAIT, 0, in sosend()
2252 hdrs_needed, M_WAIT, 0, in sosend()
2276 hdrs_needed, M_WAIT, 0, in sosend()
2296 hdrs_needed, M_WAIT, 0, in sosend()
2321 M_WAIT, MT_DATA); in sosend()
2324 M_WAIT, MT_DATA); in sosend()
3304 m = m_get(M_WAIT, MT_DATA); in soreceive()
3725 copy_flag = M_WAIT; in soreceive()
6300 how = sopt->sopt_p != kernproc ? M_WAIT : M_DONTWAIT; in soopt_getm()
H A Duipc_syscalls.c3309 m = m_get(M_WAIT, type); in sockargs()
3314 MCLGET(m, M_WAIT); in sockargs()
3692 *m = m_getpackets_internal(&needed, 1, M_WAIT, 1, MBIGCLBYTES); in alloc_sendpkt()
3935 alloc_sendpkt(M_WAIT, xfsize, &nbufs, &m0, jumbocl); in sendfile()
H A Duipc_mbuf.c1404 static_assert(MBUF_WAITOK == M_WAIT); in mbinit()
2577 return m_getpackets_internal(&num_needed, 1, M_WAIT, 1, in m_getpacket()
H A Dkern_event.c9022 return kev_post_msg_internal(event_msg, M_WAIT);
/xnu-12377.41.6/bsd/skywalk/packet/
H A Dpacket_kern.c623 m_how = M_WAIT; in kern_packet_clone_internal()
/xnu-12377.41.6/bsd/netinet6/
H A Draw_ip6.c555 M_PREPEND(m, sizeof(*ip6), M_WAIT, 1); in rip6_output()
/xnu-12377.41.6/bsd/netinet/
H A Draw_ip.c530 M_PREPEND(m, sizeof(struct ip), M_WAIT, 1); in rip_output()
H A Dtcp_subr.c4887 MGETHDR(m, M_WAIT, MT_HEADER); in tcp_make_keepalive_frame()
5297 nm = kalloc_type(struct tcp_notify_ack_marker, M_WAIT | Z_ZERO); in tcp_add_notify_ack_marker()
H A Dip_output.c2381 MGET(m, sopt->sopt_p != kernproc ? M_WAIT : M_DONTWAIT, in ip_ctloutput()
H A Dudp_usrreq.c3062 MGETHDR(m, M_WAIT, MT_HEADER); in udp_fill_keepalive_offload_frames()
/xnu-12377.41.6/bsd/sys/
H A Dmbuf.h1469 #define M_WAIT M_WAITOK macro