| /net/x25/ |
| A D | x25_out.c | 52 int sent=0, noblock = X25_SKB_CB(skb)->flags & MSG_DONTWAIT; in x25_output() local 73 return sent; in x25_output() 77 "sent\n", err, sent); in x25_output() 101 sent += len; in x25_output() 107 sent = skb->len - header_len; in x25_output() 109 return sent; in x25_output()
|
| /net/bluetooth/ |
| A D | hci_event.c | 210 void *sent; in hci_cc_write_link_policy() local 218 if (!sent) in hci_cc_write_link_policy() 251 void *sent; in hci_cc_write_def_link_policy() local 259 if (!sent) in hci_cc_write_def_link_policy() 311 if (!sent) in hci_cc_read_stored_link_key() 352 if (!sent) in hci_cc_write_local_name() 393 if (!sent) in hci_cc_write_auth_enable() 428 if (!sent) in hci_cc_write_encrypt_mode() 451 if (!sent) in hci_cc_write_scan_enable() 492 if (!sent) in hci_cc_set_event_filter() [all …]
|
| A D | hci_codec.c | 10 struct hci_op_read_local_codec_caps *sent, in hci_codec_list_add() argument 21 entry->id = sent->id; in hci_codec_list_add() 22 if (sent->id == 0xFF) { in hci_codec_list_add() 23 entry->cid = __le16_to_cpu(sent->cid); in hci_codec_list_add() 24 entry->vid = __le16_to_cpu(sent->vid); in hci_codec_list_add() 26 entry->transport = sent->transport; in hci_codec_list_add()
|
| A D | hci_core.c | 3436 if (c->sent < min) { in hci_low_sent() 3437 min = c->sent; in hci_low_sent() 3517 min = conn->sent; in hci_chan_sent() 3561 if (chan->sent) { in hci_prio_recalculate() 3562 chan->sent = 0; in hci_prio_recalculate() 3636 conn->sent++; in hci_sched_sco() 3638 conn->sent = 0; in hci_sched_sco() 3681 chan->sent++; in hci_sched_acl_pkt() 3737 chan->sent++; in hci_sched_le() 3769 conn->sent++; in hci_sched_iso() [all …]
|
| /net/smc/ |
| A D | smc_tx.h | 23 union smc_host_cursor sent, prep; in smc_tx_prepared_sends() local 25 smc_curs_copy(&sent, &conn->tx_curs_sent, conn); in smc_tx_prepared_sends() 27 return smc_curs_diff(conn->sndbuf_desc->len, &sent, &prep); in smc_tx_prepared_sends()
|
| A D | smc_tx.c | 342 union smc_host_cursor *sent, in smc_tx_advance_cursors() argument 352 smc_curs_add(conn->sndbuf_desc->len, sent, len); in smc_tx_advance_cursors() 467 union smc_host_cursor sent, prep, prod, cons; in smc_tx_rdma_writes() local 473 smc_curs_copy(&sent, &conn->tx_curs_sent, conn); in smc_tx_rdma_writes() 476 to_send = smc_curs_diff(conn->sndbuf_desc->len, &sent, &prep); in smc_tx_rdma_writes() 516 if (sent.count + dst_len <= conn->sndbuf_desc->len) { in smc_tx_rdma_writes() 521 src_len = conn->sndbuf_desc->len - sent.count; in smc_tx_rdma_writes() 525 rc = smcd_tx_rdma_writes(conn, len, sent.count, src_len, in smc_tx_rdma_writes() 528 rc = smcr_tx_rdma_writes(conn, len, sent.count, src_len, in smc_tx_rdma_writes() 535 smc_tx_advance_cursors(conn, &prod, &sent, len); in smc_tx_rdma_writes() [all …]
|
| /net/vmw_vsock/ |
| A D | vmci_transport_notify.c | 121 bool sent; in vmci_transport_handle_waiting_read() local 124 sent = vmci_transport_send_wrote_bh(dst, src) > 0; in vmci_transport_handle_waiting_read() 126 sent = vmci_transport_send_wrote(sk) > 0; in vmci_transport_handle_waiting_read() 128 if (sent) in vmci_transport_handle_waiting_read() 151 bool sent; in vmci_transport_handle_waiting_write() local 154 sent = vmci_transport_send_read_bh(dst, src) > 0; in vmci_transport_handle_waiting_write() 156 sent = vmci_transport_send_read(sk) > 0; in vmci_transport_handle_waiting_write() 158 if (sent) in vmci_transport_handle_waiting_write()
|
| /net/hsr/ |
| A D | Kconfig | 18 with other HSR capable nodes. All Ethernet frames sent over the HSR 19 device will be sent in both directions on the ring (over both slave 26 frames sent over the PRP device will be sent to both networks giving
|
| A D | hsr_forward.c | 513 bool sent = false; in hsr_forward_do() local 532 if ((port->dev->features & NETIF_F_HW_HSR_DUP) && sent) in hsr_forward_do() 574 sent = true; in hsr_forward_do()
|
| /net/sctp/ |
| A D | chunk.c | 78 int error, sent; in sctp_datamsg_destroy() local 92 sent = chunk->has_tsn ? SCTP_DATA_SENT : SCTP_DATA_UNSENT; in sctp_datamsg_destroy() 96 ev = sctp_ulpevent_make_send_failed(asoc, chunk, sent, in sctp_datamsg_destroy() 105 sent, error, in sctp_datamsg_destroy()
|
| /net/bluetooth/rfcomm/ |
| A D | sock.c | 560 int sent; in rfcomm_sock_sendmsg() local 575 sent = bt_sock_wait_ready(sk, msg->msg_flags); in rfcomm_sock_sendmsg() 579 if (sent) in rfcomm_sock_sendmsg() 580 return sent; in rfcomm_sock_sendmsg() 587 sent = rfcomm_dlc_send(d, skb); in rfcomm_sock_sendmsg() 588 if (sent < 0) in rfcomm_sock_sendmsg() 591 return sent; in rfcomm_sock_sendmsg()
|
| A D | tty.c | 780 size_t sent = 0, size; in rfcomm_tty_write() local 793 skb_put_data(skb, buf + sent, size); in rfcomm_tty_write() 797 sent += size; in rfcomm_tty_write() 801 return sent; in rfcomm_tty_write()
|
| /net/caif/ |
| A D | caif_socket.c | 593 int sent = 0; in caif_stream_sendmsg() local 609 while (sent < len) { in caif_stream_sendmsg() 611 size = len-sent; in caif_stream_sendmsg() 652 sent += size; in caif_stream_sendmsg() 655 return sent; in caif_stream_sendmsg() 658 if (sent == 0 && !(msg->msg_flags&MSG_NOSIGNAL)) in caif_stream_sendmsg() 662 return sent ? : err; in caif_stream_sendmsg()
|
| /net/netfilter/ |
| A D | nf_conntrack_ecache.c | 58 unsigned int sent; in ecache_work_evict_list() local 63 sent = 0; in ecache_work_evict_list() 85 if (sent++ > 16) { in ecache_work_evict_list()
|
| /net/sunrpc/ |
| A D | xprtsock.c | 961 unsigned int sent; in xs_local_send_request() local 982 transport->xmit.offset += sent; in xs_local_send_request() 1030 unsigned int sent; in xs_udp_send_request() local 1059 if (sent > 0 || status == 0) { in xs_udp_send_request() 1060 req->rq_xmit_bytes_sent += sent; in xs_udp_send_request() 1061 if (sent >= req->rq_slen) in xs_udp_send_request() 1117 unsigned int sent; in xs_tcp_send_request() local 1155 transport->xmit.offset += sent; in xs_tcp_send_request() 1167 if (sent > 0) in xs_tcp_send_request() 2991 unsigned int sent = 0; in bc_sendto() local [all …]
|
| A D | svcsock.c | 1277 int sent, err; in svc_tcp_sendto() local 1285 err = svc_tcp_sendmsg(svsk, rqstp, marker, &sent); in svc_tcp_sendto() 1286 trace_svcsock_tcp_send(xprt, err < 0 ? (long)err : sent); in svc_tcp_sendto() 1287 if (err < 0 || sent != (xdr->len + sizeof(marker))) in svc_tcp_sendto() 1290 return sent; in svc_tcp_sendto() 1299 (err < 0) ? err : sent, xdr->len); in svc_tcp_sendto()
|
| /net/appletalk/ |
| A D | aarp.c | 596 goto sent; in aarp_send_ddp() 606 goto sent; in aarp_send_ddp() 650 goto sent; in aarp_send_ddp() 657 sent: in aarp_send_ddp()
|
| /net/netfilter/ipvs/ |
| A D | Kconfig | 243 destinations changes, a connection will likely be sent to the same 255 sent to the ith server, in which Ci is the number of connections 266 When there is an idle server available, the job will be sent to 268 is no idle server available, the job will be sent to the server 329 the IP address and port number of real servers cannot be sent to
|
| /net/ceph/ |
| A D | messenger_v2.c | 3458 int sent; in prepare_zero_front() local 3461 sent = front_len(con->out_msg) - resid; in prepare_zero_front() 3464 if (sent) { in prepare_zero_front() 3466 crc32c(-1, con->out_msg->front.iov_base, sent); in prepare_zero_front() 3479 int sent; in prepare_zero_middle() local 3482 sent = middle_len(con->out_msg) - resid; in prepare_zero_middle() 3485 if (sent) { in prepare_zero_middle() 3550 int sent, resid; /* current piece of data */ in revoke_at_queue_data_cont() local 3556 sent = con->v2.out_bvec.bv_len - resid; in revoke_at_queue_data_cont() 3559 if (sent) { in revoke_at_queue_data_cont() [all …]
|
| /net/mptcp/ |
| A D | protocol.c | 1063 u16 sent; member 1178 u64 data_seq = dfrag->data_seq + info->sent; in mptcp_sendmsg_frag() 1179 int offset = dfrag->offset + info->sent; in mptcp_sendmsg_frag() 1437 u32 sent) in mptcp_update_post_push() argument 1441 dfrag->already_sent += sent; in mptcp_update_post_push() 1443 msk->snd_burst -= sent; in mptcp_update_post_push() 1479 info->sent = dfrag->already_sent; in __subflow_push_pending() 1491 info->sent += ret; in __subflow_push_pending() 2617 info.sent = 0; in __mptcp_retrans() 2632 while (info.sent < info.limit) { in __mptcp_retrans() [all …]
|
| /net/ipv4/ |
| A D | tcp_bpf.c | 389 u32 tosend, origsize, sent, delta = 0; in tcp_bpf_send_verdict() local 451 sent = origsize - msg->sg.size; in tcp_bpf_send_verdict() 457 sk_mem_uncharge(sk, sent); in tcp_bpf_send_verdict()
|
| /net/rds/ |
| A D | ib_send.c | 867 int sent; in rds_ib_xmit_rdma() local 914 sent = 0; in rds_ib_xmit_rdma() 954 sent += len; in rds_ib_xmit_rdma() 955 rdsdebug("ic %p sent %d remote_addr %llu\n", ic, sent, remote_addr); in rds_ib_xmit_rdma()
|
| /net/atm/ |
| A D | Kconfig | 35 Normally, an "ICMP host unreachable" message is sent if a neighbour
|
| /net/kcm/ |
| A D | kcmsock.c | 621 txm->sent = 0; in kcm_write_msgs() 674 txm->sent += ret; in kcm_write_msgs() 692 sk->sk_wmem_queued -= txm->sent; in kcm_write_msgs() 693 total_sent += txm->sent; in kcm_write_msgs()
|
| /net/unix/ |
| A D | af_unix.c | 2402 int err, sent = 0; in unix_stream_sendmsg() local 2436 while (sent < len) { in unix_stream_sendmsg() 2437 int size = len - sent; in unix_stream_sendmsg() 2511 sent += size; in unix_stream_sendmsg() 2519 sent++; in unix_stream_sendmsg() 2525 return sent; in unix_stream_sendmsg() 2530 if (!sent && !(msg->msg_flags & MSG_NOSIGNAL)) in unix_stream_sendmsg() 2537 return sent ? : err; in unix_stream_sendmsg()
|