aboutsummaryrefslogtreecommitdiffstats
path: root/net/sched/sch_ingress.c
diff options
context:
space:
mode:
authorPatrick McHardy <kaber@trash.net>2007-03-23 14:29:43 -0400
committerDavid S. Miller <davem@sunset.davemloft.net>2007-04-26 01:27:56 -0400
commita48b5a61448899040dfbd2e0cd55b06a2bd2466c (patch)
treeb7efde642bde0eec3cb7171fdda38de349e409ff /net/sched/sch_ingress.c
parent3bebcda28077375470dd60545b71bba2f83335fd (diff)
[NET_SCHED]: Unline tcf_destroy
Uninline tcf_destroy and add a helper function to destroy an entire filter chain. Signed-off-by: Patrick McHardy <kaber@trash.net> Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'net/sched/sch_ingress.c')
-rw-r--r--net/sched/sch_ingress.c7
1 files changed, 1 insertions, 6 deletions
diff --git a/net/sched/sch_ingress.c b/net/sched/sch_ingress.c
index f63d5c6eb302..1fb60aba1e6c 100644
--- a/net/sched/sch_ingress.c
+++ b/net/sched/sch_ingress.c
@@ -346,14 +346,9 @@ static void ingress_reset(struct Qdisc *sch)
346static void ingress_destroy(struct Qdisc *sch) 346static void ingress_destroy(struct Qdisc *sch)
347{ 347{
348 struct ingress_qdisc_data *p = PRIV(sch); 348 struct ingress_qdisc_data *p = PRIV(sch);
349 struct tcf_proto *tp;
350 349
351 DPRINTK("ingress_destroy(sch %p,[qdisc %p])\n", sch, p); 350 DPRINTK("ingress_destroy(sch %p,[qdisc %p])\n", sch, p);
352 while (p->filter_list) { 351 tcf_destroy_chain(p->filter_list);
353 tp = p->filter_list;
354 p->filter_list = tp->next;
355 tcf_destroy(tp);
356 }
357#if 0 352#if 0
358/* for future use */ 353/* for future use */
359 qdisc_destroy(p->q); 354 qdisc_destroy(p->q);