Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1750830AbdLRFA6 (ORCPT ); Mon, 18 Dec 2017 00:00:58 -0500 Received: from mail-wr0-f181.google.com ([209.85.128.181]:37634 "EHLO mail-wr0-f181.google.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1750728AbdLRFAz (ORCPT ); Mon, 18 Dec 2017 00:00:55 -0500 X-Google-Smtp-Source: ACJfBotojKIMB+vg5aUII0N1TTBQEuzlFpxIC8yRN8Oyc3S/nvwE03TUZL8UECnD/zVgAAYxs0fgsg== Date: Sun, 17 Dec 2017 22:00:43 -0700 From: Jason Gunthorpe To: Knut Omang Cc: Stephen Hemminger , linux-kernel@vger.kernel.org, Mauro Carvalho Chehab , Nicolas Palix , Jonathan Corbet , Santosh Shilimkar , Matthew Wilcox , cocci@systeme.lip6.fr, rds-devel@oss.oracle.com, linux-rdma@vger.kernel.org, linux-doc@vger.kernel.org, Doug Ledford , =?utf-8?Q?Micka=C3=ABl_Sala=C3=BCn?= , Shuah Khan , linux-kbuild@vger.kernel.org, Michal Marek , Julia Lawall , John Haxby , =?utf-8?Q?=C3=85smund_=C3=98stvold?= , Masahiro Yamada , Kees Cook , netdev@vger.kernel.org, Gilles Muller , "David S. Miller" , Joe Perches , "Paul E. McKenney" , =?utf-8?B?SMOla29u?= Bugge , Andy Whitcroft , "Levin, Alexander (Sasha Levin)" Subject: Re: [PATCH v2 0/5] Support for generalized use of make C={1,2} via a wrapper program Message-ID: <20171218050043.GA1307@ziepe.ca> References: <20171216094745.5e41ac51@xeon-e3> <1513476850.31439.108.camel@oracle.com> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <1513476850.31439.108.camel@oracle.com> User-Agent: Mutt/1.5.24 (2015-08-30) Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org Content-Length: 2197 Lines: 53 On Sun, Dec 17, 2017 at 03:14:10AM +0100, Knut Omang wrote: > > I like the ability to add more checkers and keep then in the main > > upstream tree. But adding overrides for specific subsystems goes against > > the policy that all subsystems should be treated equally. > > This is a tool to enable automated testing for as many checks as > possible, as soon as possible. Like any tool, it can be misused, but > that's IMHO an orthogonal problem that I think the maintainers will > be more than capable of preventing. > > Think of this as a tightening screw: We eliminate errors class by > class or file by file, and in the same commit narrows in the list of > exceptions. That way we can fix issues piece by piece while avoiding > a lot of regressions in already clean parts. Since you used drivers/infiniband as an example for this script.. I will say I agree with this idea. It is not that we *want* infiniband to be different from the rest of the kernel, it is that we have this historical situation where we don't have a code base that already passes the various static checker things. I would like it very much if I could run 'make static checker' and see no warnings. This helps me know that I when I accept patches I am not introducing new problems to code that has already been cleaned up. Today when we run checkers we get so many warnings it is too hard to make any sense of it. Being able to say File X is now clean for check XYZ seems very useful and may motivate people to clean up the files they actualy care about... > > There was discussion at Kernel Summit about how the different > > subsystems already have different rules. This appears to be a way > > to make that worse. > > IMHO this is a tool that should help maintainers implement the > policies they desire. But the tool itself does not dictate any > such. Yes, again, in infiniband we like to see checkpatch be good for new submission, even if that clashes with surrounding code. For instance we have a mixture of sizeof foo and sizeof(foo) styles in the same file/function now. I certainly don't want to tell people they need to follow some different style from 10 years ago when they send patches. Jason