Home | History | Annotate | Download | only in route

Lines Matching refs:qops

38  * @arg qops		qdisc module operations
40 int rtnl_qdisc_register(struct rtnl_qdisc_ops *qops)
44 if (!qops->qo_kind[0])
48 if (!strcasecmp(qops->qo_kind, o->qo_kind))
51 qops->qo_next = NULL;
52 *op = qops;
59 * @arg qops qdisc module operations
61 int rtnl_qdisc_unregister(struct rtnl_qdisc_ops *qops)
66 if (!strcasecmp(qops->qo_kind, o->qo_kind))
72 *op = qops->qo_next;
79 struct rtnl_qdisc_ops *qops;
81 for (qops = qdisc_ops_list; qops; qops = qops->qo_next)
82 if (!strcmp(kind, qops->qo_kind))
83 return qops;