mirror of
https://mirrors.bfsu.edu.cn/git/linux.git
synced 2024-11-15 00:04:15 +08:00
net: sched: cbq: create block for q->link.block
[ Upstream commitd51aae68b1
] q->link.block is not initialized, that leads to EINVAL when one tries to add filter there. So initialize it properly. This can be reproduced by: $ tc qdisc add dev eth0 root handle 1: cbq avpkt 1000 rate 1000Mbit bandwidth 1000Mbit $ tc filter add dev eth0 parent 1: protocol ip prio 100 u32 match ip protocol 0 0x00 flowid 1:1 Reported-by: Jaroslav Aster <jaster@redhat.com> Reported-by: Ivan Vecera <ivecera@redhat.com> Fixes:6529eaba33
("net: sched: introduce tcf block infractructure") Signed-off-by: Jiri Pirko <jiri@mellanox.com> Acked-by: Eelco Chaudron <echaudro@redhat.com> Reviewed-by: Ivan Vecera <ivecera@redhat.com> Signed-off-by: David S. Miller <davem@davemloft.net> Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
This commit is contained in:
parent
91c5e6553a
commit
8067098c04
@ -1157,9 +1157,13 @@ static int cbq_init(struct Qdisc *sch, struct nlattr *opt)
|
||||
if ((q->link.R_tab = qdisc_get_rtab(r, tb[TCA_CBQ_RTAB])) == NULL)
|
||||
return -EINVAL;
|
||||
|
||||
err = tcf_block_get(&q->link.block, &q->link.filter_list);
|
||||
if (err)
|
||||
goto put_rtab;
|
||||
|
||||
err = qdisc_class_hash_init(&q->clhash);
|
||||
if (err < 0)
|
||||
goto put_rtab;
|
||||
goto put_block;
|
||||
|
||||
q->link.sibling = &q->link;
|
||||
q->link.common.classid = sch->handle;
|
||||
@ -1193,6 +1197,9 @@ static int cbq_init(struct Qdisc *sch, struct nlattr *opt)
|
||||
cbq_addprio(q, &q->link);
|
||||
return 0;
|
||||
|
||||
put_block:
|
||||
tcf_block_put(q->link.block);
|
||||
|
||||
put_rtab:
|
||||
qdisc_put_rtab(q->link.R_tab);
|
||||
return err;
|
||||
|
Loading…
Reference in New Issue
Block a user