From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1756945AbaIELba (ORCPT ); Fri, 5 Sep 2014 07:31:30 -0400 Received: from mho-02-ewr.mailhop.org ([204.13.248.72]:47393 "EHLO mho-02-ewr.mailhop.org" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1756622AbaIELb2 (ORCPT ); Fri, 5 Sep 2014 07:31:28 -0400 X-Mail-Handler: Dyn Standard SMTP by Dyn X-Originating-IP: 96.249.243.124 X-Report-Abuse-To: abuse@dyndns.com (see http://www.dyndns.com/services/sendlabs/outbound_abuse.html for abuse reporting information) X-MHO-User: U2FsdGVkX1+O0AbwhVMiZ6EEwGdEaG4Ti+V2Gnh0YR4= X-DKIM: OpenDKIM Filter v2.0.1 titan 9CF785D8CC8 Date: Fri, 5 Sep 2014 07:31:14 -0400 From: Jason Cooper To: Tejun Heo , Thomas Gleixner Cc: Christoph Lameter , Bartlomiej Zolnierkiewicz , Mark Brown , linux-next@vger.kernel.org, linux-kernel@vger.kernel.org, nicolas.pitre@linaro.org, Russell King , Kyungmin Park Subject: Re: linux-next: Tree for Sep 1 Message-ID: <20140905113114.GS30467@titan.lakedaemon.net> References: <20140901230728.GM29327@sirena.org.uk> <1627064.QhxvejlWdk@amdc1032> <20140904171123.GD26364@mtj.dyndns.org> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <20140904171123.GD26364@mtj.dyndns.org> User-Agent: Mutt/1.5.20 (2009-06-14) Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org Tejun, Christoph, On Fri, Sep 05, 2014 at 02:11:23AM +0900, Tejun Heo wrote: > On Tue, Sep 02, 2014 at 10:00:07AM -0500, Christoph Lameter wrote: > > Subject: irqchip: Properly fetch the per cpu offset > > > > The raw_cpu_read() conversion dropped the fetch of the offset > > from base->percpu_base in gic_get_percpu_base. > > > > Signed-off-by: Christoph Lameter > > > > Index: linux/drivers/irqchip/irq-gic.c > > =================================================================== > > --- linux.orig/drivers/irqchip/irq-gic.c > > +++ linux/drivers/irqchip/irq-gic.c > > @@ -102,7 +102,7 @@ static struct gic_chip_data gic_data[MAX > > #ifdef CONFIG_GIC_NON_BANKED > > static void __iomem *gic_get_percpu_base(union gic_base *base) > > { > > - return raw_cpu_read(base->percpu_base); > > + return raw_cpu_read(*base->percpu_base); > > I suppose this should go through percpu/for-3.18-consistent-ops? Can > we please cc irq folks and get acks? Could Thomas and I get a pointer to the original patch and thread that caused the error? thx, Jason.