Home | History | Annotate | Download | only in tc

Lines Matching refs:limit

41 	fprintf(stderr, "           default DEFAULT_VQ [ grio ] [ limit BYTES ]\n");
42 fprintf(stderr, " tc qdisc change ... gred vq VQ [ prio VALUE ] limit BYTES\n");
53 __u32 limit = 0;
87 } else if (strcmp(*argv, "limit") == 0) {
89 if (get_size(&limit, *argv)) {
90 fprintf(stderr, "Illegal \"limit\"\n");
114 if (limit)
115 addattr32(n, 1024, TCA_GRED_LIMIT, limit);
138 if (strcmp(*argv, "limit") == 0) {
140 if (get_size(&opt.limit, *argv)) {
141 fprintf(stderr, "Illegal \"limit\"\n");
225 if (opt.DP == MAX_DPs || !opt.limit || !opt.qth_min || !opt.qth_max ||
227 fprintf(stderr, "Required parameter (vq, limit, min, max, "
276 __u32 *limit = NULL;
296 limit = RTA_DATA(tb[TCA_GRED_LIMIT]);
313 if (limit)
314 fprintf(f, "limit %s ",
315 sprint_size(*limit, b1));
319 fprintf(f, "\n vq %u prio %hhu limit %s min %s max %s ",
322 sprint_size(qopt->limit, b1),