From mboxrd@z Thu Jan 1 00:00:00 1970 From: Jiri Pirko Subject: Re: [PATCH net-next v2 00/12] net: sched: propagate extack to cls offloads on destroy and only with skip_sw Date: Wed, 24 Jan 2018 22:04:28 +0100 Message-ID: <20180124210427.GB2087@nanopsycho> References: <20180124205424.6976-1-jakub.kicinski@netronome.com> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Cc: davem@davemloft.net, dsahern@gmail.com, daniel@iogearbox.net, john.fastabend@gmail.com, netdev@vger.kernel.org, oss-drivers@netronome.com, aring@mojatatu.com To: Jakub Kicinski Return-path: Received: from mail-wm0-f68.google.com ([74.125.82.68]:43486 "EHLO mail-wm0-f68.google.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S932114AbeAXVEa (ORCPT ); Wed, 24 Jan 2018 16:04:30 -0500 Received: by mail-wm0-f68.google.com with SMTP id g1so10896844wmg.2 for ; Wed, 24 Jan 2018 13:04:29 -0800 (PST) Content-Disposition: inline In-Reply-To: <20180124205424.6976-1-jakub.kicinski@netronome.com> Sender: netdev-owner@vger.kernel.org List-ID: Wed, Jan 24, 2018 at 09:54:12PM CET, jakub.kicinski@netronome.com wrote: >Hi! > >This series some of Jiri's comments and the fact that today drivers >may produce extack even if there is no skip_sw flag (meaning the >driver failure is not really a problem), and warning messages will >only confuse the users. > >First patch propagates extack to destroy as requested by Jiri, extack >is then propagated to the driver callback for each classifier. I chose >not to provide the extack on error paths. As a rule of thumb it seems >best to keep the extack of the condition which caused the error. E.g. > > err = this_will_fail(arg, extack); > if (err) { > undo_things(arg, NULL /* don't pass extack */); > return err; > } > >Note that NL_SET_ERR_MSG() will ignore the message if extack is NULL. >I was pondering whether we should make NL_SET_ERR_MSG() refuse to >overwrite the msg, but there seem to be cases in the tree where extack >is set like this: > > err = this_will_fail(arg, extack); > if (err) { > undo_things(arg, NULL /* don't pass extack */); > NL_SET_ERR_MSG(extack, "extack is set after undo call :/"); > return err; > } > >I think not passing extack to undo calls is reasonable. > >v2: > - rename the temporary tc_cls_common_offload_init(). > >Jakub Kicinski (12): > net: sched: propagate extack to cls->destroy callbacks > net: sched: prepare for reimplementation of > tc_cls_common_offload_init() > cls_bpf: remove gen_flags from bpf_offload > cls_bpf: pass offload flags to tc_cls_common_offload_init() > cls_bpf: propagate extack to offload delete callback > cls_matchall: pass offload flags to tc_cls_common_offload_init() > cls_matchall: propagate extack to delete callback > cls_flower: pass offload flags to tc_cls_common_offload_init() > cls_flower: propagate extack to delete callback > cls_u32: pass offload flags to tc_cls_common_offload_init() > cls_u32: propagate extack to delete callback > net: sched: remove tc_cls_common_offload_init_deprecated() For the record, I still think it is odd to have 6 patches just to add one arg to a function. I wonder where this unnecessary patch splits would lead to in the future. Anyway, since apparently no one really cares, and the code result looks good to me, for whole patchset: Acked-by: Jiri Pirko