From mboxrd@z Thu Jan 1 00:00:00 1970 From: Julia Lawall Subject: Re: [RFC v1 14/25] genirq: Kill the first parameter 'irq' of irq_flow_handler_t Date: Fri, 12 Jun 2015 22:29:53 +0200 (CEST) Message-ID: References: <1432116013-25902-1-git-send-email-jiang.liu@linux.intel.com> <1432116013-25902-15-git-send-email-jiang.liu@linux.intel.com> <555CA834.7080807@linux.intel.com> Mime-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Return-path: In-Reply-To: Sender: linux-pci-owner@vger.kernel.org To: Thomas Gleixner Cc: Julia Lawall , Jiang Liu , Bjorn Helgaas , Benjamin Herrenschmidt , Ingo Molnar , "H. Peter Anvin" , "Rafael J. Wysocki" , Randy Dunlap , Yinghai Lu , Borislav Petkov , Jason Cooper , Kevin Cernekee , Arnd Bergmann , Marc Zyngier , Konrad Rzeszutek Wilk , Tony Luck , x86@kernel.org, LKML , linux-pci@vger.kernel.org, linux-acpi@vger.kernel.org List-Id: linux-acpi@vger.kernel.org On Wed, 20 May 2015, Thomas Gleixner wrote: > On Wed, 20 May 2015, Julia Lawall wrote: > > On Wed, 20 May 2015, Thomas Gleixner wrote: > > > On Wed, 20 May 2015, Julia Lawall wrote: > > > > Scripting this may be a little complex, because the variable can be used > > > > in one way in one execution path (eg if branch) and another way (or not at > > > > all) in another. Let me know if help is needed. > > > > > > I feared that, but at least identifying all functions, where the irq > > > argument is used inside the function itself is really key for such a > > > massive rework. > > > > It's not impossible, but I may need to think a bit how best to do it. > > I pretty much expected that you would say that :) > > But seriously, the first important thing is to find all functions and > to check whether they use irq internaly. Jiang has done that > 'manually' or such, so the number of function which need an actual > change are not that big. > > But I certainly don't want to hold you off thinking about it. Such > stuff is not a unique problem :) What is the status of this? I am close to having a semantic patch that works. The current version touches 133 files, but I haven't checked all of them. This includes both the local functions and the generic ones, but not the cases where the name of the handler function is a local variable or arbitrary expression. This occurs in around 30 files. julia