Home
last modified time | relevance | path

Searched refs:ctl_mbuf (Results 1 – 2 of 2) sorted by relevance

/netbsd/src/sys/compat/netbsd32/
Dnetbsd32_socket.c386 struct mbuf *ctl_mbuf; in copyin32_msg_control() local
392 ctl_mbuf = m_get(M_WAIT, MT_CONTROL); in copyin32_msg_control()
394 control = mtod(ctl_mbuf, void *); in copyin32_msg_control()
461 MEXTADD(ctl_mbuf, control, clen, M_MBUF, NULL, NULL); in copyin32_msg_control()
462 ctl_mbuf->m_flags |= M_EXT_RW; in copyin32_msg_control()
465 mp->msg_controllen = ctl_mbuf->m_len = CMSG_ALIGN(cidx); in copyin32_msg_control()
467 mp->msg_control = ctl_mbuf; in copyin32_msg_control()
474 if (control != mtod(ctl_mbuf, void *)) in copyin32_msg_control()
476 m_free(ctl_mbuf); in copyin32_msg_control()
/netbsd/src/sys/compat/linux/common/
Dlinux_socket.c480 struct mbuf *ctl_mbuf = NULL; in linux_sys_sendmsg() local
515 ctl_mbuf = m_get(M_WAIT, MT_CONTROL); in linux_sys_sendmsg()
517 control = mtod(ctl_mbuf, void *); in linux_sys_sendmsg()
551 if (control != mtod(ctl_mbuf, void *)) in linux_sys_sendmsg()
553 m_free(ctl_mbuf); in linux_sys_sendmsg()
554 ctl_mbuf = NULL; in linux_sys_sendmsg()
618 MEXTADD(ctl_mbuf, control, clen, M_MBUF, NULL, NULL); in linux_sys_sendmsg()
619 ctl_mbuf->m_flags |= M_EXT_RW; in linux_sys_sendmsg()
622 ctl_mbuf->m_len = cidx; in linux_sys_sendmsg()
624 msg.msg_control = ctl_mbuf; in linux_sys_sendmsg()
[all …]