aboutsummaryrefslogtreecommitdiffstats
path: root/net/sched/sch_tbf.c
diff options
context:
space:
mode:
Diffstat (limited to 'net/sched/sch_tbf.c')
-rw-r--r--net/sched/sch_tbf.c10
1 files changed, 7 insertions, 3 deletions
diff --git a/net/sched/sch_tbf.c b/net/sched/sch_tbf.c
index 6c4ad7e677b..f9b1543e3d7 100644
--- a/net/sched/sch_tbf.c
+++ b/net/sched/sch_tbf.c
@@ -272,7 +272,7 @@ static struct Qdisc *tbf_create_dflt_qdisc(struct Qdisc *sch, u32 limit)
272 272
273static int tbf_change(struct Qdisc* sch, struct nlattr *opt) 273static int tbf_change(struct Qdisc* sch, struct nlattr *opt)
274{ 274{
275 int err = -EINVAL; 275 int err;
276 struct tbf_sched_data *q = qdisc_priv(sch); 276 struct tbf_sched_data *q = qdisc_priv(sch);
277 struct nlattr *tb[TCA_TBF_PTAB + 1]; 277 struct nlattr *tb[TCA_TBF_PTAB + 1];
278 struct tc_tbf_qopt *qopt; 278 struct tc_tbf_qopt *qopt;
@@ -281,8 +281,12 @@ static int tbf_change(struct Qdisc* sch, struct nlattr *opt)
281 struct Qdisc *child = NULL; 281 struct Qdisc *child = NULL;
282 int max_size,n; 282 int max_size,n;
283 283
284 if (nla_parse_nested(tb, TCA_TBF_PTAB, opt, NULL) || 284 err = nla_parse_nested(tb, TCA_TBF_PTAB, opt, NULL);
285 tb[TCA_TBF_PARMS] == NULL || 285 if (err < 0)
286 return err;
287
288 err = -EINVAL;
289 if (tb[TCA_TBF_PARMS] == NULL ||
286 nla_len(tb[TCA_TBF_PARMS]) < sizeof(*qopt)) 290 nla_len(tb[TCA_TBF_PARMS]) < sizeof(*qopt))
287 goto done; 291 goto done;
288 292