Home | History | Annotate | Download | only in altq

Lines Matching refs:Red

72 #ifdef ALTQ_RED	/* red is enabled by ALTQ_RED option in opt_altq.h */
114 * ALTQ/RED (Random Early Detection) implementation using 32-bit
118 * you can learn more about red and ns from Sally's home page at
121 * most of the red parameter values are fixed in this implementation
136 * alternative red parameters for a slow link.
148 /* normal red parameters */
152 /* red parameters for a slow link */
156 /* red parameters for a very slow link (e.g., dialup) */
163 /* red parameters for drop probability */
181 * flow-valve is an extension to protect red from unresponsive flows
199 /* default red parameter values */
218 static struct flowvalve *fv_alloc(struct red *);
228 * red support routines
271 /* when the link is very slow, adjust red parameters */
289 printf("invalid weight value %d for red! use %d\n",
416 /* mark or drop by red */
425 /* unforced drop by red */
726 * red device interface
728 altqdev_decl(red);
833 * set RED to this ifnet structure.
845 /* add this state to the red list */
1249 fv_alloc(struct red *rp)
1364 fve->fve_state = Red;
1367 if (fve->fve_state == Red) {
1402 * called from red_addq when a packet is dropped by red.
1439 {"red", redopen, redclose, redioctl};