From mboxrd@z Thu Jan 1 00:00:00 1970 From: Julia Lawall Date: Thu, 25 Aug 2016 18:14:26 +0000 Subject: Re: Software evolution around scripts for the semantic patch langugae Message-Id: List-Id: References: <82b84c9c-38a4-4d17-910f-312668dbae01@users.sourceforge.net> <20160825181009.381411d9.cornelia.huck@de.ibm.com> In-Reply-To: MIME-Version: 1.0 Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: 7bit To: SF Markus Elfring Cc: Cornelia Huck , kvm@vger.kernel.org, linux-s390@vger.kernel.org, =?ISO-8859-15?Q?Christian_Borntr=E4ger?= , David Hildenbrand , Heiko Carstens , Martin Schwidefsky , Paolo Bonzini , =?ISO-8859-2?Q?Radim_Kr=E8m=E1=F8?= , LKML , kernel-janitors@vger.kernel.org, Julia Lawall , Walter Harms On Thu, 25 Aug 2016, SF Markus Elfring wrote: > >> This issue was detected also by using the Coccinelle software. > > > > Do you have the scripts you use published somewhere? > > I would like to add another view for the corresponding software development. > > The complete answer depends also on the kind of "scripts" > you are looking for. Would you like to clarify any details > a bit more here? I imagine that she is asking for: @@ expression e1,e2,e3; @@ - kmalloc(e1 * e2, e3) + kmalloc_array(e1, e2, e3) Or some close variant. It seems pretty straightforward to provide and can help orient the reader to what is going on. julia