Lines Matching refs:msg_tx
431 struct sk_msg tmp, *msg_tx = NULL; in tcp_bpf_sendmsg() local
460 msg_tx = psock->cork; in tcp_bpf_sendmsg()
462 msg_tx = &tmp; in tcp_bpf_sendmsg()
463 sk_msg_init(msg_tx); in tcp_bpf_sendmsg()
466 osize = msg_tx->sg.size; in tcp_bpf_sendmsg()
467 err = sk_msg_alloc(sk, msg_tx, msg_tx->sg.size + copy, msg_tx->sg.end - 1); in tcp_bpf_sendmsg()
472 copy = msg_tx->sg.size - osize; in tcp_bpf_sendmsg()
475 err = sk_msg_memcopy_from_iter(sk, &msg->msg_iter, msg_tx, in tcp_bpf_sendmsg()
478 sk_msg_trim(sk, msg_tx, osize); in tcp_bpf_sendmsg()
495 err = tcp_bpf_send_verdict(sk, psock, msg_tx, &copied, flags); in tcp_bpf_sendmsg()
504 if (msg_tx && msg_tx != psock->cork) in tcp_bpf_sendmsg()
505 sk_msg_free(sk, msg_tx); in tcp_bpf_sendmsg()