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