From mboxrd@z Thu Jan 1 00:00:00 1970 From: Jiri Pirko Subject: Re: [patch net-next v2 02/10] net: sched: introduce tcf block infractructure Date: Tue, 16 May 2017 15:10:34 +0200 Message-ID: <20170516131034.GM1939@nanopsycho.orion> References: <20170515083857.3615-1-jiri@resnulli.us> <20170515083857.3615-3-jiri@resnulli.us> <33ea772b-d35b-ae08-4137-b63185c2f590@mojatatu.com> <20170516122326.GK1939@nanopsycho.orion> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Cc: netdev@vger.kernel.org, davem@davemloft.net, xiyou.wangcong@gmail.com, dsa@cumulusnetworks.com, edumazet@google.com, stephen@networkplumber.org, daniel@iogearbox.net, alexander.h.duyck@intel.com, simon.horman@netronome.com, mlxsw@mellanox.com To: Jamal Hadi Salim Return-path: Received: from mail-wm0-f66.google.com ([74.125.82.66]:33104 "EHLO mail-wm0-f66.google.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1751219AbdEPNKh (ORCPT ); Tue, 16 May 2017 09:10:37 -0400 Received: by mail-wm0-f66.google.com with SMTP id y10so38252686wmh.0 for ; Tue, 16 May 2017 06:10:37 -0700 (PDT) Content-Disposition: inline In-Reply-To: Sender: netdev-owner@vger.kernel.org List-ID: Tue, May 16, 2017 at 02:52:31PM CEST, jhs@mojatatu.com wrote: >On 17-05-16 08:23 AM, Jiri Pirko wrote: >> Tue, May 16, 2017 at 02:07:25PM CEST, jhs@mojatatu.com wrote: >> > >> > Jiri, >> > >> > I am sorry i am tied up elsewhere but will respond in chunks. >> > >> > On 17-05-15 04:38 AM, Jiri Pirko wrote: >> > >> > >> > > static inline void qdisc_cb_private_validate(const struct sk_buff *skb, int sz) >> > > { >> > > struct qdisc_skb_cb *qcb; >> > >> > >> > > +int tcf_block_get(struct tcf_block **p_block, >> > > + struct tcf_proto __rcu **p_filter_chain) >> > > +{ >> > > + struct tcf_block *block = kzalloc(sizeof(*block), GFP_KERNEL); >> > > + >> > > + if (!block) >> > > + return -ENOMEM; >> > > + block->p_filter_chain = p_filter_chain; >> > > + *p_block = block; >> > > + return 0; >> > > +} >> > >> > tcf_block_get() sounds odd. tcf_block_create()? >> >> I used get/put because I plan to allow sharing of block between qdiscs >> in future. Then there will be a refcount. >> > >Ok, I guess I should read further into the patches.. > > >> > > -static struct tcf_proto __rcu **atm_tc_find_tcf(struct Qdisc *sch, >> > > - unsigned long cl) >> > > +static struct tcf_block *atm_tc_tcf_block(struct Qdisc *sch, unsigned long cl) >> > >> > Any reason you removed the verb "find" from all these calls? >> > eg above: better to have atm_tc_tcf_block_find()? >> >> Yeah, I was thinking about it. The thing is, the callback does not do >> any lookup so "find" is not accurate. Also without "find" this is >> shorter so I decided for this naming variant. >> > >They do select some chain - at least that was the intent. >Are you not planning to use this to pick a chain in a block? No. I just need to use this to get the whole block of chains.