Lines Matching defs:limit
91 if (unlikely(qdisc_qlen(sch) >= sch->limit)) {
168 u32 limit = nla_get_u32(tb[TCA_PIE_LIMIT]);
170 q->params.limit = limit;
171 sch->limit = limit;
190 /* Drop excess packets if new limit is lower */
192 while (sch->q.qlen > sch->limit) {
445 sch->limit = q->params.limit;
474 nla_put_u32(skb, TCA_PIE_LIMIT, sch->limit) ||