From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1753317AbbF2PEL (ORCPT ); Mon, 29 Jun 2015 11:04:11 -0400 Received: from arroyo.ext.ti.com ([192.94.94.40]:49173 "EHLO arroyo.ext.ti.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1752634AbbF2PED (ORCPT ); Mon, 29 Jun 2015 11:04:03 -0400 Message-ID: <55915E47.8080503@ti.com> Date: Mon, 29 Jun 2015 11:03:35 -0400 From: Murali Karicheri Organization: Texas Instruments User-Agent: Mozilla/5.0 (X11; Linux x86_64; rv:31.0) Gecko/20100101 Thunderbird/31.2.0 MIME-Version: 1.0 To: , , , , , , , Subject: Re: [tip:irq/urgent] PCI/keystone: Fix race in installing chained IRQ handler References: In-Reply-To: Content-Type: text/plain; charset="utf-8"; format=flowed Content-Transfer-Encoding: 7bit Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org On 06/26/2015 03:44 PM, tip-bot for Thomas Gleixner wrote: > Commit-ID: 2cf5a03cb29debb00681a8af1dfa9179b43404d1 > Gitweb: http://git.kernel.org/tip/2cf5a03cb29debb00681a8af1dfa9179b43404d1 > Author: Thomas Gleixner > AuthorDate: Sun, 21 Jun 2015 20:16:09 +0200 > Committer: Thomas Gleixner > CommitDate: Thu, 25 Jun 2015 11:57:01 +0200 > > PCI/keystone: Fix race in installing chained IRQ handler > > Fix a race where a pending interrupt could be received and the handler > called before the handler's data has been setup, by converting to > irq_set_chained_handler_and_data(). > > Search and conversion was done with coccinelle: > > @@ > expression E1, E2, E3; > @@ > ( > -if (irq_set_chained_handler(E1, E3) != 0) > - BUG(); > | > -irq_set_chained_handler(E1, E3); > ) > -irq_set_handler_data(E1, E2); > +irq_set_chained_handler_and_data(E1, E3, E2); > > @@ > expression E1, E2, E3; > @@ > ( > -if (irq_set_chained_handler(E1, E3) != 0) > - BUG(); > ... > | > -irq_set_chained_handler(E1, E3); > ... > ) > -irq_set_handler_data(E1, E2); > +irq_set_chained_handler_and_data(E1, E3, E2); > > Reported-by: Russell King > Signed-off-by: Thomas Gleixner > Cc: Julia Lawall > Cc: Murali Karicheri > Cc: Bjorn Helgaas > Cc: linux-pci@vger.kernel.org > Cc: linux-arm-kernel@lists.infradead.org > --- > drivers/pci/host/pci-keystone.c | 7 +++---- > 1 file changed, 3 insertions(+), 4 deletions(-) > > diff --git a/drivers/pci/host/pci-keystone.c b/drivers/pci/host/pci-keystone.c > index 75333b0..47cf0c1 100644 > --- a/drivers/pci/host/pci-keystone.c > +++ b/drivers/pci/host/pci-keystone.c > @@ -223,10 +223,9 @@ static void ks_pcie_setup_interrupts(struct keystone_pcie *ks_pcie) > /* MSI IRQ */ > if (IS_ENABLED(CONFIG_PCI_MSI)) { > for (i = 0; i < ks_pcie->num_msi_host_irqs; i++) { > - irq_set_chained_handler(ks_pcie->msi_host_irqs[i], > - ks_pcie_msi_irq_handler); > - irq_set_handler_data(ks_pcie->msi_host_irqs[i], > - ks_pcie); > + irq_set_chained_handler_and_data(ks_pcie->msi_host_irqs[i], > + ks_pcie_msi_irq_handler, > + ks_pcie); > } > } > } > Thomas, Thanks for the patch. Tested-By: Murali Karicheri -- Murali Karicheri Linux Kernel, Keystone