Searched refs:noop_qdisc (Results 1 – 16 of 16) sorted by relevance
/Linux-v6.6/net/sched/ |
D | sch_generic.c | 650 RCU_POINTER_INITIALIZER(qdisc, &noop_qdisc), 651 RCU_POINTER_INITIALIZER(qdisc_sleeping, &noop_qdisc), 654 struct Qdisc noop_qdisc = { variable 659 .q.lock = __SPIN_LOCK_UNLOCKED(noop_qdisc.q.lock), 661 .busylock = __SPIN_LOCK_UNLOCKED(noop_qdisc.busylock), 663 .next = (struct sk_buff *)&noop_qdisc.gso_skb, 664 .prev = (struct sk_buff *)&noop_qdisc.gso_skb, 666 .lock = __SPIN_LOCK_UNLOCKED(noop_qdisc.gso_skb.lock), 669 .next = (struct sk_buff *)&noop_qdisc.skb_bad_txq, 670 .prev = (struct sk_buff *)&noop_qdisc.skb_bad_txq, [all …]
|
D | sch_multiq.c | 196 if (q->queues[i] != &noop_qdisc) { in multiq_tune() 199 q->queues[i] = &noop_qdisc; in multiq_tune() 212 if (q->queues[i] == &noop_qdisc) { in multiq_tune() 222 if (child != &noop_qdisc) in multiq_tune() 225 if (old != &noop_qdisc) in multiq_tune() 256 q->queues[i] = &noop_qdisc; in multiq_init() 287 new = &noop_qdisc; in multiq_graft()
|
D | sch_tbf.c | 431 if (q->qdisc != &noop_qdisc) { in tbf_change() 484 q->qdisc = &noop_qdisc; in tbf_init() 562 new = &noop_qdisc; in tbf_graft()
|
D | sch_sfb.c | 520 if (child != &noop_qdisc) in sfb_change() 563 q->qdisc = &noop_qdisc; in sfb_init() 625 new = &noop_qdisc; in sfb_graft()
|
D | sch_prio.c | 218 if (q->queues[i] != &noop_qdisc) in prio_tune() 297 new = &noop_qdisc; in prio_graft()
|
D | sch_drr.c | 114 cl->qdisc = &noop_qdisc; in drr_change_class() 214 new = &noop_qdisc; in drr_graft_class()
|
D | sch_red.c | 342 q->qdisc = &noop_qdisc; in red_init() 502 new = &noop_qdisc; in red_graft()
|
D | sch_ets.c | 257 new = &noop_qdisc; in ets_class_graft() 669 if (q->classes[i].qdisc != &noop_qdisc) in ets_qdisc_change()
|
D | sch_qfq.c | 484 cl->qdisc = &noop_qdisc; in qfq_change_class() 496 if (cl->qdisc != &noop_qdisc) in qfq_change_class() 606 new = &noop_qdisc; in qfq_graft_class()
|
D | sch_hfsc.c | 1064 cl->qdisc = &noop_qdisc; in hfsc_change_class() 1196 new = &noop_qdisc; in hfsc_graft_class() 1422 q->root.qdisc = &noop_qdisc; in hfsc_init_qdisc()
|
D | sch_teql.c | 264 if (rcu_access_pointer(txq->qdisc) == &noop_qdisc) in teql_resolve()
|
D | sch_cbs.c | 501 new = &noop_qdisc; in cbs_graft()
|
D | sch_htb.c | 1525 parent->leaf.q = new_q ? new_q : &noop_qdisc; in htb_parent_to_leaf() 1980 cl->leaf.q = new_q ? new_q : &noop_qdisc; in htb_change_class() 1997 if (cl->leaf.q != &noop_qdisc) in htb_change_class()
|
D | sch_api.c | 865 if (!err || !new || new == &noop_qdisc) in qdisc_offload_graft_helper() 1142 rcu_assign_pointer(dev->qdisc, new ? : &noop_qdisc); in qdisc_graft()
|
/Linux-v6.6/include/net/ |
D | sch_generic.h | 587 extern struct Qdisc noop_qdisc; 806 if (rcu_access_pointer(txq->qdisc) != &noop_qdisc) in qdisc_tx_is_noop()
|
/Linux-v6.6/net/core/ |
D | dev.c | 10625 RCU_INIT_POINTER(queue->qdisc, &noop_qdisc); in dev_ingress_queue_create() 10626 RCU_INIT_POINTER(queue->qdisc_sleeping, &noop_qdisc); in dev_ingress_queue_create()
|