Searched refs:noop_qdisc (Results 1 – 19 of 19) sorted by relevance
/Linux-v5.10/net/sched/ |
D | sch_generic.c | 545 RCU_POINTER_INITIALIZER(qdisc, &noop_qdisc), 546 .qdisc_sleeping = &noop_qdisc, 549 struct Qdisc noop_qdisc = { variable 554 .q.lock = __SPIN_LOCK_UNLOCKED(noop_qdisc.q.lock), 556 .running = SEQCNT_ZERO(noop_qdisc.running), 557 .busylock = __SPIN_LOCK_UNLOCKED(noop_qdisc.busylock), 559 .next = (struct sk_buff *)&noop_qdisc.gso_skb, 560 .prev = (struct sk_buff *)&noop_qdisc.gso_skb, 562 .lock = __SPIN_LOCK_UNLOCKED(noop_qdisc.gso_skb.lock), 565 .next = (struct sk_buff *)&noop_qdisc.skb_bad_txq, [all …]
|
D | sch_multiq.c | 197 if (q->queues[i] != &noop_qdisc) { in multiq_tune() 200 q->queues[i] = &noop_qdisc; in multiq_tune() 213 if (q->queues[i] == &noop_qdisc) { in multiq_tune() 223 if (child != &noop_qdisc) in multiq_tune() 226 if (old != &noop_qdisc) in multiq_tune() 257 q->queues[i] = &noop_qdisc; in multiq_init() 288 new = &noop_qdisc; in multiq_graft()
|
D | sch_tbf.c | 417 if (q->qdisc != &noop_qdisc) { in tbf_change() 469 q->qdisc = &noop_qdisc; in tbf_init() 547 new = &noop_qdisc; in tbf_graft()
|
D | sch_atm.c | 97 new = &noop_qdisc; in atm_tc_graft() 298 flow->q = &noop_qdisc; in atm_tc_change() 554 p->link.q = &noop_qdisc; in atm_tc_init()
|
D | sch_sfb.c | 518 if (child != &noop_qdisc) in sfb_change() 561 q->qdisc = &noop_qdisc; in sfb_init() 623 new = &noop_qdisc; in sfb_graft()
|
D | sch_prio.c | 220 if (q->queues[i] != &noop_qdisc) in prio_tune() 299 new = &noop_qdisc; in prio_graft()
|
D | sch_drr.c | 115 cl->qdisc = &noop_qdisc; in drr_change_class() 214 new = &noop_qdisc; in drr_graft_class()
|
D | sch_dsmark.c | 77 new = &noop_qdisc; in dsmark_graft() 393 p->q = &noop_qdisc; in dsmark_init()
|
D | sch_red.c | 336 q->qdisc = &noop_qdisc; in red_init() 500 new = &noop_qdisc; in red_graft()
|
D | sch_ets.c | 257 new = &noop_qdisc; in ets_class_graft() 674 if (q->classes[i].qdisc != &noop_qdisc) in ets_qdisc_change()
|
D | sch_qfq.c | 474 cl->qdisc = &noop_qdisc; in qfq_change_class() 486 if (cl->qdisc != &noop_qdisc) in qfq_change_class() 595 new = &noop_qdisc; in qfq_graft_class()
|
D | sch_hfsc.c | 1059 cl->qdisc = &noop_qdisc; in hfsc_change_class() 1181 new = &noop_qdisc; in hfsc_graft_class() 1413 q->root.qdisc = &noop_qdisc; in hfsc_init_qdisc()
|
D | sch_htb.c | 1200 parent->leaf.q = new_q ? new_q : &noop_qdisc; in htb_parent_to_leaf() 1419 cl->leaf.q = new_q ? new_q : &noop_qdisc; in htb_change_class() 1435 if (cl->leaf.q != &noop_qdisc) in htb_change_class()
|
D | sch_teql.c | 262 if (rcu_access_pointer(txq->qdisc) == &noop_qdisc) in teql_resolve()
|
D | sch_cbs.c | 500 new = &noop_qdisc; in cbs_graft()
|
D | sch_cbq.c | 1198 q->link.q = &noop_qdisc; in cbq_init() 1638 cl->q = &noop_qdisc; in cbq_change_class()
|
D | sch_api.c | 847 if (!err || !new || new == &noop_qdisc) in qdisc_offload_graft_helper() 1081 dev->qdisc = new ? : &noop_qdisc; in qdisc_graft()
|
/Linux-v5.10/include/net/ |
D | sch_generic.h | 576 extern struct Qdisc noop_qdisc; 761 if (rcu_access_pointer(txq->qdisc) != &noop_qdisc) in qdisc_tx_is_noop()
|
/Linux-v5.10/net/core/ |
D | dev.c | 10394 RCU_INIT_POINTER(queue->qdisc, &noop_qdisc); in dev_ingress_queue_create() 10395 queue->qdisc_sleeping = &noop_qdisc; in dev_ingress_queue_create()
|