From mboxrd@z Thu Jan 1 00:00:00 1970 From: Johannes Berg Date: Mon, 01 Dec 2014 20:29:05 +0000 Subject: Re: net-PA Semi: Deletion of unnecessary checks before the function call "pci_dev_put" Message-Id: <1417465745.28610.0.camel@sipsolutions.net> List-Id: References: <5307CAA2.8060406@users.sourceforge.net> <530A086E.8010901@users.sourceforge.net> <530A72AA.3000601@users.sourceforge.net> <530B5FB6.6010207@users.sourceforge.net> <530C5E18.1020800@users.sourceforge.net> <530CD2C4.4050903@users.sourceforge.net> <530CF8FF.8080600@users.sourceforge.net> <530DD06F.4090703@users.sourceforge.net> <5317A59D.4@users.sourceforge.net> <547A09B1.9090102@users.sourceforge.net> <547B579F.10709@gmx.de> <547BC5AD.6090500@users.sourceforge.net> (sfid-20141201_023451_153915_6CFB474F) In-Reply-To: <547BC5AD.6090500@users.sourceforge.net> (sfid-20141201_023451_153915_6CFB474F) MIME-Version: 1.0 Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: 7bit To: SF Markus Elfring Cc: Lino Sanfilippo , Olof Johansson , netdev@vger.kernel.org, backports@vger.kernel.org, LKML , kernel-janitors@vger.kernel.org, Julia Lawall , "Luis R. Rodriguez" On Mon, 2014-12-01 at 02:34 +0100, SF Markus Elfring wrote: > > Some of those NULL pointer checks on input parameters may have been > > added subsequently to functions. So there may be older kernel versions > > out there in which those checks dont exists in some cases. If some of > > the now "cleaned up" code is backported to such a kernel chances are > > good that those missing checks are overseen. And then neither caller nor > > callee is doing the NULL pointer check. > I assume that a few backporters can tell you more about their corresponding > software development experiences. > http://www.do-not-panic.com/2014/04/automatic-linux-kernel-backporting-with-coccinelle.html In such cases we just provide an appropriate wrapper and replace callers of the original function by callers of the wrapper, typically with a #define. So this kind of evolution is no problem for the (automated) backports using the backports project - although it can be difficult to detect such a thing is needed. johannes