Home | History | Annotate | Download | only in tc

Lines Matching refs:limit

56 	fprintf(stderr, "Usage: ... codel [ limit PACKETS ] [ target TIME]\n");
64 unsigned limit = 0;
72 if (strcmp(*argv, "limit") == 0) {
74 if (get_unsigned(&limit, *argv, 0)) {
75 fprintf(stderr, "Illegal \"limit\"\n");
113 if (limit)
114 addattr_l(n, 1024, TCA_CODEL_LIMIT, &limit, sizeof(limit));
132 unsigned limit;
146 limit = rta_getattr_u32(tb[TCA_CODEL_LIMIT]);
147 fprintf(f, "limit %up ", limit);