Searched refs:send_size (Results 1 - 16 of 16) sorted by relevance

/freebsd-12-stable/sys/netinet/
H A Dsctp_output.c7014 asoc->peers_rwnd, data_list[i]->send_size, SCTP_BASE_SYSCTL(sctp_peer_chunk_oh));
7017 (uint32_t)(data_list[i]->send_size + SCTP_BASE_SYSCTL(sctp_peer_chunk_oh)));
7492 chk->book_size = chk->send_size = (uint16_t)(to_move + SCTP_DATA_CHUNK_OVERHEAD(stcb));
7568 asoc->out_tsnlog[asoc->tsn_out_at].sz = chk->send_size;
7582 dchkh->ch.chunk_length = htons(chk->send_size);
7595 ndchkh->ch.chunk_length = htons(chk->send_size);
7597 /* Now advance the chk->send_size by the actual pad needed. */
7598 if (chk->send_size < SCTP_SIZE32(chk->book_size)) {
7603 pads = SCTP_SIZE32(chk->book_size) - chk->send_size;
7609 chk->send_size
[all...]
H A Dsctp_indata.c828 if (asoc->size_on_reasm_queue >= tchk->send_size) {
829 asoc->size_on_reasm_queue -= tchk->send_size;
832 panic("size_on_reasm_queue = %u smaller than chunk length %u", asoc->size_on_reasm_queue, tchk->send_size);
992 chk->send_size = control->length;
1030 asoc->size_on_reasm_queue += chk->send_size;
1050 asoc->size_on_reasm_queue += chk->send_size;
1319 asoc->size_on_reasm_queue -= chk->send_size;
1578 asoc->size_on_reasm_queue += chk->send_size;
1609 asoc->size_on_reasm_queue += chk->send_size;
2182 chk->send_size
[all...]
H A Dsctputil.c433 sctp_clog.x.rwnd.send_size = snd_size;
453 sctp_clog.x.rwnd.send_size = flight_size;
2907 if (chk->send_size > eff_mtu) {
2912 if (chk->send_size > eff_mtu) {
3404 if (chk->send_size >= chkhdr_len) {
3405 payload_len = chk->send_size - chkhdr_len;
3415 (chk->send_size >= chk_len) &&
3416 (chk->send_size - chk_len < 4)) {
3417 padding_len = chk->send_size - chk_len;
3418 payload_len = chk->send_size
[all...]
H A Dsctp_pcb.c6896 KASSERT(chk->send_size > 0, ("chunk has zero length"));
6897 if (asoc->size_on_reasm_queue >= chk->send_size) {
6898 asoc->size_on_reasm_queue -= chk->send_size;
6901 panic("size_on_reasm_queue = %u smaller than chunk length %u", asoc->size_on_reasm_queue, chk->send_size);
6956 KASSERT(chk->send_size > 0, ("chunk has zero length"));
6957 if (asoc->size_on_reasm_queue >= chk->send_size) {
6958 asoc->size_on_reasm_queue -= chk->send_size;
6961 panic("size_on_reasm_queue = %u smaller than chunk length %u", asoc->size_on_reasm_queue, chk->send_size);
H A Dsctp_structs.h442 uint16_t send_size; member in struct:sctp_tmit_chunk
H A Dsctp_uio.h831 uint32_t send_size; member in struct:sctp_rwnd_log
H A Dsctp_input.c3444 clen = chk->send_size;
4045 chk->book_size = chk->send_size = sizeof(struct sctp_chunkhdr);
4067 ch->chunk_length = htons(chk->send_size);
4068 SCTP_BUF_LEN(chk->data) = SCTP_SIZE32(chk->send_size);
H A Dsctp_timer.c668 stcb->asoc.peers_rwnd += chk->send_size;
H A Dsctp_cc_functions.c1325 net->cc_mod.rtcc.bw_bytes += tp1->send_size;
H A Dsctp_usrreq.c121 if ((chk->send_size + overhead) > nxtsz) {
126 if ((chk->send_size + overhead) > nxtsz) {
/freebsd-12-stable/contrib/llvm-project/lldb/source/Plugins/Process/gdb-remote/
H A DGDBRemoteCommunicationClient.cpp2308 static void MakeSpeedTestPacket(StreamString &packet, uint32_t send_size,
2312 uint32_t bytes_left = send_size;
2357 uint32_t send_size;
2360 for (send_size = 0; send_size <= max_send;
2361 send_size ? send_size *= 2 : send_size = 4) {
2364 MakeSpeedTestPacket(packet, send_size, recv_size);
2385 strm.Format("{0}\n {{\"send_size\"
[all...]
H A DGDBRemoteCommunicationClient.h317 bool SendSpeedTestPacket(uint32_t send_size, uint32_t recv_size);
/freebsd-12-stable/sys/ofed/drivers/infiniband/ulp/sdp/
H A Dsdp_proc.c271 __sdpstats_seq_hist(seq, "send_size", send_size, 1);
H A Dsdp_tx.c80 SDPSTATS_HIST(send_size, mb->len);
/freebsd-12-stable/sys/dev/mlx4/mlx4_ib/
H A Dmlx4_ib_qp.c2308 int send_size; local
2316 send_size = 0;
2319 send_size += wr->wr.sg_list[i].length;
2324 send_size += sizeof (struct mlx4_ib_tunnel_header);
2326 ib_ud_header_init(send_size, 1, 0, 0, 0, 0, 0, 0, &sqp->ud_header);
2437 int send_size; local
2449 send_size = 0;
2451 send_size += wr->wr.sg_list[i].length;
2496 err = ib_ud_header_init(send_size, !is_eth, is_eth, is_vlan, is_grh,
/freebsd-12-stable/contrib/ofed/librdmacm/
H A Dcma.c1225 static int ucma_create_cqs(struct rdma_cm_id *id, uint32_t send_size, uint32_t recv_size) argument
1238 if (send_size) {
1243 id->send_cq = ibv_create_cq(id->verbs, send_size,

Completed in 190 milliseconds