Lines Matching refs:qops
130 int register_qdisc(struct Qdisc_ops *qops) in register_qdisc() argument
137 if (!strcmp(qops->id, q->id)) in register_qdisc()
140 if (qops->enqueue == NULL) in register_qdisc()
141 qops->enqueue = noop_qdisc_ops.enqueue; in register_qdisc()
142 if (qops->peek == NULL) { in register_qdisc()
143 if (qops->dequeue == NULL) in register_qdisc()
144 qops->peek = noop_qdisc_ops.peek; in register_qdisc()
148 if (qops->dequeue == NULL) in register_qdisc()
149 qops->dequeue = noop_qdisc_ops.dequeue; in register_qdisc()
151 if (qops->cl_ops) { in register_qdisc()
152 const struct Qdisc_class_ops *cops = qops->cl_ops; in register_qdisc()
161 qops->next = NULL; in register_qdisc()
162 *qp = qops; in register_qdisc()
174 void unregister_qdisc(struct Qdisc_ops *qops) in unregister_qdisc() argument
181 if (q == qops) in unregister_qdisc()
190 WARN(err, "unregister qdisc(%s) failed\n", qops->id); in unregister_qdisc()