Home
last modified time | relevance | path

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

/net/
Dsocket.c2395 int ctl_len; in ____sys_sendmsg() local
2403 ctl_len = msg_sys->msg_controllen; in ____sys_sendmsg()
2404 if ((MSG_CMSG_COMPAT & flags) && ctl_len) { in ____sys_sendmsg()
2411 ctl_len = msg_sys->msg_controllen; in ____sys_sendmsg()
2412 } else if (ctl_len) { in ____sys_sendmsg()
2415 if (ctl_len > sizeof(ctl)) { in ____sys_sendmsg()
2416 ctl_buf = sock_kmalloc(sock->sk, ctl_len, GFP_KERNEL); in ____sys_sendmsg()
2421 if (copy_from_user(ctl_buf, msg_sys->msg_control_user, ctl_len)) in ____sys_sendmsg()
2457 sock_kfree_s(sock->sk, ctl_buf, ctl_len); in ____sys_sendmsg()