diff options
Diffstat (limited to 'net/sched/sch_prio.c')
-rw-r--r-- | net/sched/sch_prio.c | 7 |
1 files changed, 1 insertions, 6 deletions
diff --git a/net/sched/sch_prio.c b/net/sched/sch_prio.c index f13996348dda..5cfe60bf6e25 100644 --- a/net/sched/sch_prio.c +++ b/net/sched/sch_prio.c | |||
@@ -189,13 +189,8 @@ prio_destroy(struct Qdisc* sch) | |||
189 | { | 189 | { |
190 | int prio; | 190 | int prio; |
191 | struct prio_sched_data *q = qdisc_priv(sch); | 191 | struct prio_sched_data *q = qdisc_priv(sch); |
192 | struct tcf_proto *tp; | ||
193 | |||
194 | while ((tp = q->filter_list) != NULL) { | ||
195 | q->filter_list = tp->next; | ||
196 | tcf_destroy(tp); | ||
197 | } | ||
198 | 192 | ||
193 | tcf_destroy_chain(q->filter_list); | ||
199 | for (prio=0; prio<q->bands; prio++) | 194 | for (prio=0; prio<q->bands; prio++) |
200 | qdisc_destroy(q->queues[prio]); | 195 | qdisc_destroy(q->queues[prio]); |
201 | } | 196 | } |