From mboxrd@z Thu Jan 1 00:00:00 1970 From: Jiang Liu Subject: Re: [RFC v1 14/25] genirq: Kill the first parameter 'irq' of irq_flow_handler_t Date: Wed, 20 May 2015 23:28:52 +0800 Message-ID: <555CA834.7080807@linux.intel.com> References: <1432116013-25902-1-git-send-email-jiang.liu@linux.intel.com> <1432116013-25902-15-git-send-email-jiang.liu@linux.intel.com> Mime-Version: 1.0 Content-Type: text/plain; charset=windows-1252 Content-Transfer-Encoding: 7bit Return-path: Received: from mga09.intel.com ([134.134.136.24]:35439 "EHLO mga09.intel.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1754135AbbETP26 (ORCPT ); Wed, 20 May 2015 11:28:58 -0400 In-Reply-To: Sender: linux-acpi-owner@vger.kernel.org List-Id: linux-acpi@vger.kernel.org To: Thomas Gleixner Cc: 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, linux-kernel@vger.kernel.org, linux-pci@vger.kernel.org, linux-acpi@vger.kernel.org On 2015/5/20 23:25, Thomas Gleixner wrote: > On Wed, 20 May 2015, Jiang Liu wrote: >> --- a/include/linux/irqdesc.h >> +++ b/include/linux/irqdesc.h >> @@ -99,6 +99,11 @@ static inline struct irq_desc *irq_data_to_desc(struct irq_data *data) >> return container_of(data->common, struct irq_desc, irq_common_data); >> } >> >> +static inline unsigned int irq_desc_get_irq(struct irq_desc *desc) >> +{ >> + return desc->irq_data.irq; >> +} >> + > > Does not apply either. Hi Thomas, Will check the base again. Please do not apply patch after [14/25]. There are here to ask for comments, there are still building issues with patch after [14/25]. Just help to comment whether it's on the right direction. If so, I will send another version for formal review. Thanks! Gerry > > Thanks, > > tglx >