diff options
Diffstat (limited to 'net/sched/sch_htb.c')
| -rw-r--r-- | net/sched/sch_htb.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/net/sched/sch_htb.c b/net/sched/sch_htb.c index 508cf5f3a6d5..4be8d04b262d 100644 --- a/net/sched/sch_htb.c +++ b/net/sched/sch_htb.c | |||
| @@ -36,6 +36,7 @@ | |||
| 36 | #include <linux/compiler.h> | 36 | #include <linux/compiler.h> |
| 37 | #include <linux/rbtree.h> | 37 | #include <linux/rbtree.h> |
| 38 | #include <linux/workqueue.h> | 38 | #include <linux/workqueue.h> |
| 39 | #include <linux/slab.h> | ||
| 39 | #include <net/netlink.h> | 40 | #include <net/netlink.h> |
| 40 | #include <net/pkt_sched.h> | 41 | #include <net/pkt_sched.h> |
| 41 | 42 | ||
| @@ -1549,7 +1550,6 @@ static const struct Qdisc_class_ops htb_class_ops = { | |||
| 1549 | }; | 1550 | }; |
| 1550 | 1551 | ||
| 1551 | static struct Qdisc_ops htb_qdisc_ops __read_mostly = { | 1552 | static struct Qdisc_ops htb_qdisc_ops __read_mostly = { |
| 1552 | .next = NULL, | ||
| 1553 | .cl_ops = &htb_class_ops, | 1553 | .cl_ops = &htb_class_ops, |
| 1554 | .id = "htb", | 1554 | .id = "htb", |
| 1555 | .priv_size = sizeof(struct htb_sched), | 1555 | .priv_size = sizeof(struct htb_sched), |
| @@ -1560,7 +1560,6 @@ static struct Qdisc_ops htb_qdisc_ops __read_mostly = { | |||
| 1560 | .init = htb_init, | 1560 | .init = htb_init, |
| 1561 | .reset = htb_reset, | 1561 | .reset = htb_reset, |
| 1562 | .destroy = htb_destroy, | 1562 | .destroy = htb_destroy, |
| 1563 | .change = NULL /* htb_change */, | ||
| 1564 | .dump = htb_dump, | 1563 | .dump = htb_dump, |
| 1565 | .owner = THIS_MODULE, | 1564 | .owner = THIS_MODULE, |
| 1566 | }; | 1565 | }; |
