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 10:13:19 +0200 Message-ID: <4AA21D9F.8090600@gmail.com> References: <20090904164111.27300.29929.sendpatchset@x2.localnet> <20090904164113.27300.79145.sendpatchset@x2.localnet> Mime-Version: 1.0 Content-Type: text/plain; charset=ISO-8859-15 Content-Transfer-Encoding: 7bit Cc: netdev@vger.kernel.org To: Patrick McHardy Return-path: Received: from mail-fx0-f217.google.com ([209.85.220.217]:34294 "EHLO mail-fx0-f217.google.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1754398AbZIEINw (ORCPT ); Sat, 5 Sep 2009 04:13:52 -0400 Received: by fxm17 with SMTP id 17so1102903fxm.37 for ; Sat, 05 Sep 2009 01:13:53 -0700 (PDT) In-Reply-To: <20090904164113.27300.79145.sendpatchset@x2.localnet> Sender: netdev-owner@vger.kernel.org List-ID: 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. Jarek P.