Searched refs:EPIPE (Results 251 - 275 of 303) sorted by path

<<111213

/linux-master/net/caif/
H A Dcaif_socket.c393 err = -EPIPE;
483 *err = -EPIPE;
545 ret = -EPIPE;
660 err = -EPIPE;
/linux-master/net/core/
H A Dskmsg.c685 sk_psock_report_error(psock, ret ? -ret : EPIPE);
H A Dsock.c2778 err = -EPIPE;
H A Dstream.c67 return -EPIPE;
169 err = -EPIPE;
188 if (err == -EPIPE)
189 err = sock_error(sk) ? : -EPIPE;
190 if (err == -EPIPE && !(flags & MSG_NOSIGNAL))
/linux-master/net/ipv4/
H A Daf_inet.c713 err = -EPIPE;
H A Dtcp.c1137 err = -EPIPE;
H A Dtcp_bpf.c168 return -EPIPE;
H A Dtcp_input.c4456 WRITE_ONCE(sk->sk_err, EPIPE);
/linux-master/net/iucv/
H A Daf_iucv.c929 err = -EPIPE;
1055 err = -EPIPE;
1089 err = -EPIPE;
/linux-master/net/kcm/
H A Dkcmsock.c51 csk->sk_err = EPIPE;
412 report_csk_error(sk, EPIPE);
662 kcm_abort_tx_psock(psock, ret ? -ret : EPIPE,
756 int err = -EPIPE;
1411 kcm_abort_tx_psock(psock, EPIPE, false);
1725 kcm_abort_tx_psock(psock, EPIPE, false);
/linux-master/net/mptcp/
H A Dprotocol.c1826 ret = -EPIPE;
2585 WRITE_ONCE(sk->sk_err, EPIPE);
/linux-master/net/netrom/
H A Daf_netrom.c1064 err = -EPIPE;
/linux-master/net/qrtr/
H A Daf_qrtr.c297 confirm_rx = -EPIPE;
/linux-master/net/rose/
H A Daf_rose.c1120 return -EPIPE;
/linux-master/net/rxrpc/
H A Dsendmsg.c306 ret = -EPIPE;
/linux-master/net/sctp/
H A Dsocket.c1560 /* Handle EPIPE error. */
1563 if (err == -EPIPE)
1564 err = sock_error(sk) ? : -EPIPE;
1565 if (err == -EPIPE && !(flags & MSG_NOSIGNAL))
1604 return -EPIPE;
1760 return -EPIPE;
2018 err = -EPIPE;
9257 err = -EPIPE;
/linux-master/net/smc/
H A Daf_smc.c1609 if ((rc == -EPIPE) &&
1618 if (rc == -EPIPE || rc == -EAGAIN)
1619 smc->sk.sk_err = EPIPE;
2798 rc = -EPIPE;
H A Dsmc_cdc.c89 rc = -EPIPE;
215 return -EPIPE;
H A Dsmc_close.c102 return -EPIPE;
H A Dsmc_loopback.c249 return -EPIPE;
H A Dsmc_tx.c94 rc = -EPIPE;
197 rc = -EPIPE;
217 return -EPIPE;
568 return -EPIPE;
641 rc = -EPIPE; /* connection being aborted */
H A Dsmc_wr.c224 return -EPIPE;
227 return -EPIPE;
388 return -EPIPE;
400 rc = -EPIPE;
/linux-master/net/sunrpc/auth_gss/
H A Dauth_gss.c859 gss_msg->msg.errno = -EPIPE;
/linux-master/net/sunrpc/
H A Dclnt.c2115 case -EPIPE:
2210 case -EPIPE:
2346 case -EPIPE:
2401 case -EPIPE:
2483 case -EPIPE:
H A Drpc_pipe.c137 int res = -EPIPE;
186 rpc_purge_list(&RPC_I(inode)->waitq, &free_list, pipe->ops->destroy_msg, -EPIPE);
291 res = -EPIPE;
331 res = -EPIPE;
369 return -EPIPE;
842 * return -EPIPE.

Completed in 383 milliseconds

<<111213