diff options
| -rw-r--r-- | net/sched/sch_sfq.c | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/net/sched/sch_sfq.c b/net/sched/sch_sfq.c index e85352b5c88d..534f33231c17 100644 --- a/net/sched/sch_sfq.c +++ b/net/sched/sch_sfq.c | |||
| @@ -513,6 +513,12 @@ static unsigned long sfq_get(struct Qdisc *sch, u32 classid) | |||
| 513 | return 0; | 513 | return 0; |
| 514 | } | 514 | } |
| 515 | 515 | ||
| 516 | static unsigned long sfq_bind(struct Qdisc *sch, unsigned long parent, | ||
| 517 | u32 classid) | ||
| 518 | { | ||
| 519 | return 0; | ||
| 520 | } | ||
| 521 | |||
| 516 | static struct tcf_proto **sfq_find_tcf(struct Qdisc *sch, unsigned long cl) | 522 | static struct tcf_proto **sfq_find_tcf(struct Qdisc *sch, unsigned long cl) |
| 517 | { | 523 | { |
| 518 | struct sfq_sched_data *q = qdisc_priv(sch); | 524 | struct sfq_sched_data *q = qdisc_priv(sch); |
| @@ -567,6 +573,7 @@ static void sfq_walk(struct Qdisc *sch, struct qdisc_walker *arg) | |||
| 567 | static const struct Qdisc_class_ops sfq_class_ops = { | 573 | static const struct Qdisc_class_ops sfq_class_ops = { |
| 568 | .get = sfq_get, | 574 | .get = sfq_get, |
| 569 | .tcf_chain = sfq_find_tcf, | 575 | .tcf_chain = sfq_find_tcf, |
| 576 | .bind_tcf = sfq_bind, | ||
| 570 | .dump = sfq_dump_class, | 577 | .dump = sfq_dump_class, |
| 571 | .dump_stats = sfq_dump_class_stats, | 578 | .dump_stats = sfq_dump_class_stats, |
| 572 | .walk = sfq_walk, | 579 | .walk = sfq_walk, |
