Searched refs:Qdisc_ops (Results 1 – 25 of 40) sorted by relevance
12
/kernel/linux/linux-5.10/include/net/ |
D | pkt_sched.h | 94 extern struct Qdisc_ops pfifo_qdisc_ops; 95 extern struct Qdisc_ops bfifo_qdisc_ops; 96 extern struct Qdisc_ops pfifo_head_drop_qdisc_ops; 99 struct Qdisc *fifo_create_dflt(struct Qdisc *sch, struct Qdisc_ops *ops, 103 int register_qdisc(struct Qdisc_ops *qops); 104 int unregister_qdisc(struct Qdisc_ops *qops);
|
D | sch_generic.h | 23 struct Qdisc_ops; 84 const struct Qdisc_ops *ops; 269 struct Qdisc_ops { struct 270 struct Qdisc_ops *next; argument 610 extern struct Qdisc_ops noop_qdisc_ops; 611 extern struct Qdisc_ops pfifo_fast_ops; 612 extern struct Qdisc_ops mq_qdisc_ops; 613 extern struct Qdisc_ops noqueue_qdisc_ops; 614 extern const struct Qdisc_ops *default_qdisc_ops; 615 static inline const struct Qdisc_ops * [all …]
|
/kernel/linux/linux-5.10/net/sched/ |
D | sch_fifo.c | 183 struct Qdisc_ops pfifo_qdisc_ops __read_mostly = { 198 struct Qdisc_ops bfifo_qdisc_ops __read_mostly = { 213 struct Qdisc_ops pfifo_head_drop_qdisc_ops __read_mostly = { 252 struct Qdisc *fifo_create_dflt(struct Qdisc *sch, struct Qdisc_ops *ops, in fifo_create_dflt()
|
D | sch_generic.c | 35 const struct Qdisc_ops *default_qdisc_ops = &pfifo_fast_ops; 560 struct Qdisc_ops noop_qdisc_ops __read_mostly = { 608 struct Qdisc_ops noqueue_qdisc_ops __read_mostly = { 826 struct Qdisc_ops pfifo_fast_ops __read_mostly = { 846 const struct Qdisc_ops *ops, in qdisc_alloc() 913 const struct Qdisc_ops *ops, in qdisc_create_dflt() 945 const struct Qdisc_ops *ops = qdisc->ops; in qdisc_reset() 987 const struct Qdisc_ops *ops = qdisc->ops; in qdisc_destroy() 1080 const struct Qdisc_ops *ops = default_qdisc_ops; in attach_one_default_qdisc() 1318 const struct Qdisc_ops *ops = qdisc->ops; in qdisc_change_tx_queue_len()
|
D | sch_blackhole.c | 28 static struct Qdisc_ops blackhole_qdisc_ops __read_mostly = {
|
D | sch_ingress.c | 133 static struct Qdisc_ops ingress_qdisc_ops __read_mostly = { 268 static struct Qdisc_ops clsact_qdisc_ops __read_mostly = {
|
D | sch_api.c | 126 static struct Qdisc_ops *qdisc_base; 130 int register_qdisc(struct Qdisc_ops *qops) in register_qdisc() 132 struct Qdisc_ops *q, **qp; in register_qdisc() 174 int unregister_qdisc(struct Qdisc_ops *qops) in unregister_qdisc() 176 struct Qdisc_ops *q, **qp; in unregister_qdisc() 201 static struct Qdisc_ops *qdisc_lookup_default(const char *name) in qdisc_lookup_default() 203 struct Qdisc_ops *q = NULL; in qdisc_lookup_default() 219 const struct Qdisc_ops *ops; in qdisc_set_default() 350 static struct Qdisc_ops *qdisc_lookup_ops(struct nlattr *kind) in qdisc_lookup_ops() 352 struct Qdisc_ops *q = NULL; in qdisc_lookup_ops() [all …]
|
D | sch_plug.c | 208 static struct Qdisc_ops plug_qdisc_ops __read_mostly = {
|
D | sch_teql.c | 53 struct Qdisc_ops qops; 442 struct Qdisc_ops *ops = &master->qops; in teql_master_setup()
|
D | sch_codel.c | 279 static struct Qdisc_ops codel_qdisc_ops __read_mostly = {
|
D | sch_skbprio.c | 288 static struct Qdisc_ops skbprio_qdisc_ops __read_mostly = {
|
D | sch_mq.c | 307 struct Qdisc_ops mq_qdisc_ops __read_mostly = {
|
D | sch_multiq.c | 391 static struct Qdisc_ops multiq_qdisc_ops __read_mostly = {
|
D | sch_prio.c | 413 static struct Qdisc_ops prio_qdisc_ops __read_mostly = {
|
D | sch_etf.c | 494 static struct Qdisc_ops etf_qdisc_ops __read_mostly = {
|
D | sch_cbs.c | 540 static struct Qdisc_ops cbs_qdisc_ops __read_mostly = {
|
D | sch_dsmark.c | 492 static struct Qdisc_ops dsmark_qdisc_ops __read_mostly = {
|
D | sch_pie.c | 545 static struct Qdisc_ops pie_qdisc_ops __read_mostly = {
|
D | sch_choke.c | 488 static struct Qdisc_ops choke_qdisc_ops __read_mostly = {
|
D | sch_drr.c | 480 static struct Qdisc_ops drr_qdisc_ops __read_mostly = {
|
D | sch_fq_pie.c | 536 static struct Qdisc_ops fq_pie_qdisc_ops __read_mostly = {
|
D | sch_tbf.c | 584 static struct Qdisc_ops tbf_qdisc_ops __read_mostly = {
|
D | sch_hhf.c | 693 static struct Qdisc_ops hhf_qdisc_ops __read_mostly = {
|
D | sch_red.c | 542 static struct Qdisc_ops red_qdisc_ops __read_mostly = {
|
/kernel/linux/linux-5.10/include/trace/events/ |
D | qdisc.h | 101 TP_PROTO(const struct Qdisc_ops *ops, struct net_device *dev, u32 parent),
|
12