/linux-5.19.10/crypto/ |
D | algif_hash.c | 78 if ((msg->msg_flags & MSG_MORE)) in hash_sendmsg() 114 ctx->more = msg->msg_flags & MSG_MORE; in hash_sendmsg() 140 flags |= MSG_MORE; in hash_sendpage() 146 if (!(flags & MSG_MORE)) { in hash_sendpage() 155 if (!(flags & MSG_MORE)) { in hash_sendpage() 175 ctx->more = flags & MSG_MORE; in hash_sendpage()
|
D | af_alg.c | 968 ctx->more = msg->msg_flags & MSG_MORE; in af_alg_sendmsg() 998 flags |= MSG_MORE; in af_alg_sendpage() 1031 ctx->more = flags & MSG_MORE; in af_alg_sendpage()
|
/linux-5.19.10/net/sunrpc/ |
D | socklib.c | 278 msg->msg_flags |= MSG_MORE; in xprt_sock_sendmsg() 285 msg->msg_flags &= ~MSG_MORE; in xprt_sock_sendmsg() 304 msg->msg_flags &= ~MSG_MORE; in xprt_sock_sendmsg() 316 msg->msg_flags &= ~MSG_MORE; in xprt_sock_sendmsg()
|
/linux-5.19.10/Documentation/networking/ |
D | tls.rst | 89 MSG_MORE is passed. MSG_MORE will delay creation of a record until 90 MSG_MORE is not passed, or the maximum record size is reached. 97 call using MSG_MORE, the MSG_MORE data is left on the socket buffer.
|
D | rxrpc.rst | 238 (#) When sending data for a call, sendmsg is given MSG_MORE if there's more 241 (#) When receiving data for a call, recvmsg flags MSG_MORE if there's more 318 of the last data message in that phase yet), then MSG_MORE will be 605 MSG_MORE should be set in msghdr::msg_flags on all but the last part of 616 pick up. MSG_MORE will be flagged by recvmsg() if there's more reply data 724 be delivered with MSG_MORE flagged. 740 MSG_MORE should be set in msghdr::msg_flags on all but the last message 876 MSG_MORE if there will be subsequent data sends for this call. 879 other than MSG_MORE. len is the total amount of data to transmit.
|
/linux-5.19.10/tools/testing/vsock/ |
D | control.c | 122 ret = send(control_fd, str, len, MSG_MORE); in control_writeln()
|
/linux-5.19.10/net/rds/ |
D | tcp_send.c | 114 more = rm->data.op_nents > 1 ? (MSG_MORE | MSG_SENDPAGE_NOTLAST) : 0; in rds_tcp_xmit()
|
/linux-5.19.10/net/ceph/ |
D | messenger_v1.c | 70 msg.msg_flags |= MSG_MORE; in ceph_tcp_sendmsg() 470 int more = MSG_MORE | MSG_SENDPAGE_NOTLAST; in write_partial_message_data() 500 more = MSG_MORE; in write_partial_message_data() 532 int more = MSG_MORE | MSG_SENDPAGE_NOTLAST; in write_partial_skip() 540 more = MSG_MORE; in write_partial_skip()
|
/linux-5.19.10/drivers/infiniband/sw/siw/ |
D | siw_qp_tx.c | 329 flags = MSG_MORE | MSG_DONTWAIT | MSG_SENDPAGE_NOTLAST; in siw_tcp_sendpages() 335 flags = MSG_MORE | MSG_DONTWAIT; in siw_tcp_sendpages() 447 rv = siw_tx_ctrl(c_tx, s, MSG_DONTWAIT | MSG_MORE); in siw_tx_hdt() 886 msg_flags = MSG_DONTWAIT | MSG_MORE; in siw_qp_sq_proc_tx()
|
/linux-5.19.10/drivers/nvme/target/ |
D | tcp.c | 575 left, MSG_DONTWAIT | MSG_MORE | MSG_SENDPAGE_NOTLAST); in nvmet_try_send_data_pdu() 603 flags |= MSG_MORE | MSG_SENDPAGE_NOTLAST; in nvmet_try_send_data() 648 flags |= MSG_MORE | MSG_SENDPAGE_NOTLAST; in nvmet_try_send_response() 676 flags |= MSG_MORE | MSG_SENDPAGE_NOTLAST; in nvmet_try_send_r2t() 706 msg.msg_flags |= MSG_MORE; in nvmet_try_send_ddgst()
|
/linux-5.19.10/net/rxrpc/ |
D | recvmsg.c | 631 msg->msg_flags |= MSG_MORE; in rxrpc_recvmsg() 633 msg->msg_flags &= ~MSG_MORE; in rxrpc_recvmsg()
|
/linux-5.19.10/Documentation/crypto/ |
D | userspace-if.rst | 124 - MSG_MORE: If this flag is set, the send system call acts like a 178 - MSG_MORE: If this flag is set, the send system call acts like a 241 - MSG_MORE: If this flag is set, the send system call acts like a
|
/linux-5.19.10/tools/perf/trace/beauty/include/linux/ |
D | socket.h | 310 #define MSG_MORE 0x8000 /* Sender will send more */ macro
|
/linux-5.19.10/include/linux/ |
D | socket.h | 310 #define MSG_MORE 0x8000 /* Sender will send more */ macro
|
/linux-5.19.10/fs/afs/ |
D | rxrpc.c | 361 msg.msg_flags = MSG_WAITALL | (call->write_iter ? MSG_MORE : 0); in afs_make_call() 371 msg.msg_flags &= ~MSG_MORE; in afs_make_call()
|
/linux-5.19.10/drivers/vhost/ |
D | net.c | 832 msg.msg_flags |= MSG_MORE; in handle_tx_copy() 834 msg.msg_flags &= ~MSG_MORE; in handle_tx_copy() 929 msg.msg_flags |= MSG_MORE; in handle_tx_zerocopy() 931 msg.msg_flags &= ~MSG_MORE; in handle_tx_zerocopy()
|
/linux-5.19.10/net/tls/ |
D | tls_device.c | 441 ~(MSG_MORE | MSG_DONTWAIT | MSG_NOSIGNAL | MSG_SENDPAGE_NOTLAST)) in tls_push_data() 515 if (flags & (MSG_SENDPAGE_NOTLAST | MSG_MORE)) { in tls_push_data() 592 flags |= MSG_MORE; in tls_device_sendpage()
|
D | tls_sw.c | 933 bool eor = !(msg->msg_flags & MSG_MORE); in tls_sw_sendmsg() 947 if (msg->msg_flags & ~(MSG_MORE | MSG_DONTWAIT | MSG_NOSIGNAL | in tls_sw_sendmsg() 1267 if (flags & ~(MSG_MORE | MSG_DONTWAIT | MSG_NOSIGNAL | in tls_sw_sendpage_locked() 1281 if (flags & ~(MSG_MORE | MSG_DONTWAIT | MSG_NOSIGNAL | in tls_sw_sendpage()
|
/linux-5.19.10/tools/testing/selftests/net/ |
D | tls.c | 446 EXPECT_EQ(send(self->fd, test_str, send_len, MSG_MORE), send_len); in TEST_F() 460 EXPECT_EQ(send(self->fd, test_str, send_len, MSG_MORE), send_len); in TEST_F() 985 EXPECT_EQ(send(self->fd, test_str_first, len, MSG_MORE), len); in TEST_F() 1401 EXPECT_EQ(send(self->fd, test_str, send_len, MSG_MORE), send_len); in TEST_F()
|
D | udpgso.c | 482 if (!__send_one(fd, &msg, MSG_MORE)) in send_one()
|
/linux-5.19.10/drivers/nvme/host/ |
D | tcp.c | 991 flags |= MSG_MORE | MSG_SENDPAGE_NOTLAST; in nvme_tcp_try_send_data() 1045 flags |= MSG_MORE | MSG_SENDPAGE_NOTLAST; in nvme_tcp_try_send_cmd_pdu() 1087 MSG_DONTWAIT | MSG_MORE | MSG_SENDPAGE_NOTLAST); in nvme_tcp_try_send_data_pdu() 1091 MSG_DONTWAIT | MSG_MORE); in nvme_tcp_try_send_data_pdu() 1120 msg.msg_flags |= MSG_MORE; in nvme_tcp_try_send_ddgst()
|
/linux-5.19.10/net/ipv4/ |
D | udp.c | 1059 int corkreq = READ_ONCE(up->corkflag) || msg->msg_flags&MSG_MORE; in udp_sendmsg() 1284 corkreq ? msg->msg_flags|MSG_MORE : msg->msg_flags); in udp_sendmsg() 1331 flags |= MSG_MORE; in udp_sendpage() 1334 struct msghdr msg = { .msg_flags = flags|MSG_MORE }; in udp_sendpage() 1367 if (!(READ_ONCE(up->corkflag) || (flags&MSG_MORE))) in udp_sendpage()
|
/linux-5.19.10/net/kcm/ |
D | kcmsock.c | 769 flags |= MSG_MORE; in kcm_sendpage() 772 eor = !(flags & MSG_MORE); in kcm_sendpage() 907 !(msg->msg_flags & MSG_MORE) : !!(msg->msg_flags & MSG_EOR); in kcm_sendmsg()
|
/linux-5.19.10/net/l2tp/ |
D | l2tp_ip6.c | 642 else if (!(msg->msg_flags & MSG_MORE)) in l2tp_ip6_sendmsg()
|
/linux-5.19.10/net/smc/ |
D | smc_tx.c | 170 if ((msg->msg_flags & MSG_MORE || in smc_tx_should_cork()
|