diff options
author | Jiri Pirko <jiri@mellanox.com> | 2017-10-13 14:00:57 +0200 |
---|---|---|
committer | David S. Miller <davem@davemloft.net> | 2017-10-16 21:00:40 +0100 |
commit | 69d78ef25c7b0058674145500efb12255738ba8a (patch) | |
tree | 60de21515aa005a877989e49434e14a6a393cc15 /net/sched/sch_atm.c | |
parent | 32302902ff093891d8e64439cbb8ceae83e21ef8 (diff) | |
download | linux-69d78ef25c7b0058674145500efb12255738ba8a.tar.gz linux-69d78ef25c7b0058674145500efb12255738ba8a.tar.bz2 linux-69d78ef25c7b0058674145500efb12255738ba8a.zip |
net: sched: store Qdisc pointer in struct block
Prepare for removal of tp->q and store Qdisc pointer in the block
structure.
Signed-off-by: Jiri Pirko <jiri@mellanox.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'net/sched/sch_atm.c')
-rw-r--r-- | net/sched/sch_atm.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/net/sched/sch_atm.c b/net/sched/sch_atm.c index c5fcdf1a58a0..2dbd249c0b2f 100644 --- a/net/sched/sch_atm.c +++ b/net/sched/sch_atm.c @@ -281,7 +281,7 @@ static int atm_tc_change(struct Qdisc *sch, u32 classid, u32 parent, goto err_out; } - error = tcf_block_get(&flow->block, &flow->filter_list); + error = tcf_block_get(&flow->block, &flow->filter_list, sch); if (error) { kfree(flow); goto err_out; @@ -546,7 +546,7 @@ static int atm_tc_init(struct Qdisc *sch, struct nlattr *opt) p->link.q = &noop_qdisc; pr_debug("atm_tc_init: link (%p) qdisc %p\n", &p->link, p->link.q); - err = tcf_block_get(&p->link.block, &p->link.filter_list); + err = tcf_block_get(&p->link.block, &p->link.filter_list, sch); if (err) return err; |