Lines Matching defs:limit
151 /* Checks whether adding a new packet would exceed memory limit */
156 if (unlikely(qdisc_qlen(sch) >= sch->limit)) {
302 u32 limit = nla_get_u32(tb[TCA_FQ_PIE_LIMIT]);
304 q->p_params.limit = limit;
305 sch->limit = limit;
361 /* Drop excess packets if new limit is lower */
362 while (sch->q.qlen > sch->limit) {
418 sch->limit = 10 * 1024;
419 q->p_params.limit = sch->limit;
474 if (nla_put_u32(skb, TCA_FQ_PIE_LIMIT, sch->limit) ||