1// SPDX-License-Identifier: GPL-2.0 2// Minimal client-side zerocopy test 3 4--send_omit_free // do not reuse send buffers with zerocopy 5 6`./defaults.sh` 7 8 0 socket(..., SOCK_STREAM, IPPROTO_TCP) = 4 9 +0 setsockopt(4, SOL_SOCKET, SO_ZEROCOPY, [1], 4) = 0 10 +0...0 connect(4, ..., ...) = 0 11 12 +0 > S 0:0(0) <mss 1460,sackOK,TS val 0 ecr 0,nop,wscale 8> 13 +0 < S. 0:0(0) ack 1 win 32792 <mss 1000,sackOK,nop,nop,nop,wscale 7> 14 +0 > . 1:1(0) ack 1 15 16 +0 send(4, ..., 4000, MSG_ZEROCOPY) = 4000 17 +0 > P. 1:4001(4000) ack 1 18 +0 < . 1:1(0) ack 4001 win 257 19 20 +0 recvmsg(4, {msg_name(...)=..., 21 msg_iov(1)=[{...,0}], 22 msg_flags=MSG_ERRQUEUE, 23 msg_control=[ 24 {cmsg_level=CMSG_LEVEL_IP, 25 cmsg_type=CMSG_TYPE_RECVERR, 26 cmsg_data={ee_errno=0, 27 ee_origin=SO_EE_ORIGIN_ZEROCOPY, 28 ee_type=0, 29 ee_code=SO_EE_CODE_ZEROCOPY_COPIED, 30 ee_info=0, 31 ee_data=0}} 32 ]}, MSG_ERRQUEUE) = 0 33