From mboxrd@z Thu Jan 1 00:00:00 1970 From: Jarek Poplawski Subject: Re: net_sched 02/07: make cls_ops->tcf_chain() optional Date: Sat, 05 Sep 2009 14:32:17 +0200 Message-ID: <4AA25A51.2040100@gmail.com> References: <20090904164111.27300.29929.sendpatchset@x2.localnet> <20090904164113.27300.79145.sendpatchset@x2.localnet> <4AA21D9F.8090600@gmail.com> <4AA2520D.2060603@gmail.com> Mime-Version: 1.0 Content-Type: text/plain; charset=ISO-8859-15 Content-Transfer-Encoding: 7bit Cc: Patrick McHardy , netdev@vger.kernel.org To: unlisted-recipients:; (no To-header on input) Return-path: Received: from fg-out-1718.google.com ([72.14.220.157]:40726 "EHLO fg-out-1718.google.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1757342AbZIEMcX (ORCPT ); Sat, 5 Sep 2009 08:32:23 -0400 Received: by fg-out-1718.google.com with SMTP id 22so357866fge.1 for ; Sat, 05 Sep 2009 05:32:24 -0700 (PDT) In-Reply-To: <4AA2520D.2060603@gmail.com> Sender: netdev-owner@vger.kernel.org List-ID: Jarek Poplawski wrote, On 09/05/2009 01:57 PM: > Jarek Poplawski wrote, On 09/05/2009 10:13 AM: > >> Patrick McHardy wrote, On 09/04/2009 06:41 PM: >> >>> commit 6ea4233ef8f398289a14a3305d4ed440fb026d43 >>> Author: Patrick McHardy >>> 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 >>> >>> 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. > > > ...In case somebody finds the way to list a filter before > adding it. ;-) But, since it's quite unlikely, let's foget it. ...or simply tries to do it instead of meditating the code. So this change is definitely needed in tc_dump_tfilter too. Sorry to myself, Jarek P.