Home
last modified time | relevance | path

Searched refs:wtab (Results 1 – 3 of 3) sorted by relevance

/mirbsd/src/sys/altq/
Daltq_red.h63 struct wtab { struct
64 struct wtab *w_next; argument
93 struct wtab *red_wtab; /* weight table */
118 extern struct wtab *wtab_alloc(int);
119 extern int wtab_destroy(struct wtab *);
120 extern int32_t pow_w(struct wtab *, int);
Daltq_red.c541 static struct wtab *wtab_list = NULL; /* pointer to wtab list */
543 struct wtab *
546 struct wtab *w; in wtab_alloc()
555 MALLOC(w, struct wtab *, sizeof(struct wtab), M_DEVBUF, M_WAITOK); in wtab_alloc()
558 bzero(w, sizeof(struct wtab)); in wtab_alloc()
576 wtab_destroy(struct wtab *w) in wtab_destroy()
578 struct wtab *prev; in wtab_destroy()
596 pow_w(struct wtab *w, int n) in pow_w()
Daltq_rio.h98 struct wtab *rio_wtab; /* weight table */