aboutsummaryrefslogtreecommitdiffstats
path: root/net/sched/sch_api.c
diff options
context:
space:
mode:
authorJamal Hadi Salim <hadi@cyberus.ca>2006-08-03 16:36:51 -0700
committerDavid S. Miller <davem@sunset.davemloft.net>2006-08-04 22:59:49 -0700
commitb9e2cc0f0e47ad351349156018ef8a365e9c6d25 (patch)
tree75770adf993e8ae1a1166df9c959fd262ec3d141 /net/sched/sch_api.c
parent[BRIDGE]: netlink status fix (diff)
downloadlinux-dev-b9e2cc0f0e47ad351349156018ef8a365e9c6d25.tar.xz
linux-dev-b9e2cc0f0e47ad351349156018ef8a365e9c6d25.zip
[PKT_SCHED]: Return ENOENT if qdisc module is unavailable
Return ENOENT if qdisc module is unavailable Signed-off-by: Jamal Hadi Salim <hadi@cyberus.ca> Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'net/sched/sch_api.c')
-rw-r--r--net/sched/sch_api.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/net/sched/sch_api.c b/net/sched/sch_api.c
index c7844bacbbcb..a19eff12cf78 100644
--- a/net/sched/sch_api.c
+++ b/net/sched/sch_api.c
@@ -430,7 +430,7 @@ qdisc_create(struct net_device *dev, u32 handle, struct rtattr **tca, int *errp)
}
#endif
- err = -EINVAL;
+ err = -ENOENT;
if (ops == NULL)
goto err_out;