summaryrefslogtreecommitdiffstats
path: root/net/sched/sch_multiq.c
diff options
context:
space:
mode:
authorJarek Poplawski2009-02-10 09:11:21 +0100
committerDavid S. Miller2009-02-10 09:11:21 +0100
commit149490f131ab532a3b9e8806249a0e730994cdf6 (patch)
treee8b0e3313c554547704b3b0444579a2fbbeeb431 /net/sched/sch_multiq.c
parentnet: Kill skbuff macros from the stone ages. (diff)
downloadkernel-qcow2-linux-149490f131ab532a3b9e8806249a0e730994cdf6.tar.gz
kernel-qcow2-linux-149490f131ab532a3b9e8806249a0e730994cdf6.tar.xz
kernel-qcow2-linux-149490f131ab532a3b9e8806249a0e730994cdf6.zip
pkt_sched: sch_multiq: Change errno on non-multiqueue devices use.
Current "RTNETLINK answers: Invalid argument" warning, while trying to add multiq qdisc to non-multiqueue device, isn't very helpful and some of these devs can be changed btw., so let's use a better errno. With feedback from Stephen Hemminger <shemminger@vyatta.com> Reported-by: Badalian Vyacheslav <slavon@bigtelecom.ru> Signed-off-by: Jarek Poplawski <jarkao2@gmail.com> Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'net/sched/sch_multiq.c')
-rw-r--r--net/sched/sch_multiq.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/net/sched/sch_multiq.c b/net/sched/sch_multiq.c
index 7e151861794b..912731203047 100644
--- a/net/sched/sch_multiq.c
+++ b/net/sched/sch_multiq.c
@@ -202,7 +202,7 @@ static int multiq_tune(struct Qdisc *sch, struct nlattr *opt)
int i;
if (!netif_is_multiqueue(qdisc_dev(sch)))
- return -EINVAL;
+ return -EOPNOTSUPP;
if (nla_len(opt) < sizeof(*qopt))
return -EINVAL;