Searched refs:burst (Results 1 - 25 of 28) sorted by relevance

12

/asus-wl-520gu-7.0.1.45/src/router/iproute2/reference/linux/netfilter_ipv4/
H A Dipt_limit.h11 u_int32_t burst; /* Period multiplier for upper limit. */ member in struct:ipt_rateinfo
/asus-wl-520gu-7.0.1.45/src/router/iproute2/reference/linux/netfilter_ipv6/
H A Dip6t_limit.h11 u_int32_t burst; /* Period multiplier for upper limit. */ member in struct:ip6t_rateinfo
/asus-wl-520gu-7.0.1.45/src/router/iproute2/tc/
H A Dtc_red.h5 extern int tc_red_eval_ewma(unsigned qmin, unsigned burst, unsigned avpkt);
H A Dtc_red.c50 burst + 1 - qmin/avpkt < (1-(1-W)^burst)/W
53 int tc_red_eval_ewma(unsigned qmin, unsigned burst, unsigned avpkt) argument
57 double a = (double)burst + 1 - (double)qmin/avpkt;
62 if (a <= (1 - pow(1-W, burst))/W)
H A Dq_red.c30 fprintf(stderr, "Usage: ... red limit BYTES min BYTES max BYTES avpkt BYTES burst PACKETS\n");
40 unsigned burst = 0; local
73 } else if (strcmp(*argv, "burst") == 0) {
75 if (get_unsigned(&burst, *argv, 0)) {
76 fprintf(stderr, "Illegal \"burst\"\n");
121 if (!opt.qth_min || !opt.qth_max || !burst || !opt.limit || !avpkt) {
122 fprintf(stderr, "Required parameter (min, max, burst, limit, avpket) is missing\n");
126 if ((wlog = tc_red_eval_ewma(opt.qth_min, burst, avpkt)) < 0) {
131 fprintf(stderr, "RED: WARNING. Burst %d seems to be to large.\n", burst);
H A Dq_gred.c41 fprintf(stderr, " avpkt BYTES burst PACKETS probability PROBABILITY "
123 unsigned burst = 0; local
177 } else if (strcmp(*argv, "burst") == 0) {
179 if (get_unsigned(&burst, *argv, 0)) {
180 fprintf(stderr, "Illegal \"burst\"\n");
227 if (!opt.qth_min || !opt.qth_max || !burst || !opt.limit || !avpkt ||
229 fprintf(stderr, "Required parameter (min, max, burst, limit, "
234 if ((wlog = tc_red_eval_ewma(opt.qth_min, burst, avpkt)) < 0) {
240 "large.\n", burst);
H A Dm_police.c29 fprintf(stderr, "Usage: ... police rate BPS burst BYTES[/BYTES] [ mtu BYTES[/BYTES] ]\n");
138 } else if (matches(*argv, "burst") == 0 ||
143 fprintf(stderr, "Double \"buffer/burst\" spec\n");
230 fprintf(stderr, "\"burst\" requires \"rate\".\n");
249 p.burst = tc_calc_xmittime(p.rate.rate, buffer);
316 buffer = ((double)p->rate.rate*tc_core_tick2usec(p->burst))/1000000;
317 fprintf(f, "burst %s ", sprint_size(buffer, b1));
320 fprintf(f, "[%08x] ", p->burst);
/asus-wl-520gu-7.0.1.45/src/linux/linux/include/linux/netfilter_ipv4/
H A Dipt_limit.h11 u_int32_t burst; /* Period multiplier for upper limit. */ member in struct:ipt_rateinfo
/asus-wl-520gu-7.0.1.45/src/linux/linux/include/linux/netfilter_ipv6/
H A Dip6t_limit.h11 u_int32_t burst; /* Period multiplier for upper limit. */ member in struct:ip6t_rateinfo
/asus-wl-520gu-7.0.1.45/src/linux/linux/net/ipv4/netfilter/
H A Dipt_limit.c98 if (r->burst == 0
99 || user2credits(r->avg * r->burst) < user2credits(r->avg)) {
101 r->avg, r->burst);
108 r->credit = user2credits(r->avg * r->burst); /* Credits full. */
109 r->credit_cap = user2credits(r->avg * r->burst); /* Credits full. */
/asus-wl-520gu-7.0.1.45/src/linux/linux/net/ipv4/netfilter.noQoS/
H A Dipt_limit.c98 if (r->burst == 0
99 || user2credits(r->avg * r->burst) < user2credits(r->avg)) {
101 r->avg, r->burst);
108 r->credit = user2credits(r->avg * r->burst); /* Credits full. */
109 r->credit_cap = user2credits(r->avg * r->burst); /* Credits full. */
/asus-wl-520gu-7.0.1.45/src/linux/linux/net/ipv6/netfilter/
H A Dip6t_limit.c98 if (r->burst == 0
99 || user2credits(r->avg * r->burst) < user2credits(r->avg)) {
101 r->avg, r->burst);
108 r->credit = user2credits(r->avg * r->burst); /* Credits full. */
109 r->credit_cap = user2credits(r->avg * r->burst); /* Credits full. */
/asus-wl-520gu-7.0.1.45/src/router/iptables/extensions/
H A Dlibip6t_limit.c28 "--limit-burst number number to match in a burst, default %u\n"
34 { "limit-burst", 1, 0, '$' },
81 r->burst = IP6T_LIMIT_BURST;
112 "Unexpected `!' after --limit-burst");
116 "bad --limit-burst `%s'", optarg);
117 r->burst = num;
162 printf("burst %u ", r->burst);
170 if (r->burst !
[all...]
H A Dlibipt_limit.c28 "--limit-burst number number to match in a burst, default %u\n"
34 { "limit-burst", 1, 0, '$' },
81 r->burst = IPT_LIMIT_BURST;
112 "Unexpected `!' after --limit-burst");
116 "bad --limit-burst `%s'", optarg);
117 r->burst = num;
162 printf("burst %u ", r->burst);
170 if (r->burst !
[all...]
/asus-wl-520gu-7.0.1.45/src/linux/linux/drivers/net/sk98lin/h/
H A Dskgei2c.h122 #define SK_I2C_CTL(IoC,flag,dev,reg,burst) \
127 (( burst << 4) & I2C_BURST_LEN) )
/asus-wl-520gu-7.0.1.45/src/router/iproute2/examples/
H A DSYN-DoS.rate.limit36 police rate 1kbit burst 40 mtu 9k drop flowid :1
/asus-wl-520gu-7.0.1.45/src/linux/linux/net/sched/
H A Dpolice.c138 p->toks = p->burst = parm->burst;
195 toks = PSCHED_TDIFF_SAFE(now, p->t_c, p->burst, 0);
204 if (toks > (long)p->burst)
205 toks = p->burst;
230 opt.burst = p->burst;
/asus-wl-520gu-7.0.1.45/src/router/iproute2/reference/linux/
H A Dpkt_cls.h14 __u32 burst; member in struct:tc_police
/asus-wl-520gu-7.0.1.45/src/linux/linux/include/linux/
H A Dpkt_cls.h14 __u32 burst; member in struct:tc_police
/asus-wl-520gu-7.0.1.45/src/router/iproute2/examples/diffserv/
H A DEdge238 # Allow up to at least 60 packets to burst (assuming maximum packet
44 police rate 1500kbit burst 90k mtu 9k drop flowid :1
/asus-wl-520gu-7.0.1.45/src/linux/linux/drivers/net/
H A Dmyri_sbus.h258 u32 burst; /* SBUS dma burst enable. */ member in struct:myri_shmem
/asus-wl-520gu-7.0.1.45/src/linux/linux/drivers/video/riva/
H A Driva_hw.c598 unsigned *burst,
627 *burst = 0;
628 while (b >>= 1) (*burst)++;
634 *burst = 0x2;
785 unsigned *burst,
816 *burst = 0;
817 while (b >>= 1) (*burst)++;
902 mclks+=4; /* Mp can get in with a burst of 8. */
968 // based off the total burst fetch
1016 cbs = cbs/2; /* reduce the burst siz
594 nv3UpdateArbitrationSettings( unsigned VClk, unsigned pixelDepth, unsigned *burst, unsigned *lwm, RIVA_HW_INST *chip ) argument
781 nv4UpdateArbitrationSettings( unsigned VClk, unsigned pixelDepth, unsigned *burst, unsigned *lwm, RIVA_HW_INST *chip ) argument
1042 nv10UpdateArbitrationSettings( unsigned VClk, unsigned pixelDepth, unsigned *burst, unsigned *lwm, RIVA_HW_INST *chip ) argument
[all...]
/asus-wl-520gu-7.0.1.45/src/router/iproute2/reference/net/
H A Dpkt_sched.h386 u32 burst; member in struct:tcf_police
/asus-wl-520gu-7.0.1.45/src/linux/linux/include/net/
H A Dpkt_sched.h386 u32 burst; member in struct:tcf_police
/asus-wl-520gu-7.0.1.45/src/router/iproute2/doc/
H A Dip-tunnels.tex436 rate 128Kbit burst 4K limit 10K
438 will limit tunneled traffic to 128Kbit with maximal burst size of 4K

Completed in 137 milliseconds

12