Symbol: MSG_NOSIGNAL
drivers/block/drbd/drbd_main.c
1534
msg.msg_flags |= MSG_NOSIGNAL | MSG_SPLICE_PAGES;
drivers/block/drbd/drbd_main.c
1808
struct msghdr msg = {.msg_flags = msg_flags | MSG_NOSIGNAL};
drivers/block/drbd/drbd_receiver.c
1035
err = drbd_recv_short(connection->data.socket, buffer, size, MSG_NOSIGNAL|MSG_DONTWAIT);
drivers/block/drbd/drbd_receiver.c
319
.msg_flags = (flags ? flags : MSG_WAITALL | MSG_NOSIGNAL)
drivers/block/nbd.c
573
msg.msg_flags = msg_flags | MSG_NOSIGNAL;
drivers/net/ovpn/tcp.c
270
flags = ovpn_skb_cb(skb)->nosignal ? MSG_NOSIGNAL : 0;
drivers/net/ovpn/tcp.c
423
if (msg->msg_flags & ~(MSG_DONTWAIT | MSG_NOSIGNAL)) {
drivers/net/ovpn/tcp.c
456
ovpn_skb_cb(skb)->nosignal = msg->msg_flags & MSG_NOSIGNAL;
drivers/nvme/target/tcp.c
1501
c->recv_msg.msg_flags = MSG_DONTWAIT | MSG_NOSIGNAL;
drivers/usb/usbip/usbip_common.c
306
struct msghdr msg = {.msg_flags = MSG_NOSIGNAL};
fs/coredump.c
747
struct msghdr msg = { .msg_flags = MSG_NOSIGNAL };
fs/coredump.c
759
struct msghdr msg = { .msg_flags = MSG_NOSIGNAL };
fs/dlm/lowcomms.c
1370
.msg_flags = MSG_SPLICE_PAGES | MSG_DONTWAIT | MSG_NOSIGNAL,
fs/dlm/lowcomms.c
923
msg.msg_flags = MSG_DONTWAIT | MSG_NOSIGNAL;
fs/smb/client/transport.c
152
smb_msg->msg_flags = MSG_DONTWAIT + MSG_NOSIGNAL;
fs/smb/client/transport.c
154
smb_msg->msg_flags = MSG_NOSIGNAL;
fs/smb/server/transport_tcp.c
425
struct msghdr smb_msg = {.msg_flags = MSG_NOSIGNAL};
io_uring/net.c
1420
zc->msg_flags = READ_ONCE(sqe->msg_flags) | MSG_NOSIGNAL | MSG_ZEROCOPY;
io_uring/net.c
443
sr->msg_flags = READ_ONCE(sqe->msg_flags) | MSG_NOSIGNAL;
net/bluetooth/bnep/core.c
630
s->msg.msg_flags = MSG_NOSIGNAL;
net/bluetooth/hci_sock.c
1813
if (flags & ~(MSG_DONTWAIT | MSG_NOSIGNAL | MSG_ERRQUEUE | MSG_CMSG_COMPAT))
net/ceph/messenger_v1.c
27
struct msghdr msg = { .msg_flags = MSG_DONTWAIT | MSG_NOSIGNAL };
net/ceph/messenger_v1.c
44
struct msghdr msg = { .msg_flags = MSG_DONTWAIT | MSG_NOSIGNAL };
net/ceph/messenger_v1.c
63
struct msghdr msg = { .msg_flags = MSG_DONTWAIT | MSG_NOSIGNAL };
net/ceph/messenger_v1.c
84
.msg_flags = MSG_DONTWAIT | MSG_NOSIGNAL | more,
net/ceph/messenger_v2.c
77
#define CEPH_MSG_FLAGS (MSG_DONTWAIT | MSG_NOSIGNAL)
net/core/stream.c
193
if (err == -EPIPE && !(flags & MSG_NOSIGNAL))
net/mptcp/protocol.c
1921
msg->msg_flags &= MSG_MORE | MSG_DONTWAIT | MSG_NOSIGNAL |
net/netfilter/ipvs/ip_vs_sync.c
1574
struct msghdr msg = {.msg_flags = MSG_DONTWAIT|MSG_NOSIGNAL};
net/phonet/datagram.c
119
if (flags & ~(MSG_PEEK|MSG_TRUNC|MSG_DONTWAIT|MSG_NOSIGNAL|
net/phonet/datagram.c
76
if (msg->msg_flags & ~(MSG_DONTWAIT|MSG_EOR|MSG_NOSIGNAL|
net/phonet/pep.c
1166
if ((msg->msg_flags & ~(MSG_DONTWAIT|MSG_EOR|MSG_NOSIGNAL|
net/phonet/pep.c
1288
MSG_NOSIGNAL|MSG_CMSG_COMPAT))
net/rds/tcp_send.c
116
msg.msg_flags = MSG_SPLICE_PAGES | MSG_DONTWAIT | MSG_NOSIGNAL;
net/rds/tcp_send.c
63
.msg_flags = MSG_DONTWAIT | MSG_NOSIGNAL,
net/sctp/socket.c
1564
if (err == -EPIPE && !(flags & MSG_NOSIGNAL))
net/socket.c
1239
msg.msg_flags |= MSG_NOSIGNAL;
net/sunrpc/xprtsock.c
838
#define XS_SENDMSG_FLAGS (MSG_DONTWAIT | MSG_NOSIGNAL)
net/tls/tls_device.c
440
~(MSG_MORE | MSG_DONTWAIT | MSG_NOSIGNAL |
net/tls/tls_device.c
692
MSG_DONTWAIT | MSG_NOSIGNAL |
net/tls/tls_sw.c
999
if (msg->msg_flags & ~(MSG_MORE | MSG_DONTWAIT | MSG_NOSIGNAL |
net/unix/af_unix.c
2512
if (!sent && !(msg->msg_flags & MSG_NOSIGNAL))
tools/testing/selftests/bpf/prog_tests/lwt_reroute.c
138
sendmsg(s, &msg, MSG_NOSIGNAL);
tools/testing/selftests/bpf/prog_tests/xdp_flowtable.c
50
n = sendto(sock, buf, sizeof(buf), MSG_NOSIGNAL | MSG_CONFIRM,
tools/testing/selftests/bpf/test_sockmap.c
542
int err, i, flags = MSG_NOSIGNAL;
tools/testing/selftests/bpf/xdp_features.c
243
sendto(sockfd, buf, sizeof(buf), MSG_NOSIGNAL | MSG_CONFIRM,
tools/testing/selftests/bpf/xdp_features.c
567
n = sendto(sockfd, buf, sizeof(*tlv), MSG_NOSIGNAL | MSG_CONFIRM,
tools/testing/selftests/coredump/coredump_test_helpers.c
281
ret = send(fd, &large_ack, size_ack, MSG_NOSIGNAL);
tools/testing/selftests/landlock/net_test.c
304
flags |= MSG_NOSIGNAL;
tools/testing/selftests/net/netfilter/udpclash.c
45
if (sendto(args->sockfd, msg, strlen(msg), MSG_NOSIGNAL,
tools/testing/selftests/net/netfilter/udpclash.c
87
ret = recvfrom(fd, repl, sizeof(repl), MSG_NOSIGNAL,
tools/testing/selftests/net/ovpn/ovpn-cli.c
1895
ret = send(socket, buf, sizeof(buf), MSG_NOSIGNAL);
tools/testing/selftests/net/ovpn/ovpn-cli.c
1908
ret = recv(socket, buf, sizeof(buf), MSG_NOSIGNAL);
tools/testing/vsock/vsock_test.c
1149
res = send(fd, "A", 1, MSG_NOSIGNAL);