Lines Matching refs:limit
20 fprintf(stderr, "Usage: ... hhf [ limit PACKETS ] [ quantum BYTES]\n");
31 unsigned limit = 0;
41 if (strcmp(*argv, "limit") == 0) {
43 if (get_unsigned(&limit, *argv, 0)) {
44 fprintf(stderr, "Illegal \"limit\"\n");
96 if (limit)
97 addattr_l(n, 1024, TCA_HHF_BACKLOG_LIMIT, &limit,
98 sizeof(limit));
123 unsigned limit;
139 limit = rta_getattr_u32(tb[TCA_HHF_BACKLOG_LIMIT]);
140 fprintf(f, "limit %up ", limit);