Received: by 2002:a25:b794:0:0:0:0:0 with SMTP id n20csp6257136ybh; Wed, 7 Aug 2019 20:33:14 -0700 (PDT) X-Google-Smtp-Source: APXvYqzoEWC4pDOV3fqCqouT+SoXE9DkcDesBTk6HowXIZ2rF8fmbq4UPZb7KvadqKNBR437NzXi X-Received: by 2002:a17:902:306:: with SMTP id 6mr1128321pld.86.1565235194638; Wed, 07 Aug 2019 20:33:14 -0700 (PDT) ARC-Seal: i=1; a=rsa-sha256; t=1565235194; cv=none; d=google.com; s=arc-20160816; b=VpHC/HdMMl/xV6T3QXxN/H/4TBooSVZKhMFBz5OkjwJD+aoyj2Vniyx0Gsc75uDJVZ uhbFGa4snDfzsoioz8RsLK8N3fr8u7WzPxTCwyrcaFft3ohBQhOT2hCMD6us+rkAI9tE c4P8Fjp+rKJt1KCQvuz+HC1r/dzIauBXwsKttX0jqzxdnyOpH4BWjJiNbKwyjUkhB0Rz j0oSVfj0BReWKW5B3ugiRKaROu83+kb4gEFlWi+8/ShgSpLWezvzItQz3SxVgp6YVl74 W7G57PYFmIveIu5LkoVYRatPAnxznh+diZC+L7fZxdD9cGnG737ZW4AvO3tFqkvbNiMC vC3w== ARC-Message-Signature: i=1; a=rsa-sha256; c=relaxed/relaxed; d=google.com; s=arc-20160816; h=list-id:precedence:sender:content-transfer-encoding :content-language:in-reply-to:mime-version:user-agent:date :message-id:from:references:cc:to:subject; bh=lSVudo9IfNRw+YfjQt+2Stvmpjl+V6BjeIhb4X8kpN4=; b=l6o1i8y244UxrynspUfAvnyu6VdMn0+upPwrEpcZygf9ByQoSZctnK2saBB8bh7/Ey NmKKVsKbCWHe59ueByp/DgQZiCyxd+D4hTBIRMbs+a1yC1Fd4XKpN7JySUPs2NZFmU8s 0hQca8JyslyP4CpNRBc2CHz8OPKQmNL+ZSRbf1ySTX5oqBLkgODWnT8lwT+KCm4EcFV1 n9Q4P/McSAZJvu2UVyQW0dSB2IhcPGCYYh8gHGsPandBBF1FD1co6ICk7MUKVl7ikaO0 Y5LLDVaQEX4HXJt9wqNfhsQnY9HLFhsSxrTWIGj70dL/b1bgF5KzGOFzhMXRYebm6aBK rBTQ== ARC-Authentication-Results: i=1; mx.google.com; spf=pass (google.com: best guess record for domain of linux-kernel-owner@vger.kernel.org designates 209.132.180.67 as permitted sender) smtp.mailfrom=linux-kernel-owner@vger.kernel.org Return-Path: Received: from vger.kernel.org (vger.kernel.org. [209.132.180.67]) by mx.google.com with ESMTP id a130si41556957pfa.7.2019.08.07.20.32.58; Wed, 07 Aug 2019 20:33:14 -0700 (PDT) Received-SPF: pass (google.com: best guess record for domain of linux-kernel-owner@vger.kernel.org designates 209.132.180.67 as permitted sender) client-ip=209.132.180.67; Authentication-Results: mx.google.com; spf=pass (google.com: best guess record for domain of linux-kernel-owner@vger.kernel.org designates 209.132.180.67 as permitted sender) smtp.mailfrom=linux-kernel-owner@vger.kernel.org Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1728416AbfHHDcO (ORCPT + 99 others); Wed, 7 Aug 2019 23:32:14 -0400 Received: from szxga07-in.huawei.com ([45.249.212.35]:45362 "EHLO huawei.com" rhost-flags-OK-OK-OK-FAIL) by vger.kernel.org with ESMTP id S1728167AbfHHDcO (ORCPT ); Wed, 7 Aug 2019 23:32:14 -0400 Received: from DGGEMS405-HUB.china.huawei.com (unknown [172.30.72.60]) by Forcepoint Email with ESMTP id 3D4052C20B76651BD2F9; Thu, 8 Aug 2019 11:32:13 +0800 (CST) Received: from [127.0.0.1] (10.177.96.203) by DGGEMS405-HUB.china.huawei.com (10.3.19.205) with Microsoft SMTP Server id 14.3.439.0; Thu, 8 Aug 2019 11:32:04 +0800 Subject: Re: [PATCH v5 02/10] powerpc: move memstart_addr and kernstart_addr to init-common.c To: Michael Ellerman , , , , , , , , CC: , , , , , , References: <20190807065706.11411-1-yanaijie@huawei.com> <20190807065706.11411-3-yanaijie@huawei.com> <874l2tuo0t.fsf@concordia.ellerman.id.au> From: Jason Yan Message-ID: Date: Thu, 8 Aug 2019 11:32:03 +0800 User-Agent: Mozilla/5.0 (Windows NT 6.1; WOW64; rv:60.0) Gecko/20100101 Thunderbird/60.5.0 MIME-Version: 1.0 In-Reply-To: <874l2tuo0t.fsf@concordia.ellerman.id.au> Content-Type: text/plain; charset="utf-8"; format=flowed Content-Language: en-US Content-Transfer-Encoding: 7bit X-Originating-IP: [10.177.96.203] X-CFilter-Loop: Reflected Sender: linux-kernel-owner@vger.kernel.org Precedence: bulk List-ID: X-Mailing-List: linux-kernel@vger.kernel.org On 2019/8/7 21:02, Michael Ellerman wrote: > Jason Yan writes: >> These two variables are both defined in init_32.c and init_64.c. Move >> them to init-common.c. >> >> Signed-off-by: Jason Yan >> Cc: Diana Craciun >> Cc: Michael Ellerman >> Cc: Christophe Leroy >> Cc: Benjamin Herrenschmidt >> Cc: Paul Mackerras >> Cc: Nicholas Piggin >> Cc: Kees Cook >> Reviewed-by: Christophe Leroy >> Reviewed-by: Diana Craciun >> Tested-by: Diana Craciun >> --- >> arch/powerpc/mm/init-common.c | 5 +++++ >> arch/powerpc/mm/init_32.c | 5 ----- >> arch/powerpc/mm/init_64.c | 5 ----- >> 3 files changed, 5 insertions(+), 10 deletions(-) >> >> diff --git a/arch/powerpc/mm/init-common.c b/arch/powerpc/mm/init-common.c >> index a84da92920f7..152ae0d21435 100644 >> --- a/arch/powerpc/mm/init-common.c >> +++ b/arch/powerpc/mm/init-common.c >> @@ -21,6 +21,11 @@ >> #include >> #include >> >> +phys_addr_t memstart_addr = (phys_addr_t)~0ull; >> +EXPORT_SYMBOL_GPL(memstart_addr); >> +phys_addr_t kernstart_addr; >> +EXPORT_SYMBOL_GPL(kernstart_addr); > > Would be nice if these can be __ro_after_init ? > Good idea. > cheers > > . >