Home
last modified time | relevance | path

Searched refs:max_burst (Results 1 – 10 of 10) sorted by relevance

/f-stack/freebsd/netpfil/ipfw/
H A Ddn_aqm_pie.c123 value = pie_sysctl.max_burst; in pie_sysctl_target_tupdate_maxb_handler()
138 pie_sysctl.max_burst = value; in pie_sysctl_target_tupdate_maxb_handler()
178 SYSCTL_PROC(_net_inet_ip_dummynet_pie, OID_AUTO, max_burst,
369 pst->burst_allowance = pprms->max_burst; in init_activate_pie()
531 pst->burst_allowance = pprms->max_burst; in aqm_pie_enqueue()
724 pcfg->max_burst = pie_sysctl.max_burst * AQM_TIME_1US; in aqm_pie_config()
726 pcfg->max_burst = ep->par[2]; in aqm_pie_config()
747 pcfg->max_burst = BOUND_VAR(pcfg->max_burst, 0, 10 * AQM_TIME_1S); in aqm_pie_config()
783 ep->par[2] = pcfg->max_burst / AQM_TIME_1US; in aqm_pie_getconfig()
H A Ddn_sched_fq_pie.c195 value = fq_pie_sysctl.pcfg.max_burst; in fqpie_sysctl_target_tupdate_maxb_handler()
210 fq_pie_sysctl.pcfg.max_burst = value; in fqpie_sysctl_target_tupdate_maxb_handler()
253 SYSCTL_PROC(_net_inet_ip_dummynet_fqpie, OID_AUTO, max_burst,
508 pst->burst_allowance = pprms->max_burst; in fq_activate_pie()
723 pst->burst_allowance = pprms->max_burst; in pie_enqueue()
1117 fqp_cfg->pcfg.max_burst = fq_pie_sysctl.pcfg.max_burst; in fq_pie_config()
1119 fqp_cfg->pcfg.max_burst = ep->par[2]; in fq_pie_config()
1156 fqp_cfg->pcfg.max_burst = BOUND_VAR(fqp_cfg->pcfg.max_burst, in fq_pie_config()
1189 ep->par[2] = fqp_cfg->pcfg.max_burst; in fq_pie_getconfig()
H A Ddn_aqm_pie.h64 aqm_time_t max_burst; /* AQM Max Burst Allowance (default: 150ms) */ member
/f-stack/freebsd/netinet/
H A Dsctp_cc_functions.c86 if ((assoc->max_burst > 0) && (cwnd_in_mtu > assoc->max_burst)) in sctp_set_initial_cc_param()
87 cwnd_in_mtu = assoc->max_burst; in sctp_set_initial_cc_param()
1236 if ((stcb->asoc.max_burst > 0) && in sctp_cwnd_update_after_packet_dropped()
1237 (stcb->asoc.max_burst * net->mtu < incr)) { in sctp_cwnd_update_after_packet_dropped()
1238 incr = stcb->asoc.max_burst * net->mtu; in sctp_cwnd_update_after_packet_dropped()
1385 if ((stcb->asoc.max_burst > 0) && (cwnd_in_mtu > stcb->asoc.max_burst)) in sctp_cwnd_new_rtcc_transmission_begins()
1386 cwnd_in_mtu = stcb->asoc.max_burst; in sctp_cwnd_new_rtcc_transmission_begins()
H A Dsctp_pcb.h326 uint32_t max_burst; member
H A Dsctp_structs.h1150 uint32_t max_burst; member
H A Dsctp_output.c10093 if (asoc->max_burst > 0) { in sctp_chunk_output()
10095 if ((net->flight_size + (asoc->max_burst * net->mtu)) < net->cwnd) { in sctp_chunk_output()
10101 asoc->cc_functions.sctp_cwnd_update_after_output(stcb, net, asoc->max_burst); in sctp_chunk_output()
10103 sctp_log_maxburst(stcb, net, 0, asoc->max_burst, SCTP_MAX_BURST_APPLIED); in sctp_chunk_output()
10171 ((asoc->max_burst == 0) || in sctp_chunk_output()
10173 (burst_cnt < asoc->max_burst))); in sctp_chunk_output()
10176 if ((asoc->max_burst > 0) && (burst_cnt >= asoc->max_burst)) { in sctp_chunk_output()
H A Dsctp_usrreq.c2027 av->assoc_value = stcb->asoc.max_burst;
2035 av->assoc_value = inp->sctp_ep.max_burst;
4950 stcb->asoc.max_burst = av->assoc_value;
4959 inp->sctp_ep.max_burst = av->assoc_value;
4968 stcb->asoc.max_burst = av->assoc_value;
H A Dsctputil.c1138 asoc->max_burst = inp->sctp_ep.max_burst; in sctp_init_asoc()
H A Dsctp_pcb.c2552 m->max_burst = SCTP_BASE_SYSCTL(sctp_max_burst_default); in sctp_inpcb_alloc()