/openbmc/linux/net/sunrpc/ |
H A 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()
|
/openbmc/linux/crypto/ |
H A D | algif_hash.c | 91 if (!(msg->msg_flags & MSG_MORE)) { in hash_sendmsg() 136 !(msg->msg_flags & MSG_MORE)) { in hash_sendmsg() 148 if (msg_data_left(msg) || (msg->msg_flags & MSG_MORE)) in hash_sendmsg() 164 ctx->more = msg->msg_flags & MSG_MORE; in hash_sendmsg()
|
/openbmc/linux/Documentation/networking/ |
H A 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.
|
H A 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 883 MSG_MORE if there will be subsequent data sends for this call. 886 other than MSG_MORE. len is the total amount of data to transmit.
|
/openbmc/linux/net/xfrm/ |
H A D | espintcp.c | 209 .msg_flags = flags | MSG_SPLICE_PAGES | MSG_MORE, in espintcp_sendskmsg_locked() 212 bool more = flags & MSG_MORE; in espintcp_sendskmsg_locked() 227 msghdr.msg_flags &= ~MSG_MORE; in espintcp_sendskmsg_locked()
|
/openbmc/linux/tools/testing/vsock/ |
H A D | control.c | 122 ret = send(control_fd, str, len, MSG_MORE); in control_writeln()
|
/openbmc/linux/net/tls/ |
H A D | tls_device.c | 443 ~(MSG_MORE | MSG_DONTWAIT | MSG_NOSIGNAL | in tls_push_data() 447 if ((flags & (MSG_MORE | MSG_EOR)) == (MSG_MORE | MSG_EOR)) in tls_push_data() 454 tls_push_record_flags = flags | MSG_MORE; in tls_push_data() 537 if (flags & MSG_MORE) { in tls_push_data()
|
/openbmc/linux/net/rds/ |
H A D | tcp_send.c | 118 msg.msg_flags |= MSG_MORE; in rds_tcp_xmit()
|
/openbmc/linux/net/rxrpc/ |
H A D | recvmsg.c | 435 msg->msg_flags |= MSG_MORE; in rxrpc_recvmsg() 437 msg->msg_flags &= ~MSG_MORE; in rxrpc_recvmsg()
|
H A D | rxperf.c | 509 msg.msg_flags = MSG_MORE; in rxperf_process_call()
|
H A D | sendmsg.c | 287 bool more = msg->msg_flags & MSG_MORE; in rxrpc_send_data()
|
/openbmc/linux/drivers/infiniband/sw/siw/ |
H A D | siw_qp_tx.c | 328 .msg_flags = (MSG_MORE | MSG_DONTWAIT | MSG_SPLICE_PAGES), in siw_tcp_sendpages() 337 msg.msg_flags &= ~MSG_MORE; in siw_tcp_sendpages() 454 rv = siw_tx_ctrl(c_tx, s, MSG_DONTWAIT | MSG_MORE); in siw_tx_hdt() 887 msg_flags = MSG_DONTWAIT | MSG_MORE; in siw_qp_sq_proc_tx()
|
/openbmc/linux/drivers/nvme/target/ |
H A D | tcp.c | 583 .msg_flags = MSG_DONTWAIT | MSG_MORE | MSG_SPLICE_PAGES, in nvmet_try_send_data_pdu() 623 msg.msg_flags |= MSG_MORE; in nvmet_try_send_data() 670 msg.msg_flags |= MSG_MORE; in nvmet_try_send_response() 700 msg.msg_flags |= MSG_MORE; in nvmet_try_send_r2t() 731 msg.msg_flags |= MSG_MORE; in nvmet_try_send_ddgst()
|
/openbmc/linux/tools/perf/trace/beauty/include/linux/ |
H A D | socket.h | 319 #define MSG_MORE 0x8000 /* Sender will send more */ macro
|
/openbmc/linux/include/linux/ |
H A D | socket.h | 319 #define MSG_MORE 0x8000 /* Sender will send more */ macro
|
/openbmc/linux/fs/afs/ |
H A D | rxrpc.c | 366 msg.msg_flags = MSG_WAITALL | (call->write_iter ? MSG_MORE : 0); in afs_make_call() 376 msg.msg_flags &= ~MSG_MORE; in afs_make_call()
|
/openbmc/linux/drivers/vhost/ |
H A D | net.c | 834 msg.msg_flags |= MSG_MORE; in handle_tx_copy() 836 msg.msg_flags &= ~MSG_MORE; in handle_tx_copy() 931 msg.msg_flags |= MSG_MORE; in handle_tx_zerocopy() 933 msg.msg_flags &= ~MSG_MORE; in handle_tx_zerocopy()
|
/openbmc/linux/Documentation/crypto/ |
H A 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
|
/openbmc/linux/net/ceph/ |
H A D | messenger_v1.c | 67 msg.msg_flags |= MSG_MORE; in ceph_tcp_sendmsg() 499 MSG_MORE); in write_partial_message_data() 536 MSG_MORE); in write_partial_skip()
|
/openbmc/linux/tools/testing/selftests/net/ |
H A D | tls.c | 521 EXPECT_EQ(send(self->fd, test_str, send_len, MSG_MORE), send_len); in TEST_F() 535 EXPECT_EQ(send(self->fd, test_str, send_len, MSG_MORE), send_len); in TEST_F() 1093 EXPECT_EQ(send(self->fd, test_str_first, len, MSG_MORE), len); in TEST_F() 1509 EXPECT_EQ(send(self->fd, test_str, send_len, MSG_MORE), send_len); in TEST_F()
|
H A D | udpgso.c | 482 if (!__send_one(fd, &msg, MSG_MORE)) in send_one()
|
/openbmc/linux/drivers/nvme/host/ |
H A D | tcp.c | 1014 msg.msg_flags |= MSG_MORE; in nvme_tcp_try_send_data() 1068 msg.msg_flags |= MSG_MORE; in nvme_tcp_try_send_cmd_pdu() 1102 struct msghdr msg = { .msg_flags = MSG_DONTWAIT | MSG_MORE, }; in nvme_tcp_try_send_data_pdu() 1144 msg.msg_flags |= MSG_MORE; in nvme_tcp_try_send_ddgst()
|
/openbmc/linux/net/smc/ |
H A D | smc_tx.c | 170 if ((msg->msg_flags & MSG_MORE || in smc_tx_should_cork()
|
/openbmc/linux/net/l2tp/ |
H A D | l2tp_ip6.c | 637 else if (!(msg->msg_flags & MSG_MORE)) in l2tp_ip6_sendmsg()
|
/openbmc/linux/net/ipv4/ |
H A D | tcp_bpf.c | 116 msghdr.msg_flags |= MSG_MORE; in tcp_bpf_push()
|