* [PATCH PKT_SCHED 16/17]: Return proper error codes in tcf_pedit_init
@ 2004-12-30 3:41 Patrick McHardy
0 siblings, 0 replies; only message in thread
From: Patrick McHardy @ 2004-12-30 3:41 UTC (permalink / raw)
To: jamal; +Cc: Maillist netdev
[-- Attachment #1: Type: text/plain, Size: 46 bytes --]
Return proper error codes in tcf_pedit_init.
[-- Attachment #2: 16.diff --]
[-- Type: text/x-patch, Size: 1412 bytes --]
# This is a BitKeeper generated diff -Nru style patch.
#
# ChangeSet
# 2004/12/30 03:52:40+01:00 kaber@coreworks.de
# [PKT_SCHED]: Return proper error codes in tcf_pedit_init
#
# Signed-off-by: Patrick McHardy <kaber@trash.net>
#
# net/sched/pedit.c
# 2004/12/30 03:52:34+01:00 kaber@coreworks.de +7 -7
# [PKT_SCHED]: Return proper error codes in tcf_pedit_init
#
# Signed-off-by: Patrick McHardy <kaber@trash.net>
#
diff -Nru a/net/sched/pedit.c b/net/sched/pedit.c
--- a/net/sched/pedit.c 2004-12-30 04:02:05 +01:00
+++ b/net/sched/pedit.c 2004-12-30 04:02:05 +01:00
@@ -64,26 +64,26 @@
struct tcf_pedit *p;
if (rtattr_parse(tb, TCA_PEDIT_MAX, RTA_DATA(rta), RTA_PAYLOAD(rta)) < 0)
- return -1;
- if (tb[TCA_PEDIT_PARMS - 1] == NULL) {
- printk("BUG: tcf_pedit_init called with NULL params\n");
- return -1;
- }
+ return -EINVAL;
+ if (tb[TCA_PEDIT_PARMS - 1] == NULL)
+ return -EINVAL;
parm = RTA_DATA(tb[TCA_PEDIT_PARMS - 1]);
p = tcf_hash_check(parm, a, ovr, bind);
if (p == NULL) { /* new */
if (!parm->nkeys)
- return -1;
+ return -EINVAL;
size = sizeof(*p) + parm->nkeys * sizeof(struct tc_pedit_key);
p = tcf_hash_create(parm, est, a, size, ovr, bind);
if (p == NULL)
- return -1;
+ return -ENOMEM;
ret = 1;
goto override;
}
+ ret = -EEXIST;
if (ovr) {
+ ret = 0;
override:
p->flags = parm->flags;
p->nkeys = parm->nkeys;
^ permalink raw reply [flat|nested] only message in thread
only message in thread, other threads:[~2004-12-30 3:41 UTC | newest]
Thread overview: (only message) (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2004-12-30 3:41 [PATCH PKT_SCHED 16/17]: Return proper error codes in tcf_pedit_init Patrick McHardy
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).