diff options
author | Changli Gao <xiaosuo@gmail.com> | 2010-09-30 06:17:44 +0000 |
---|---|---|
committer | David S. Miller <davem@davemloft.net> | 2010-10-09 09:22:53 -0700 |
commit | e18434c45765cfc4a74b5c61da9e9fbc6ddd3d5f (patch) | |
tree | ebe8785ec3006924e6ae0b773dfed3050a5bbdca /net/sched | |
parent | 4315d834c1496ddca977e9e22002b77c85bfec2c (diff) | |
download | linux-e18434c45765cfc4a74b5c61da9e9fbc6ddd3d5f.tar.gz linux-e18434c45765cfc4a74b5c61da9e9fbc6ddd3d5f.tar.bz2 linux-e18434c45765cfc4a74b5c61da9e9fbc6ddd3d5f.zip |
net_sched: use __TCA_HTB_MAX and TCA_HTB_MAX
Signed-off-by: Changli Gao <xiaosuo@gmail.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'net/sched')
-rw-r--r-- | net/sched/sch_htb.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/net/sched/sch_htb.c b/net/sched/sch_htb.c index 4be8d04b262d..87d944941867 100644 --- a/net/sched/sch_htb.c +++ b/net/sched/sch_htb.c @@ -1302,14 +1302,14 @@ static int htb_change_class(struct Qdisc *sch, u32 classid, struct htb_class *cl = (struct htb_class *)*arg, *parent; struct nlattr *opt = tca[TCA_OPTIONS]; struct qdisc_rate_table *rtab = NULL, *ctab = NULL; - struct nlattr *tb[TCA_HTB_RTAB + 1]; + struct nlattr *tb[__TCA_HTB_MAX]; struct tc_htb_opt *hopt; /* extract all subattrs from opt attr */ if (!opt) goto failure; - err = nla_parse_nested(tb, TCA_HTB_RTAB, opt, htb_policy); + err = nla_parse_nested(tb, TCA_HTB_MAX, opt, htb_policy); if (err < 0) goto failure; |