From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1755297AbbFLJs6 (ORCPT ); Fri, 12 Jun 2015 05:48:58 -0400 Received: from terminus.zytor.com ([198.137.202.10]:34727 "EHLO terminus.zytor.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1755273AbbFLJsv (ORCPT ); Fri, 12 Jun 2015 05:48:51 -0400 Date: Fri, 12 Jun 2015 02:48:37 -0700 From: tip-bot for Feng Wu Message-ID: Cc: feng.wu@intel.com, tglx@linutronix.de, mingo@kernel.org, hpa@zytor.com, linux-kernel@vger.kernel.org, joro@8bytes.org, jiang.liu@linux.intel.com Reply-To: joro@8bytes.org, linux-kernel@vger.kernel.org, jiang.liu@linux.intel.com, mingo@kernel.org, tglx@linutronix.de, feng.wu@intel.com, hpa@zytor.com In-Reply-To: <1433827237-3382-2-git-send-email-feng.wu@intel.com> References: <1433827237-3382-2-git-send-email-feng.wu@intel.com> To: linux-tip-commits@vger.kernel.org Subject: [tip:x86/apic] iommu: Add new member capability to struct irq_remap_ops Git-Commit-ID: 6f281923949a4944a7d5625e4f900ec02fefee59 X-Mailer: tip-git-log-daemon Robot-ID: Robot-Unsubscribe: Contact to get blacklisted from these emails MIME-Version: 1.0 Content-Transfer-Encoding: 8bit Content-Type: text/plain; charset=UTF-8 Content-Disposition: inline Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org Commit-ID: 6f281923949a4944a7d5625e4f900ec02fefee59 Gitweb: http://git.kernel.org/tip/6f281923949a4944a7d5625e4f900ec02fefee59 Author: Feng Wu AuthorDate: Tue, 9 Jun 2015 13:20:28 +0800 Committer: Thomas Gleixner CommitDate: Fri, 12 Jun 2015 11:33:51 +0200 iommu: Add new member capability to struct irq_remap_ops Add a new member 'capability' to struct irq_remap_ops for storing information about available capabilities such as VT-d Posted-Interrupts. Signed-off-by: Feng Wu Reviewed-by: Jiang Liu Reviewed-by: Thomas Gleixner Acked-by: Joerg Roedel Cc: iommu@lists.linux-foundation.org Cc: dwmw2@infradead.org Link: http://lkml.kernel.org/r/1433827237-3382-2-git-send-email-feng.wu@intel.com Signed-off-by: Thomas Gleixner --- arch/x86/include/asm/irq_remapping.h | 4 ++++ drivers/iommu/irq_remapping.h | 3 +++ 2 files changed, 7 insertions(+) diff --git a/arch/x86/include/asm/irq_remapping.h b/arch/x86/include/asm/irq_remapping.h index 78974fb..8b432dd 100644 --- a/arch/x86/include/asm/irq_remapping.h +++ b/arch/x86/include/asm/irq_remapping.h @@ -29,6 +29,10 @@ struct msi_msg; struct irq_alloc_info; +enum irq_remap_cap { + IRQ_POSTING_CAP = 0, +}; + #ifdef CONFIG_IRQ_REMAP extern void set_irq_remapping_broken(void); diff --git a/drivers/iommu/irq_remapping.h b/drivers/iommu/irq_remapping.h index 91d5a11..b6ca30d 100644 --- a/drivers/iommu/irq_remapping.h +++ b/drivers/iommu/irq_remapping.h @@ -35,6 +35,9 @@ extern int no_x2apic_optout; extern int irq_remapping_enabled; struct irq_remap_ops { + /* The supported capabilities */ + int capability; + /* Initializes hardware and makes it ready for remapping interrupts */ int (*prepare)(void);