Home
last modified time | relevance | path

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

/linux-6.6.21/net/
Dsocket.c2510 unsigned char *ctl_buf = ctl; in ____sys_sendmsg() local
2526 ctl_buf = msg_sys->msg_control; in ____sys_sendmsg()
2532 ctl_buf = sock_kmalloc(sock->sk, ctl_len, GFP_KERNEL); in ____sys_sendmsg()
2533 if (ctl_buf == NULL) in ____sys_sendmsg()
2537 if (copy_from_user(ctl_buf, msg_sys->msg_control_user, ctl_len)) in ____sys_sendmsg()
2539 msg_sys->msg_control = ctl_buf; in ____sys_sendmsg()
2573 if (ctl_buf != ctl) in ____sys_sendmsg()
2574 sock_kfree_s(sock->sk, ctl_buf, ctl_len); in ____sys_sendmsg()