Home
last modified time | relevance | path

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

/linux/net/ipv4/
H A Dtcp_bpf.c439 if (msg->cork_bytes && in tcp_bpf_send_verdict()
440 msg->cork_bytes > msg->sg.size && !enospc) { in tcp_bpf_send_verdict()
441 psock->cork_bytes = msg->cork_bytes - msg->sg.size; in tcp_bpf_send_verdict()
588 if (psock->cork_bytes) { in tcp_bpf_sendmsg()
589 if (size > psock->cork_bytes) in tcp_bpf_sendmsg()
590 psock->cork_bytes = 0; in tcp_bpf_sendmsg()
592 psock->cork_bytes -= size; in tcp_bpf_sendmsg()
593 if (psock->cork_bytes && !enospc) in tcp_bpf_sendmsg()
597 psock->cork_bytes = 0; in tcp_bpf_sendmsg()
/linux/include/linux/
H A Dskmsg.h49 u32 cork_bytes; member
88 u32 cork_bytes; member
/linux/net/core/
H A Dfilter.c2650 msg->cork_bytes = bytes; in BPF_CALL_2()