From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1753154AbdFVQov (ORCPT ); Thu, 22 Jun 2017 12:44:51 -0400 Received: from terminus.zytor.com ([65.50.211.136]:55681 "EHLO terminus.zytor.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1751185AbdFVQot (ORCPT ); Thu, 22 Jun 2017 12:44:49 -0400 Date: Thu, 22 Jun 2017 09:40:03 -0700 From: tip-bot for Thomas Gleixner Message-ID: Cc: tglx@linutronix.de, mingo@kernel.org, marc.zyngier@arm.com, linux-kernel@vger.kernel.org, hch@lst.de, mpe@ellerman.id.au, hpa@zytor.com, peterz@infradead.org, axboe@kernel.dk, keith.busch@intel.com Reply-To: hch@lst.de, marc.zyngier@arm.com, linux-kernel@vger.kernel.org, keith.busch@intel.com, hpa@zytor.com, mpe@ellerman.id.au, peterz@infradead.org, axboe@kernel.dk, mingo@kernel.org, tglx@linutronix.de In-Reply-To: <20170619235443.266561988@linutronix.de> References: <20170619235443.266561988@linutronix.de> To: linux-tip-commits@vger.kernel.org Subject: [tip:irq/core] x86/apic: Add name to irq chip Git-Commit-ID: 8947dfb257eb91d7487e06b7d2a069d82e7c19a2 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: 8947dfb257eb91d7487e06b7d2a069d82e7c19a2 Gitweb: http://git.kernel.org/tip/8947dfb257eb91d7487e06b7d2a069d82e7c19a2 Author: Thomas Gleixner AuthorDate: Tue, 20 Jun 2017 01:37:01 +0200 Committer: Thomas Gleixner CommitDate: Thu, 22 Jun 2017 18:21:06 +0200 x86/apic: Add name to irq chip Add the missing name, so debugging will work proper. Signed-off-by: Thomas Gleixner Cc: Jens Axboe Cc: Marc Zyngier Cc: Michael Ellerman Cc: Keith Busch Cc: Peter Zijlstra Cc: Christoph Hellwig Link: http://lkml.kernel.org/r/20170619235443.266561988@linutronix.de Signed-off-by: Thomas Gleixner --- arch/x86/kernel/apic/vector.c | 1 + 1 file changed, 1 insertion(+) diff --git a/arch/x86/kernel/apic/vector.c b/arch/x86/kernel/apic/vector.c index f3557a1..6b21b9e 100644 --- a/arch/x86/kernel/apic/vector.c +++ b/arch/x86/kernel/apic/vector.c @@ -534,6 +534,7 @@ static int apic_set_affinity(struct irq_data *irq_data, } static struct irq_chip lapic_controller = { + .name = "APIC", .irq_ack = apic_ack_edge, .irq_set_affinity = apic_set_affinity, .irq_retrigger = apic_retrigger_irq,