From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1753291AbdFVQqx (ORCPT ); Thu, 22 Jun 2017 12:46:53 -0400 Received: from terminus.zytor.com ([65.50.211.136]:48349 "EHLO terminus.zytor.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1752152AbdFVQqw (ORCPT ); Thu, 22 Jun 2017 12:46:52 -0400 Date: Thu, 22 Jun 2017 09:41:11 -0700 From: tip-bot for Thomas Gleixner Message-ID: Cc: hch@lst.de, linux-kernel@vger.kernel.org, hpa@zytor.com, marc.zyngier@arm.com, peterz@infradead.org, mpe@ellerman.id.au, tglx@linutronix.de, mingo@kernel.org, axboe@kernel.dk, joro@8bytes.org, keith.busch@intel.com Reply-To: peterz@infradead.org, mpe@ellerman.id.au, hch@lst.de, hpa@zytor.com, linux-kernel@vger.kernel.org, marc.zyngier@arm.com, keith.busch@intel.com, axboe@kernel.dk, mingo@kernel.org, joro@8bytes.org, tglx@linutronix.de In-Reply-To: <20170619235443.431939968@linutronix.de> References: <20170619235443.431939968@linutronix.de> To: linux-tip-commits@vger.kernel.org Subject: [tip:irq/core] iommu/vt-d: Add name to irq chip Git-Commit-ID: 1bb3a5a76386ba2886ee44b903eeff5765bd71d4 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: 1bb3a5a76386ba2886ee44b903eeff5765bd71d4 Gitweb: http://git.kernel.org/tip/1bb3a5a76386ba2886ee44b903eeff5765bd71d4 Author: Thomas Gleixner AuthorDate: Tue, 20 Jun 2017 01:37:03 +0200 Committer: Thomas Gleixner CommitDate: Thu, 22 Jun 2017 18:21:07 +0200 iommu/vt-d: Add name to irq chip Add the missing name, so debugging will work proper. Signed-off-by: Thomas Gleixner Acked-by: Joerg Roedel Cc: Jens Axboe Cc: Marc Zyngier Cc: Michael Ellerman Cc: Keith Busch Cc: Peter Zijlstra Cc: iommu@lists.linux-foundation.org Cc: Christoph Hellwig Link: http://lkml.kernel.org/r/20170619235443.431939968@linutronix.de --- drivers/iommu/intel_irq_remapping.c | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) diff --git a/drivers/iommu/intel_irq_remapping.c b/drivers/iommu/intel_irq_remapping.c index a190cbd..ba5b580 100644 --- a/drivers/iommu/intel_irq_remapping.c +++ b/drivers/iommu/intel_irq_remapping.c @@ -1205,10 +1205,11 @@ static int intel_ir_set_vcpu_affinity(struct irq_data *data, void *info) } static struct irq_chip intel_ir_chip = { - .irq_ack = ir_ack_apic_edge, - .irq_set_affinity = intel_ir_set_affinity, - .irq_compose_msi_msg = intel_ir_compose_msi_msg, - .irq_set_vcpu_affinity = intel_ir_set_vcpu_affinity, + .name = "INTEL-IR", + .irq_ack = ir_ack_apic_edge, + .irq_set_affinity = intel_ir_set_affinity, + .irq_compose_msi_msg = intel_ir_compose_msi_msg, + .irq_set_vcpu_affinity = intel_ir_set_vcpu_affinity, }; static void intel_irq_remapping_prepare_irte(struct intel_ir_data *data,