Home
last modified time | relevance | path

Searched refs:qops (Results 1 – 4 of 4) sorted by relevance

/linux/net/sched/
H A Dsch_teql.c53 struct Qdisc_ops qops; member
442 struct Qdisc_ops *ops = &master->qops; in teql_master_setup()
494 strscpy(master->qops.id, dev->name, IFNAMSIZ); in teql_init()
495 err = register_qdisc(&master->qops); in teql_init()
516 unregister_qdisc(&master->qops); in teql_exit()
H A Dsch_api.c131 int register_qdisc(struct Qdisc_ops *qops) in register_qdisc() argument
138 if (!strcmp(qops->id, q->id)) in register_qdisc()
141 if (qops->enqueue == NULL) in register_qdisc()
142 qops->enqueue = noop_qdisc_ops.enqueue; in register_qdisc()
143 if (qops->peek == NULL) { in register_qdisc()
144 if (qops->dequeue == NULL) in register_qdisc()
145 qops->peek = noop_qdisc_ops.peek; in register_qdisc()
149 if (qops->dequeue == NULL) in register_qdisc()
150 qops->dequeue = noop_qdisc_ops.dequeue; in register_qdisc()
152 if (qops->cl_ops) { in register_qdisc()
[all …]
/linux/include/net/
H A Dpkt_sched.h101 int register_qdisc(struct Qdisc_ops *qops);
102 void unregister_qdisc(struct Qdisc_ops *qops);
/linux/drivers/media/platform/mediatek/jpeg/
H A Dmtk_jpeg_core.h71 const struct vb2_ops *qops; member