Home
last modified time | relevance | path

Searched refs:send_size (Results 1 – 17 of 17) sorted by relevance

/freebsd/sys/netinet/
H A Dsctp_output.c7657 chk->send_size += pads; in sctp_move_to_outqueue()
8685 chk->send_size, mtu); in sctp_med_chunk_output()
8695 if (((chk->send_size <= mtu) && (chk->send_size <= r_mtu)) || in sctp_med_chunk_output()
8747 if (mtu > chk->send_size) in sctp_med_chunk_output()
8748 mtu -= chk->send_size; in sctp_med_chunk_output()
8753 r_mtu -= chk->send_size; in sctp_med_chunk_output()
9149 chk->send_size = chk_length; in sctp_send_heartbeat_ack()
9352 chk->send_size = len; in sctp_send_asconf()
9446 chk->send_size = ack->len; in sctp_send_asconf_ack()
11580 chk->send_size = len; in sctp_send_packet_dropped()
[all …]
H A Dsctp_indata.c984 chk->send_size = control->length; in sctp_inject_old_unordered_data()
1022 asoc->size_on_reasm_queue += chk->send_size; in sctp_inject_old_unordered_data()
1041 asoc->size_on_reasm_queue += chk->send_size; in sctp_inject_old_unordered_data()
1312 asoc->size_on_reasm_queue -= chk->send_size; in sctp_add_chk_to_control()
2176 chk->send_size = the_len; in sctp_process_a_data_chunk()
3079 tp1->whoTo->net_ack += tp1->send_size; in sctp_process_segment_range()
3859 chk->send_size, in sctp_fs_audit()
4047 tp1->whoTo->net_ack += tp1->send_size; in sctp_express_handle_sack()
4054 tp1->send_size; in sctp_express_handle_sack()
4640 tp1->whoTo->net_ack += tp1->send_size; in sctp_handle_sack()
[all …]
H A Dsctputil.c430 sctp_clog.x.rwnd.send_size = snd_size; in sctp_log_rwnd()
450 sctp_clog.x.rwnd.send_size = flight_size; in sctp_log_rwnd_set()
3407 if (chk->send_size >= chkhdr_len) { in sctp_notify_send_failed()
3408 payload_len = chk->send_size - chkhdr_len; in sctp_notify_send_failed()
3418 (chk->send_size >= chk_len) && in sctp_notify_send_failed()
3419 (chk->send_size - chk_len < 4)) { in sctp_notify_send_failed()
3420 padding_len = chk->send_size - chk_len; in sctp_notify_send_failed()
3421 payload_len = chk->send_size - chkhdr_len - padding_len; in sctp_notify_send_failed()
3465 if (chk->send_size == chkhdr_len + payload_len + padding_len) { in sctp_notify_send_failed()
3469 chk->send_size -= (chkhdr_len + padding_len); in sctp_notify_send_failed()
[all …]
H A Dsctp_pcb.c6816 KASSERT(chk->send_size > 0, ("chunk has zero length")); in sctp_drain_mbufs()
6817 if (asoc->size_on_reasm_queue >= chk->send_size) { in sctp_drain_mbufs()
6818 asoc->size_on_reasm_queue -= chk->send_size; in sctp_drain_mbufs()
6821 …size_on_reasm_queue = %u smaller than chunk length %u", asoc->size_on_reasm_queue, chk->send_size); in sctp_drain_mbufs()
6876 KASSERT(chk->send_size > 0, ("chunk has zero length")); in sctp_drain_mbufs()
6877 if (asoc->size_on_reasm_queue >= chk->send_size) { in sctp_drain_mbufs()
6878 asoc->size_on_reasm_queue -= chk->send_size; in sctp_drain_mbufs()
6881 …size_on_reasm_queue = %u smaller than chunk length %u", asoc->size_on_reasm_queue, chk->send_size); in sctp_drain_mbufs()
H A Dsctp_structs.h453 uint16_t send_size; member
H A Dsctp_uio.h825 uint32_t send_size; member
H A Dsctp_input.c3387 clen = chk->send_size; in sctp_find_stream_reset()
3980 chk->book_size = chk->send_size = sizeof(struct sctp_chunkhdr); in sctp_handle_stream_reset()
4002 ch->chunk_length = htons(chk->send_size); in sctp_handle_stream_reset()
4003 SCTP_BUF_LEN(chk->data) = SCTP_SIZE32(chk->send_size); in sctp_handle_stream_reset()
H A Dsctp_timer.c676 stcb->asoc.peers_rwnd += chk->send_size; in sctp_mark_all_for_resend()
H A Dsctp_cc_functions.c1321 net->cc_mod.rtcc.bw_bytes += tp1->send_size; in sctp_cwnd_update_rtcc_tsn_acknowledged()
H A Dsctp_usrreq.c134 if (((uint32_t)chk->send_size + overhead) > mtu) { in sctp_pathmtu_adjustment()
139 if (((uint32_t)chk->send_size + overhead) > mtu) { in sctp_pathmtu_adjustment()
/freebsd/contrib/llvm-project/lldb/source/Plugins/Process/gdb-remote/
H A DGDBRemoteCommunicationClient.cpp2409 uint32_t bytes_left = send_size; in MakeSpeedTestPacket()
2456 uint32_t send_size; in TestPacketSpeed() local
2459 for (send_size = 0; send_size <= max_send; in TestPacketSpeed()
2460 send_size ? send_size *= 2 : send_size = 4) { in TestPacketSpeed()
2463 MakeSpeedTestPacket(packet, send_size, recv_size); in TestPacketSpeed()
2488 result_idx > 0 ? "," : "", send_size, recv_size, in TestPacketSpeed()
2495 send_size, recv_size, duration<float>(total_time), in TestPacketSpeed()
2513 send_size = 0; in TestPacketSpeed()
2516 MakeSpeedTestPacket(packet, send_size, recv_size); in TestPacketSpeed()
2544 result_idx > 0 ? "," : "", send_size, recv_size, in TestPacketSpeed()
[all …]
H A DGDBRemoteCommunicationClient.h297 bool SendSpeedTestPacket(uint32_t send_size, uint32_t recv_size);
/freebsd/sys/dev/qlnx/qlnxr/
H A Dqlnxr_cm.c491 int send_size = 0; in qlnxr_gsi_build_header() local
501 send_size = 0; in qlnxr_gsi_build_header()
503 send_size += swr->sg_list[i].length; in qlnxr_gsi_build_header()
513 rc = ib_ud_header_init(send_size, false /* LRH */, true /* ETH */, in qlnxr_gsi_build_header()
/freebsd/sys/dev/mlx4/mlx4_ib/
H A Dmlx4_ib_qp.c2308 int send_size; in build_sriov_qp0_header() local
2316 send_size = 0; in build_sriov_qp0_header()
2319 send_size += wr->wr.sg_list[i].length; in build_sriov_qp0_header()
2324 send_size += sizeof (struct mlx4_ib_tunnel_header); in build_sriov_qp0_header()
2326 ib_ud_header_init(send_size, 1, 0, 0, 0, 0, 0, 0, &sqp->ud_header); in build_sriov_qp0_header()
2437 int send_size; in build_mlx_header() local
2449 send_size = 0; in build_mlx_header()
2451 send_size += wr->wr.sg_list[i].length; in build_mlx_header()
2496 err = ib_ud_header_init(send_size, !is_eth, is_eth, is_vlan, is_grh, in build_mlx_header()
/freebsd/sys/ofed/drivers/infiniband/ulp/sdp/
H A Dsdp_tx.c80 SDPSTATS_HIST(send_size, mb->len); in sdp_post_send()
H A Dsdp_proc.c271 __sdpstats_seq_hist(seq, "send_size", send_size, 1); in sdpstats_seq_show()
/freebsd/contrib/ofed/librdmacm/
H A Dcma.c1226 static int ucma_create_cqs(struct rdma_cm_id *id, uint32_t send_size, uint32_t recv_size) in ucma_create_cqs() argument
1239 if (send_size) { in ucma_create_cqs()
1244 id->send_cq = ibv_create_cq(id->verbs, send_size, in ucma_create_cqs()