mirror of
https://github.com/torvalds/linux.git
synced 2024-11-28 07:01:32 +00:00
pkt_sched: Check .walk and .leaf class handlers
Require qdisc class ops .walk and .leaf for classful qdisc in register_qdisc(). The checks could be done later insted, but these ops are really needed and used by most of classful qdiscs. Signed-off-by: Jarek Poplawski <jarkao2@gmail.com> Signed-off-by: David S. Miller <davem@davemloft.net>
This commit is contained in:
parent
41065fba84
commit
3e9e5a5921
@ -161,7 +161,7 @@ int register_qdisc(struct Qdisc_ops *qops)
|
|||||||
if (qops->cl_ops) {
|
if (qops->cl_ops) {
|
||||||
const struct Qdisc_class_ops *cops = qops->cl_ops;
|
const struct Qdisc_class_ops *cops = qops->cl_ops;
|
||||||
|
|
||||||
if (!(cops->get && cops->put))
|
if (!(cops->get && cops->put && cops->walk && cops->leaf))
|
||||||
goto out_einval;
|
goto out_einval;
|
||||||
|
|
||||||
if (cops->tcf_chain && !(cops->bind_tcf && cops->unbind_tcf))
|
if (cops->tcf_chain && !(cops->bind_tcf && cops->unbind_tcf))
|
||||||
|
Loading…
Reference in New Issue
Block a user