aboutsummaryrefslogtreecommitdiffstats
path: root/net/sched/sch_atm.c
diff options
context:
space:
mode:
authorPatrick McHardy <kaber@trash.net>2008-07-01 19:53:09 -0700
committerDavid S. Miller <davem@davemloft.net>2008-07-01 19:53:09 -0700
commita4aebb83cf0da0363684f1c339f7e6149a3e74c1 (patch)
treeb009adf7577ff4822ede398b1a162374ce32fb81 /net/sched/sch_atm.c
parentff31ab56c0e900235f653e375fc3b01ba2d8d6a3 (diff)
downloadkernel_samsung_smdk4412-a4aebb83cf0da0363684f1c339f7e6149a3e74c1.zip
kernel_samsung_smdk4412-a4aebb83cf0da0363684f1c339f7e6149a3e74c1.tar.gz
kernel_samsung_smdk4412-a4aebb83cf0da0363684f1c339f7e6149a3e74c1.tar.bz2
net-sched: fix filter destruction in atm/hfsc qdisc destruction
Filters need to be destroyed before beginning to destroy classes since the destination class needs to still be alive to unbind the filter. Signed-off-by: Patrick McHardy <kaber@trash.net> Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'net/sched/sch_atm.c')
-rw-r--r--net/sched/sch_atm.c4
1 files changed, 3 insertions, 1 deletions
diff --git a/net/sched/sch_atm.c b/net/sched/sch_atm.c
index 8e5f70b..db0e23a 100644
--- a/net/sched/sch_atm.c
+++ b/net/sched/sch_atm.c
@@ -586,9 +586,11 @@ static void atm_tc_destroy(struct Qdisc *sch)
struct atm_flow_data *flow;
pr_debug("atm_tc_destroy(sch %p,[qdisc %p])\n", sch, p);
+ for (flow = p->flows; flow; flow = flow->next)
+ tcf_destroy_chain(&flow->filter_list);
+
/* races ? */
while ((flow = p->flows)) {
- tcf_destroy_chain(&flow->filter_list);
if (flow->ref > 1)
printk(KERN_ERR "atm_destroy: %p->ref = %d\n", flow,
flow->ref);