diff options
author | Patrick McHardy <kaber@trash.net> | 2008-01-23 23:33:32 -0500 |
---|---|---|
committer | David S. Miller <davem@davemloft.net> | 2008-01-28 18:11:18 -0500 |
commit | cee63723b358e594225e812d6e14a2a0abfd5c88 (patch) | |
tree | 847f929e0f445cca8cdf55d7c17a56b0d0f2ec68 /net/sched/sch_dsmark.c | |
parent | ab27cfb85c5778400740ad0c401bde65616774eb (diff) |
[NET_SCHED]: Propagate nla_parse return value
nla_parse() returns more detailed errno codes, propagate them back on
error.
Signed-off-by: Patrick McHardy <kaber@trash.net>
Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'net/sched/sch_dsmark.c')
-rw-r--r-- | net/sched/sch_dsmark.c | 14 |
1 files changed, 12 insertions, 2 deletions
diff --git a/net/sched/sch_dsmark.c b/net/sched/sch_dsmark.c index f183ab768873..f1d0a08aca75 100644 --- a/net/sched/sch_dsmark.c +++ b/net/sched/sch_dsmark.c | |||
@@ -116,9 +116,14 @@ static int dsmark_change(struct Qdisc *sch, u32 classid, u32 parent, | |||
116 | goto errout; | 116 | goto errout; |
117 | } | 117 | } |
118 | 118 | ||
119 | if (!opt || nla_parse_nested(tb, TCA_DSMARK_MAX, opt, NULL)) | 119 | if (!opt) |
120 | goto errout; | 120 | goto errout; |
121 | 121 | ||
122 | err = nla_parse_nested(tb, TCA_DSMARK_MAX, opt, NULL); | ||
123 | if (err < 0) | ||
124 | return err; | ||
125 | |||
126 | err = -EINVAL; | ||
122 | if (tb[TCA_DSMARK_MASK]) { | 127 | if (tb[TCA_DSMARK_MASK]) { |
123 | if (nla_len(tb[TCA_DSMARK_MASK]) < sizeof(u8)) | 128 | if (nla_len(tb[TCA_DSMARK_MASK]) < sizeof(u8)) |
124 | goto errout; | 129 | goto errout; |
@@ -351,9 +356,14 @@ static int dsmark_init(struct Qdisc *sch, struct nlattr *opt) | |||
351 | 356 | ||
352 | pr_debug("dsmark_init(sch %p,[qdisc %p],opt %p)\n", sch, p, opt); | 357 | pr_debug("dsmark_init(sch %p,[qdisc %p],opt %p)\n", sch, p, opt); |
353 | 358 | ||
354 | if (!opt || nla_parse_nested(tb, TCA_DSMARK_MAX, opt, NULL) < 0) | 359 | if (!opt) |
360 | goto errout; | ||
361 | |||
362 | err = nla_parse_nested(tb, TCA_DSMARK_MAX, opt, NULL); | ||
363 | if (err < 0) | ||
355 | goto errout; | 364 | goto errout; |
356 | 365 | ||
366 | err = -EINVAL; | ||
357 | if (nla_len(tb[TCA_DSMARK_INDICES]) < sizeof(u16)) | 367 | if (nla_len(tb[TCA_DSMARK_INDICES]) < sizeof(u16)) |
358 | goto errout; | 368 | goto errout; |
359 | indices = nla_get_u16(tb[TCA_DSMARK_INDICES]); | 369 | indices = nla_get_u16(tb[TCA_DSMARK_INDICES]); |