Home
last modified time | relevance | path

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

/Linux-v6.6/net/
Dsocket.c2508 unsigned char *ctl_buf = ctl; in ____sys_sendmsg() local
2524 ctl_buf = msg_sys->msg_control; in ____sys_sendmsg()
2530 ctl_buf = sock_kmalloc(sock->sk, ctl_len, GFP_KERNEL); in ____sys_sendmsg()
2531 if (ctl_buf == NULL) in ____sys_sendmsg()
2535 if (copy_from_user(ctl_buf, msg_sys->msg_control_user, ctl_len)) in ____sys_sendmsg()
2537 msg_sys->msg_control = ctl_buf; in ____sys_sendmsg()
2571 if (ctl_buf != ctl) in ____sys_sendmsg()
2572 sock_kfree_s(sock->sk, ctl_buf, ctl_len); in ____sys_sendmsg()