[NET_SCHED]: Propagate nla_parse return value
[deliverable/linux.git] / net / sched / sch_dsmark.c
index f183ab7688738d23c3f019cf770a187f4826b09b..f1d0a08aca75fe53bad0ffa14cb5c2eb628fa252 100644 (file)
@@ -116,9 +116,14 @@ static int dsmark_change(struct Qdisc *sch, u32 classid, u32 parent,
                goto errout;
        }
 
-       if (!opt || nla_parse_nested(tb, TCA_DSMARK_MAX, opt, NULL))
+       if (!opt)
                goto errout;
 
+       err = nla_parse_nested(tb, TCA_DSMARK_MAX, opt, NULL);
+       if (err < 0)
+               return err;
+
+       err = -EINVAL;
        if (tb[TCA_DSMARK_MASK]) {
                if (nla_len(tb[TCA_DSMARK_MASK]) < sizeof(u8))
                        goto errout;
@@ -351,9 +356,14 @@ static int dsmark_init(struct Qdisc *sch, struct nlattr *opt)
 
        pr_debug("dsmark_init(sch %p,[qdisc %p],opt %p)\n", sch, p, opt);
 
-       if (!opt || nla_parse_nested(tb, TCA_DSMARK_MAX, opt, NULL) < 0)
+       if (!opt)
+               goto errout;
+
+       err = nla_parse_nested(tb, TCA_DSMARK_MAX, opt, NULL);
+       if (err < 0)
                goto errout;
 
+       err = -EINVAL;
        if (nla_len(tb[TCA_DSMARK_INDICES]) < sizeof(u16))
                goto errout;
        indices = nla_get_u16(tb[TCA_DSMARK_INDICES]);
This page took 0.035155 seconds and 5 git commands to generate.