Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S2992454AbbGYIDB (ORCPT ); Sat, 25 Jul 2015 04:03:01 -0400 Received: from mail-pd0-f171.google.com ([209.85.192.171]:33414 "EHLO mail-pd0-f171.google.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1754915AbbGYICy (ORCPT ); Sat, 25 Jul 2015 04:02:54 -0400 Message-ID: <55B342A4.30501@linaro.org> Date: Sat, 25 Jul 2015 16:02:44 +0800 From: Hanjun Guo User-Agent: Mozilla/5.0 (X11; Linux x86_64; rv:31.0) Gecko/20100101 Thunderbird/31.7.0 MIME-Version: 1.0 To: Marc Zyngier , Bjorn Helgaas , Thomas Gleixner , Jiang Liu , Jason Cooper CC: Lorenzo Pieralisi , linux-pci@vger.kernel.org, Duc Dang , linux-kernel@vger.kernel.org, Yijing Wang , linux-arm-kernel@lists.infradead.org, Ma Jun Subject: Re: [PATCH v5 02/19] PCI: MSI: Register irq domain with specific token References: <1437643598-19795-1-git-send-email-marc.zyngier@arm.com> <1437643598-19795-3-git-send-email-marc.zyngier@arm.com> In-Reply-To: <1437643598-19795-3-git-send-email-marc.zyngier@arm.com> Content-Type: text/plain; charset=windows-1252; format=flowed Content-Transfer-Encoding: 7bit Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org Content-Length: 1735 Lines: 54 On 07/23/2015 05:26 PM, Marc Zyngier wrote: > When creating a PCI/MSI domain, tag it with DOMAIN_BUS_PCI_MSI so > that it can be looked-up using irq_find_matching_host(). > > Signed-off-by: Marc Zyngier > --- > drivers/pci/msi.c | 8 +++++++- > include/linux/irqdomain.h | 1 + > 2 files changed, 8 insertions(+), 1 deletion(-) > > diff --git a/drivers/pci/msi.c b/drivers/pci/msi.c > index 373d96e..ef4ec6e 100644 > --- a/drivers/pci/msi.c > +++ b/drivers/pci/msi.c > @@ -1273,12 +1273,18 @@ struct irq_domain *pci_msi_create_irq_domain(struct device_node *node, > struct msi_domain_info *info, > struct irq_domain *parent) > { > + struct irq_domain *domain; > + > if (info->flags & MSI_FLAG_USE_DEF_DOM_OPS) > pci_msi_domain_update_dom_ops(info); > if (info->flags & MSI_FLAG_USE_DEF_CHIP_OPS) > pci_msi_domain_update_chip_ops(info); > > - return msi_create_irq_domain(node, info, parent); > + domain = msi_create_irq_domain(node, info, parent); > + if (domain) > + domain->bus_token = DOMAIN_BUS_PCI_MSI; > + > + return domain; > } > > /** > diff --git a/include/linux/irqdomain.h b/include/linux/irqdomain.h > index 91a83ad..25e9e66 100644 > --- a/include/linux/irqdomain.h > +++ b/include/linux/irqdomain.h > @@ -54,6 +54,7 @@ struct irq_data; > */ > enum irq_domain_bus_token { > DOMAIN_BUS_ANY = 0, > + DOMAIN_BUS_PCI_MSI, > }; Reviewed-by: Hanjun Guo Thanks Hanjun -- To unsubscribe from this list: send the line "unsubscribe linux-kernel" in the body of a message to majordomo@vger.kernel.org More majordomo info at http://vger.kernel.org/majordomo-info.html Please read the FAQ at http://www.tux.org/lkml/