[<prev] [next>] [<thread-prev] [thread-next>] [day] [month] [year] [list]
Message-ID: <4AA21D9F.8090600@gmail.com>
Date: Sat, 05 Sep 2009 10:13:19 +0200
From: Jarek Poplawski <jarkao2@...il.com>
To: Patrick McHardy <kaber@...sh.net>
CC: netdev@...r.kernel.org
Subject: Re: net_sched 02/07: make cls_ops->tcf_chain() optional
Patrick McHardy wrote, On 09/04/2009 06:41 PM:
> commit 6ea4233ef8f398289a14a3305d4ed440fb026d43
> Author: Patrick McHardy <kaber@...sh.net>
> Date: Fri Sep 4 14:28:11 2009 +0200
>
> net_sched: make cls_ops->tcf_chain() optional
>
> Some qdiscs don't support attaching filters. Handle this centrally in
> cls_api and return a proper errno code (EOPNOTSUPP) instead of EINVAL.
>
> Signed-off-by: Patrick McHardy <kaber@...sh.net>
>
> diff --git a/net/sched/cls_api.c b/net/sched/cls_api.c
> index 09cdcdf..eaa8f43 100644
> --- a/net/sched/cls_api.c
> +++ b/net/sched/cls_api.c
> @@ -181,6 +181,9 @@ replay:
> if ((cops = q->ops->cl_ops) == NULL)
> return -EINVAL;
>
> + if (cops->tcf_chain == NULL)
> + return -EOPNOTSUPP;
> +
You should probably repeat this in tc_dump_tfilter.
Jarek P.
--
To unsubscribe from this list: send the line "unsubscribe netdev" in
the body of a message to majordomo@...r.kernel.org
More majordomo info at http://vger.kernel.org/majordomo-info.html
Powered by blists - more mailing lists