Searched refs:noop_qdisc (Results 1 – 20 of 20) sorted by relevance
/net/sched/ |
D | sch_generic.c | 598 RCU_POINTER_INITIALIZER(qdisc, &noop_qdisc), 599 .qdisc_sleeping = &noop_qdisc, 602 struct Qdisc noop_qdisc = { variable 607 .q.lock = __SPIN_LOCK_UNLOCKED(noop_qdisc.q.lock), 609 .running = SEQCNT_ZERO(noop_qdisc.running), 610 .busylock = __SPIN_LOCK_UNLOCKED(noop_qdisc.busylock), 612 .next = (struct sk_buff *)&noop_qdisc.gso_skb, 613 .prev = (struct sk_buff *)&noop_qdisc.gso_skb, 615 .lock = __SPIN_LOCK_UNLOCKED(noop_qdisc.gso_skb.lock), 618 .next = (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 | 416 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_mq.c | 140 if (qdisc != &noop_qdisc && !qdisc->handle) in mq_change_real_num_tx() 145 if (qdisc != &noop_qdisc && !qdisc->handle) in mq_change_real_num_tx()
|
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_atm.c | 97 new = &noop_qdisc; in atm_tc_graft() 298 flow->q = &noop_qdisc; in atm_tc_change() 558 p->link.q = &noop_qdisc; in atm_tc_init()
|
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 | 115 cl->qdisc = &noop_qdisc; in drr_change_class() 215 new = &noop_qdisc; in drr_graft_class()
|
D | sch_dsmark.c | 77 new = &noop_qdisc; in dsmark_graft() 394 p->q = &noop_qdisc; in dsmark_init()
|
D | sch_red.c | 339 q->qdisc = &noop_qdisc; in red_init() 503 new = &noop_qdisc; in red_graft()
|
D | sch_mqprio.c | 363 if (qdisc != &noop_qdisc && !qdisc->handle) in mqprio_change_real_num_tx() 368 if (qdisc != &noop_qdisc && !qdisc->handle) in mqprio_change_real_num_tx()
|
D | sch_ets.c | 257 new = &noop_qdisc; in ets_class_graft() 683 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() 604 new = &noop_qdisc; in qfq_graft_class()
|
D | sch_hfsc.c | 1071 cl->qdisc = &noop_qdisc; in hfsc_change_class() 1200 new = &noop_qdisc; in hfsc_graft_class() 1432 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 | 1535 parent->leaf.q = new_q ? new_q : &noop_qdisc; in htb_parent_to_leaf() 1988 cl->leaf.q = new_q ? new_q : &noop_qdisc; in htb_change_class() 2005 if (cl->leaf.q != &noop_qdisc) in htb_change_class()
|
D | sch_cbq.c | 1197 q->link.q = &noop_qdisc; in cbq_init() 1637 cl->q = &noop_qdisc; in cbq_change_class()
|
D | sch_api.c | 854 if (!err || !new || new == &noop_qdisc) in qdisc_offload_graft_helper() 1087 rcu_assign_pointer(dev->qdisc, new ? : &noop_qdisc); in qdisc_graft()
|
/net/core/ |
D | dev.c | 10788 RCU_INIT_POINTER(queue->qdisc, &noop_qdisc); in dev_ingress_queue_create() 10789 queue->qdisc_sleeping = &noop_qdisc; in dev_ingress_queue_create()
|