From mboxrd@z Thu Jan 1 00:00:00 1970 From: tip-bot for Thomas Gleixner Subject: [tip:irq/core] x86: Xen: Use the core irq stats function Date: Tue, 4 Mar 2014 08:41:51 -0800 Message-ID: References: <20140223212737.869264085@linutronix.de> Reply-To: mingo@kernel.org, hpa@zytor.com, x86@kernel.org, linux-kernel@vger.kernel.org, konrad.wilk@oracle.com, peterz@infradead.org, xen-devel@lists.xenproject.org, david.vrabel@citrix.com, tglx@linutronix.de Mime-Version: 1.0 Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: 7bit Return-path: Received: from mail6.bemta5.messagelabs.com ([195.245.231.135]) by lists.xen.org with esmtp (Exim 4.72) (envelope-from ) id 1WKsQF-0004Vw-JN for xen-devel@lists.xenproject.org; Tue, 04 Mar 2014 16:42:27 +0000 In-Reply-To: <20140223212737.869264085@linutronix.de> Content-Disposition: inline List-Unsubscribe: , List-Post: List-Help: List-Subscribe: , Sender: xen-devel-bounces@lists.xen.org Errors-To: xen-devel-bounces@lists.xen.org To: linux-tip-commits@vger.kernel.org Cc: peterz@infradead.org, x86@kernel.org, linux-kernel@vger.kernel.org, david.vrabel@citrix.com, hpa@zytor.com, xen-devel@lists.xenproject.org, tglx@linutronix.de, mingo@kernel.org List-Id: xen-devel@lists.xenproject.org Commit-ID: 770144ea7beb3e0537277a96b104ba1daa965f76 Gitweb: http://git.kernel.org/tip/770144ea7beb3e0537277a96b104ba1daa965f76 Author: Thomas Gleixner AuthorDate: Sun, 23 Feb 2014 21:40:16 +0000 Committer: Thomas Gleixner CommitDate: Tue, 4 Mar 2014 17:37:53 +0100 x86: Xen: Use the core irq stats function Let the core do the irq_desc resolution. No functional change. Signed-off-by: Thomas Gleixner Reviewed-by: David Vrabel Cc: Peter Zijlstra Cc: Konrad Rzeszutek Wilk Cc: Xen Cc: x86 Link: http://lkml.kernel.org/r/20140223212737.869264085@linutronix.de Signed-off-by: Thomas Gleixner --- arch/x86/xen/spinlock.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/arch/x86/xen/spinlock.c b/arch/x86/xen/spinlock.c index 581521c..4d3acc3 100644 --- a/arch/x86/xen/spinlock.c +++ b/arch/x86/xen/spinlock.c @@ -183,7 +183,7 @@ __visible void xen_lock_spinning(struct arch_spinlock *lock, __ticket_t want) local_irq_save(flags); - kstat_incr_irqs_this_cpu(irq, irq_to_desc(irq)); + kstat_incr_irq_this_cpu(irq); out: cpumask_clear_cpu(cpu, &waiting_cpus); w->lock = NULL;