Lines Matching +full:queue +full:- +full:sizes
19 #include <sys/queue.h>
25 #define D(fmt, args...) fprintf(stderr, "%-10s %4d %-8s " fmt "\n", \
31 #define offsetof(t,m) (int)(intptr_t)((&((t *)0L)->m))
64 * from the command line: id, target scheduler, queue sizes, plr,
65 * flow masks, buckets for the flow hash, and possibly scheduler-
69 /* generic scheduler parameters. Leave them at -1 if unset.
86 * when generating, let 'cur' go from 0 to n_flows-1,
108 uint32_t length; /* Queue length, in packets */
109 uint32_t len_bytes; /* Queue length, in bytes */
170 if (q->head == NULL) in mq_append()
171 q->head = m; in mq_append()
173 q->tail->m_nextpkt = m; in mq_append()
174 q->tail = m; in mq_append()
175 m->m_nextpkt = NULL; in mq_append()