From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1758424AbcKCPvM (ORCPT ); Thu, 3 Nov 2016 11:51:12 -0400 Received: from foss.arm.com ([217.140.101.70]:40732 "EHLO foss.arm.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1756871AbcKCPvK (ORCPT ); Thu, 3 Nov 2016 11:51:10 -0400 Date: Thu, 3 Nov 2016 15:51:07 +0000 From: Mark Rutland To: Laura Abbott Cc: Ard Biesheuvel , Will Deacon , Catalin Marinas , Thomas Gleixner , Ingo Molnar , "H. Peter Anvin" , x86@kernel.org, linux-kernel@vger.kernel.org, linux-mm@kvack.org, Andrew Morton , Marek Szyprowski , Joonsoo Kim , linux-arm-kernel@lists.infradead.org Subject: Re: [PATCHv2 5/6] arm64: Use __pa_symbol for _end Message-ID: <20161103155106.GF25852@remoulade> References: <20161102210054.16621-1-labbott@redhat.com> <20161102210054.16621-6-labbott@redhat.com> <20161102225241.GA19591@remoulade> <3724ea58-3c04-1248-8359-e2927da03aaf@redhat.com> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <3724ea58-3c04-1248-8359-e2927da03aaf@redhat.com> User-Agent: Mutt/1.5.24 (2015-08-30) Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org On Wed, Nov 02, 2016 at 05:56:42PM -0600, Laura Abbott wrote: > On 11/02/2016 04:52 PM, Mark Rutland wrote: > >On Wed, Nov 02, 2016 at 03:00:53PM -0600, Laura Abbott wrote: > >> > >>__pa_symbol is technically the marco that should be used for kernel > >>symbols. Switch to this as a pre-requisite for DEBUG_VIRTUAL. > > > >Nit: s/marco/macro/ > > > >I see there are some other uses of __pa() that look like they could/should be > >__pa_symbol(), e.g. in mark_rodata_ro(). > > > >I guess strictly speaking those need to be updated to? Or is there a reason > >that we should not? > > If the concept of __pa_symbol is okay then yes I think all uses of __pa > should eventually be converted for consistency and debugging. I have no strong feelings either way about __pa_symbol(); I'm not clear on what the purpose of __pa_symbol() is specifically, but I'm happy even if it's just for consistency with other architectures. However, if we use it I think that we should (attempt to) use it consistently from the outset. Thanks, Mark.