Searched refs:MSG_MORE (Results 1 - 25 of 41) sorted by last modified time

12

/linux-master/net/ipv6/
H A Dip6_output.c1492 (!(flags & MSG_MORE) || cork->gso_size) &&
1606 * (without MSG_MORE) fits into the MTU.
1610 if ((flags & MSG_MORE) &&
H A Dudp.c1337 int corkreq = udp_test_bit(CORK, sk) || msg->msg_flags & MSG_MORE;
1604 corkreq ? msg->msg_flags|MSG_MORE : msg->msg_flags);
H A Draw.c925 else if (!(msg->msg_flags & MSG_MORE))
/linux-master/net/ipv4/
H A Dtcp.c715 if (!(flags & MSG_MORE) || forced_push(tp))
735 if (flags & MSG_MORE)
1297 tcp_push(sk, flags & ~MSG_MORE, mss_now,
H A Dudp.c1060 int corkreq = udp_test_bit(CORK, sk) || msg->msg_flags & MSG_MORE;
1285 corkreq ? msg->msg_flags|MSG_MORE : msg->msg_flags);
H A Draw.c656 else if (!(msg->msg_flags & MSG_MORE)) {
H A Dip_output.c1004 (!(flags & MSG_MORE) || cork->gso_size) &&
1100 * Note, with MSG_MORE we overallocate on fragments,
1107 if ((flags & MSG_MORE) &&
/linux-master/net/mptcp/
H A Dprotocol.c1797 msg->msg_flags &= MSG_MORE | MSG_DONTWAIT | MSG_NOSIGNAL | MSG_FASTOPEN;
/linux-master/drivers/nvme/target/
H A Dtcp.c607 .msg_flags = MSG_DONTWAIT | MSG_MORE | MSG_SPLICE_PAGES,
647 msg.msg_flags |= MSG_MORE;
694 msg.msg_flags |= MSG_MORE;
724 msg.msg_flags |= MSG_MORE;
755 msg.msg_flags |= MSG_MORE;
/linux-master/drivers/nvme/host/
H A Dtcp.c1052 msg.msg_flags |= MSG_MORE;
1106 msg.msg_flags |= MSG_MORE;
1140 struct msghdr msg = { .msg_flags = MSG_DONTWAIT | MSG_MORE, };
1182 msg.msg_flags |= MSG_MORE;
/linux-master/tools/testing/selftests/net/
H A Dudpgso.c366 /* If MSG_MORE, send 1 byte followed by remainder */
369 if (!__send_one(fd, &msg, MSG_MORE))
H A Dtls.c521 EXPECT_EQ(send(self->fd, test_str, send_len, MSG_MORE), send_len);
535 EXPECT_EQ(send(self->fd, test_str, send_len, MSG_MORE), send_len);
1089 /* MSG_MORE will hold current record open, so later MSG_PEEK
1093 EXPECT_EQ(send(self->fd, test_str_first, len, MSG_MORE), len);
1554 EXPECT_EQ(send(self->fd, test_str, send_len, MSG_MORE), send_len);
/linux-master/drivers/net/
H A Dtun.c2602 m->msg_flags & MSG_MORE);
/linux-master/net/tls/
H A Dtls_sw.c1015 bool eor = !(msg->msg_flags & MSG_MORE);
1231 if (msg->msg_flags & ~(MSG_MORE | MSG_DONTWAIT | MSG_NOSIGNAL |
H A Dtls_main.c255 if (msg->msg_flags & MSG_MORE)
/linux-master/tools/perf/trace/beauty/include/linux/
H A Dsocket.h319 #define MSG_MORE 0x8000 /* Sender will send more */ macro
/linux-master/net/rxrpc/
H A Dsendmsg.c287 bool more = msg->msg_flags & MSG_MORE;
744 * nor should an address be supplied. MSG_MORE should be flagged if there's
/linux-master/include/linux/
H A Dsocket.h319 #define MSG_MORE 0x8000 /* Sender will send more */ macro
/linux-master/drivers/vhost/
H A Dnet.c802 msg.msg_flags |= MSG_MORE;
804 msg.msg_flags &= ~MSG_MORE;
899 msg.msg_flags |= MSG_MORE;
901 msg.msg_flags &= ~MSG_MORE;
/linux-master/net/xfrm/
H A Despintcp.c211 .msg_flags = flags | MSG_SPLICE_PAGES | MSG_MORE,
214 bool more = flags & MSG_MORE;
229 msghdr.msg_flags &= ~MSG_MORE;
/linux-master/net/sctp/
H A Dsocket.c1865 asoc->force_delay = !!(msg->msg_flags & MSG_MORE);
/linux-master/net/kcm/
H A Dkcmsock.c755 !(msg->msg_flags & MSG_MORE) : !!(msg->msg_flags & MSG_EOR);
/linux-master/drivers/block/
H A Dnbd.c658 (type == NBD_CMD_WRITE) ? MSG_MORE : 0, &sent);
690 int flags = is_last ? 0 : MSG_MORE;
/linux-master/drivers/block/drbd/
H A Ddrbd_main.c642 * MSG_MORE flag: this will increase the likelihood that data blocks
646 msg_flags = data ? MSG_MORE : 0;
1593 /* hint all but last page with MSG_MORE */
1600 ? 0 : MSG_MORE);
1612 /* hint all but last page with MSG_MORE */
1618 bio_iter_last(bvec, iter) ? 0 : MSG_MORE);
1632 /* hint all but last page with MSG_MORE */
1637 page_chain_next(page) ? MSG_MORE : 0);
/linux-master/net/l2tp/
H A Dl2tp_ip6.c637 else if (!(msg->msg_flags & MSG_MORE))

Completed in 421 milliseconds

12