diff options
Diffstat (limited to 'net/sched/sch_red.c')
-rw-r--r-- | net/sched/sch_red.c | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/net/sched/sch_red.c b/net/sched/sch_red.c index 6ce8da5aca0b..dcf6afc196f8 100644 --- a/net/sched/sch_red.c +++ b/net/sched/sch_red.c | |||
@@ -207,10 +207,15 @@ static int red_change(struct Qdisc *sch, struct nlattr *opt) | |||
207 | struct nlattr *tb[TCA_RED_MAX + 1]; | 207 | struct nlattr *tb[TCA_RED_MAX + 1]; |
208 | struct tc_red_qopt *ctl; | 208 | struct tc_red_qopt *ctl; |
209 | struct Qdisc *child = NULL; | 209 | struct Qdisc *child = NULL; |
210 | int err; | ||
210 | 211 | ||
211 | if (opt == NULL || nla_parse_nested(tb, TCA_RED_MAX, opt, NULL)) | 212 | if (opt == NULL) |
212 | return -EINVAL; | 213 | return -EINVAL; |
213 | 214 | ||
215 | err = nla_parse_nested(tb, TCA_RED_MAX, opt, NULL); | ||
216 | if (err < 0) | ||
217 | return err; | ||
218 | |||
214 | if (tb[TCA_RED_PARMS] == NULL || | 219 | if (tb[TCA_RED_PARMS] == NULL || |
215 | nla_len(tb[TCA_RED_PARMS]) < sizeof(*ctl) || | 220 | nla_len(tb[TCA_RED_PARMS]) < sizeof(*ctl) || |
216 | tb[TCA_RED_STAB] == NULL || | 221 | tb[TCA_RED_STAB] == NULL || |